.header-vguide .img-cont {
    margin-bottom: var(--space-4);
    padding-top: var(--space-2);
}

.header-vguide .img-cont img {
    border-radius: 8px;
    margin: 0 auto;
}

.header-vguide .content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.header-vguide .content img {
    height: 100%;
}

.header-vguide .content .inner h3 {
    color: var(--darker-blue);
    font-size: var(--text-2xl);
}

@media (min-width: 64em) {
    .header-vguide .img-cont {
        margin-bottom: var(--space-6);
        padding-top: 0;
    }
    .header-vguide .content {
        justify-content: flex-start;
    }
    .header-vguide .content .inner h3 {
        letter-spacing: 0.02em;
    }
}

@media (min-width: 64em) {
    .header-vguide .img-cont img {
        margin: initial;
    }
}

.header-vguide .content .inner p {
    font-family: var(--font-body);
    color: var(--darker-blue);
    font-size: var(--text-base);
    font-weight: 400;
    letter-spacing: -0.01em;
    padding-bottom: var(--space-1);
}

.header-vguide .content .inner h5 {
    font-family: var(--font-body);
    color: var(--darker-blue);
    font-size: var(--text-sm);
    font-weight: bolder;
    text-decoration: underline;
    text-transform: uppercase;
}

.header-vguide .content .inner h5 i {
    margin-left: 4px;
}

@media (hover: hover) {
    .header-vguide a:hover {
        text-decoration: none;
    }
}