.gd-site-page {
    color: #19324a;
    margin: 0 auto;
    max-width: 1366px;
    padding: 32px 20px 72px;
}

.gd-site-hero {
    background: linear-gradient(135deg, #f5fbff 0%, #e5f0f8 55%, #ffffff 100%);
    margin-bottom: 26px;
    padding: 34px;
}

.gd-site-kicker {
    color: #0b6fc2;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.gd-site-hero h1,
.gd-site-section__head h2,
.gd-contact-card h2 {
    color: #173149;
    font-family: 'Poppins','Lato',sans-serif;
    margin: 0 0 12px;
}

.gd-site-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
}

.gd-site-hero p:last-child,
.gd-site-section__head p,
.gd-resource-card p,
.gd-person-card p,
.gd-simple-card p,
.gd-rich-card p,
.gd-action-card p,
.gd-contact-card p {
    color: #5d778f;
    line-height: 1.72;
}

.gd-site-section {
    margin-bottom: 30px;
}

.gd-site-section__head {
    margin-bottom: 18px;
}

.gd-resource-grid,
.gd-people-grid,
.gd-site-section--compact-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.gd-resource-card,
.gd-person-card,
.gd-simple-card,
.gd-rich-card,
.gd-action-card,
.gd-contact-card {
    background: #ffffff;
    padding: 22px;
}

.gd-resource-card__icon {
    background: #e9f4fb;
    border-radius: 999px;
    color: #0b6fc2;
    display: inline-flex;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 14px;
    padding: 7px 12px;
    text-transform: uppercase;
}

.gd-resource-card h3,
.gd-person-card h3,
.gd-simple-card h3,
.gd-rich-card h3,
.gd-action-card h3 {
    color: #183149;
    font-family: 'Poppins','Lato',sans-serif;
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.gd-gallery-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gd-gallery-thumb {
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    text-align: left;
}

.gd-gallery-thumb img {
    aspect-ratio: 4 / 3;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.gd-gallery-thumb span {
    color: #24435d;
    display: block;
    font-size: .92rem;
    font-weight: 600;
    padding: 12px 14px 14px;
}

.gd-bullet-list {
    margin: 0;
    padding-left: 18px;
}

.gd-bullet-list li {
    color: #58748d;
    line-height: 1.72;
    margin-bottom: 10px;
}

.gd-action-button {
    align-items: center;
    background: #0b6fc2;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-family: 'Poppins','Lato',sans-serif;
    font-size: .95rem;
    font-weight: 600;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    text-decoration: none;
}

.gd-action-button--secondary {
    background: #eef5fa;
    color: #0b6fc2;
}

.gd-contact-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gd-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.gd-contact-card iframe {
    border: 0;
    min-height: 320px;
    width: 100%;
}

.gd-lightbox {
    align-items: center;
    background: rgba(7, 18, 29, .82);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 999999;
}

.gd-lightbox.is-open {
    display: flex;
}

.gd-lightbox__dialog {
    background: #fff;
    max-width: 920px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gd-lightbox__close {
    background: rgba(24, 49, 73, .9);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    height: 40px;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 40px;
}

.gd-lightbox__image {
    display: block;
    max-height: 72vh;
    object-fit: contain;
    width: 100%;
}

.gd-lightbox__caption {
    color: #24425d;
    padding: 16px 20px 20px;
}

@media (max-width: 720px) {
    .gd-site-page {
        padding: 20px 14px 50px;
    }

    .gd-site-hero,
    .gd-resource-card,
    .gd-person-card,
    .gd-simple-card,
    .gd-rich-card,
    .gd-action-card,
    .gd-contact-card {
        padding: 18px;
    }

    .gd-lightbox {
        padding: 12px;
    }
}