.igs-landing {
    background: #f5f8fc;
    color: #142033;
    overflow: hidden;
}

.igs-hero,
.igs-row {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(42px, 7vw, 86px) 0;
}

.igs-hero {
    display: grid;
    gap: 28px;
}

.igs-hero-copy {
    max-width: 920px;
}

.igs-hero-copy span,
.igs-kicker {
    display: inline-block;
    color: #c9a227;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.igs-hero-copy h1,
.igs-section-head h2,
.igs-two-col h2 {
    margin: 10px 0;
    color: #06162f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 6vw, 6rem);
    line-height: 0.98;
}

.igs-hero-copy p,
.igs-two-col p {
    max-width: 760px;
    color: #4b5a72;
    font-size: 1.08rem;
    line-height: 1.75;
}

.igs-hero-actions,
.igs-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.igs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(201, 162, 39, 0.48);
    border-radius: 8px;
    background: linear-gradient(135deg, #c9a227, #f1d878);
    color: #06162f;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.igs-button-alt {
    background: #06162f;
    color: #fff;
}

.igs-hero-actions .igs-button {
    flex: 0 1 auto;
}

.igs-button-small {
    min-height: 42px;
}

.igs-banner-shell,
.igs-scroll-row {
    overflow-x: auto;
    scrollbar-width: thin;
}

.igs-banner-row,
.igs-scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 40%);
    gap: 18px;
    padding-bottom: 10px;
}

.igs-news-marquee {
    grid-auto-columns: calc((100% - 36px) / 3);
    overflow-x: hidden;
}

.igs-news-marquee .igs-story-card {
    animation: igs-news-scroll 34s linear infinite;
}

.igs-news-marquee:hover .igs-story-card {
    animation-play-state: paused;
}

@keyframes igs-news-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% * 3 - 54px));
    }
}

.igs-banner-card,
.igs-story-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 28px;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6, 22, 47, 0.88), rgba(11, 77, 179, 0.48)),
        radial-gradient(circle at 72% 18%, rgba(241, 216, 120, 0.44), transparent 30%),
        #06162f;
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 60px rgba(6, 22, 47, 0.18);
    text-decoration: none;
}

.igs-banner-card h3,
.igs-story-card h3 {
    margin: 10px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1;
}

.igs-banner-card p,
.igs-story-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.igs-counter-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.igs-counter {
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(6, 22, 47, 0.08);
    border-radius: 8px;
    background: #fff;
    color: #06162f;
    text-decoration: none;
    box-shadow: 0 16px 44px rgba(6, 22, 47, 0.08);
}

.igs-counter strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1;
}

.igs-counter span {
    color: #5c6980;
    font-weight: 800;
}

.igs-two-col {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
    gap: clamp(22px, 5vw, 58px);
    align-items: start;
}

.igs-dark {
    width: 100%;
    max-width: none;
    padding-inline: max(16px, calc((100vw - 1220px) / 2));
    background: #06162f;
    color: #fff;
}

.igs-dark h2 {
    color: #fff;
}

.igs-dark p {
    color: rgba(255, 255, 255, .78);
}

.igs-form {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(6, 22, 47, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(6, 22, 47, 0.1);
}

.igs-dark .igs-form {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
}

.igs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.igs-form input,
.igs-form select,
.igs-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(6, 22, 47, 0.14);
    border-radius: 8px;
    padding: 0 14px;
    font: inherit;
}

.igs-form input[type="file"] {
    min-height: auto;
    padding: 12px;
    background: rgba(245, 248, 252, 0.9);
}

.igs-form textarea {
    min-height: 100px;
    padding-top: 12px;
}

.igs-form-message {
    min-height: 24px;
    margin: 0;
    color: #0b4db3;
    font-weight: 700;
}

.igs-dark .igs-form-message {
    color: #f1d878;
}

.igs-file-field {
    display: grid;
    gap: 8px;
    color: #334155;
    font-weight: 800;
}

.igs-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.igs-story-form textarea[name="story_text"] {
    min-height: 160px;
}

.igs-story-card {
    min-height: 310px;
}

.igs-exco-card {
    min-height: 330px;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(6, 22, 47, 0.08);
}

.igs-exco-card img,
.igs-avatar {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(135deg, #06162f, #0b4db3);
}

.igs-avatar {
    display: grid;
    place-items: center;
    color: #f1d878;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 900;
}

.igs-exco-card h3 {
    margin: 14px 0 4px;
    color: #06162f;
}

.igs-exco-card p {
    margin: 0;
    color: #5c6980;
}

@media (max-width: 860px) {
    .igs-news-marquee {
        grid-auto-columns: minmax(270px, 86%);
        overflow-x: auto;
    }

    .igs-news-marquee .igs-story-card {
        animation: none;
    }

    .igs-counter-row,
    .igs-two-col {
        grid-template-columns: 1fr;
    }

    .igs-banner-row,
    .igs-scroll-row {
        grid-auto-columns: minmax(270px, 86%);
    }

    .igs-form-grid,
    .igs-upload-grid {
        grid-template-columns: 1fr;
    }
}
