/* VDG Header Styles */

@font-face {
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/JosefinSans-Bold-latin.woff2') format('woff2');
}

.vdg-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase; /* the dropped navbar used to provide this */
    white-space: nowrap; /* keep the wordmark on one line so the seal sits right after it */
}

.vdg-heading a,
.vdg-heading a:visited {
    color: #557924 !important; /* !important beats the global a{...!important} rule */
    text-decoration: none;
}

.vdg-heading a:hover {
    color: #557924 !important;
    text-decoration: underline;
}

/* header bar: GSL seal stuck to the wordmark on the left, partner logo on the right */
.vdg-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    min-height: 114px;
}

/* images use .img-responsive so they never distort or overflow; we only cap height */
.vdg-seal {
    max-height: 64px;
}

.vdg-collab-logo {
    max-height: 60px;
    margin-left: auto; /* push the partner logo to the far right */
}

/* mobile: wordmark on its own row, seal (left) + logo (right) below, both smaller */
@media (max-width: 767px) {
    .vdg-bar {
        padding-top: 14px;
    }

    .vdg-heading {
        flex-basis: 100%;
        white-space: normal;
    }

    .vdg-seal {
        max-height: 56px;
    }

    .vdg-collab-logo {
        max-height: 40px;
    }
}

/* provider disclaimer: a quiet info note below the header */
.vdg-disclaimer {
    margin: 18px 0;
    padding: 16px 20px;
    background: #f6f8f3;
    border: 1px solid #e3e8dc;
    border-left: 3px solid #84c55b; /* seal green accent */
    border-radius: 6px;
}

.vdg-disclaimer p {
    margin: 0 0 6px;
    font-size: 12px;
    line-height: 1.4;
    color: #555;
}

.vdg-disclaimer p:last-child {
    margin-bottom: 0;
}
