.home-wsic-entry {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 8% 14%, rgba(37, 99, 235, 0.09), transparent 24%),
        radial-gradient(circle at 92% 84%, rgba(225, 175, 72, 0.09), transparent 25%),
        linear-gradient(180deg, #f7f9fc 0%, #fbfcfe 100%);
}

.home-wsic-entry::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -120px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(30, 58, 138, 0.09);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(30, 58, 138, 0.025), 0 0 0 84px rgba(30, 58, 138, 0.018);
    pointer-events: none;
}

.home-wsic-entry::after {
    content: "";
    position: absolute;
    right: 2.5%;
    bottom: 7%;
    width: 112px;
    height: 112px;
    opacity: 0.34;
    background-image: radial-gradient(circle, #8ea5c7 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    pointer-events: none;
}

.home-wsic-entry > .container {
    position: relative;
    z-index: 1;
}

.home-wsic-entry__heading {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.home-wsic-entry__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    padding: 8px 14px;
    color: #1e3a8a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #dbe5f3;
    border-radius: 999px;
    box-shadow: 0 5px 16px rgba(30, 58, 138, 0.07);
}

.home-wsic-entry__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #e1af48;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(225, 175, 72, 0.14);
}

.home-wsic-entry h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.2rem, 3.4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.home-wsic-entry__intro {
    max-width: 760px;
    margin: 18px auto 0;
    color: #64748b;
    font-size: 1.08rem;
    line-height: 1.85;
}

.home-wsic-entry__heading::after {
    content: "";
    display: block;
    width: 74px;
    height: 3px;
    margin: 24px auto 0;
    background: linear-gradient(90deg, #1e3a8a 0 66%, #e1af48 66% 100%);
    border-radius: 999px;
}

.home-wsic-entry__body {
    display: grid;
    grid-template-columns: minmax(520px, 1.1fr) minmax(0, 0.9fr);
    gap: 22px;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.home-wsic-entry__media {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    min-height: 500px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #e7e2da;
    border: 1px solid rgba(30, 58, 138, 0.14);
    border-radius: 24px;
    box-shadow: 0 22px 54px rgba(31, 38, 51, 0.15);
}

.home-wsic-entry__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 23px;
    box-shadow: inset 0 -88px 116px rgba(17, 24, 39, 0.14);
}

.home-wsic-entry__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 23px;
}

.home-wsic-entry__grid {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
    gap: 16px;
}

.home-wsic-entry__item {
    --wsic-accent: #1e3a8a;
    --wsic-soft: #eef4ff;
    --wsic-border: rgba(30, 58, 138, 0.18);
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 7px;
    align-content: center;
    min-height: 0;
    padding: 26px 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.065);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-wsic-entry__item:nth-child(2) {
    --wsic-accent: #0f766e;
    --wsic-soft: #eaf8f5;
    --wsic-border: rgba(15, 118, 110, 0.18);
}

.home-wsic-entry__item:nth-child(3) {
    --wsic-accent: #a66b0b;
    --wsic-soft: #fff6df;
    --wsic-border: rgba(166, 107, 11, 0.18);
}

.home-wsic-entry__item:hover {
    transform: translateX(-4px);
    border-color: var(--wsic-border);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.home-wsic-entry__item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--wsic-accent), transparent 92%);
}

.home-wsic-entry__item::after {
    display: none;
}

.home-wsic-entry__number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    margin: 2px 0 0;
    color: var(--wsic-accent);
    font-size: 0.88rem;
    font-weight: 700;
    background: var(--wsic-soft);
    border: 1px solid var(--wsic-border);
    border-radius: 10px;
    box-shadow: inset 0 -2px 0 rgba(15, 23, 42, 0.04);
}

.home-wsic-entry__item h3 {
    position: relative;
    z-index: 1;
    grid-column: 2;
    margin: 0;
    color: #0f172a;
    font-size: 1.24rem;
    font-weight: 700;
}

.home-wsic-entry__item h3::after {
    display: none;
}

.home-wsic-entry__item p {
    position: relative;
    z-index: 1;
    grid-column: 2;
    margin: 0;
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.75;
}

.home-wsic-entry__action {
    margin-top: 32px;
    text-align: center;
}

.home-wsic-entry__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 34px;
    color: #fff;
    font-size: 1.02rem;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #1e3a8a 0%, #2458a6 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.home-wsic-entry__cta:hover,
.home-wsic-entry__cta:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #162f73 0%, #1d4a91 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(30, 58, 138, 0.26);
}

.home-wsic-entry__cta:focus-visible {
    outline: 3px solid rgba(30, 58, 138, 0.25);
    outline-offset: 4px;
}

.home-wsic-entry__cta-arrow {
    font-size: 1.15em;
    transition: transform 180ms ease;
}

.home-wsic-entry__cta:hover .home-wsic-entry__cta-arrow,
.home-wsic-entry__cta:focus-visible .home-wsic-entry__cta-arrow {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .home-wsic-entry {
        padding: 76px 0;
    }

    .home-wsic-entry__body {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 900px;
    }

    .home-wsic-entry__media {
        grid-column: 1;
        grid-row: 1;
        min-height: 0;
        aspect-ratio: 16 / 6.8;
    }

    .home-wsic-entry__grid {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .home-wsic-entry__item {
        display: block;
        min-height: 220px;
        padding: 24px 22px;
    }

    .home-wsic-entry__number {
        margin: 0 0 18px;
    }

    .home-wsic-entry__item h3 {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .home-wsic-entry {
        padding: 56px 0;
    }

    .home-wsic-entry__heading {
        margin-bottom: 32px;
    }

    .home-wsic-entry__eyebrow {
        font-size: 0.74rem;
        letter-spacing: 0.06em;
    }

    .home-wsic-entry h2 {
        font-size: 2rem;
    }

    .home-wsic-entry__intro {
        margin-top: 14px;
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .home-wsic-entry__media {
        aspect-ratio: 4 / 3;
        margin: 0;
        padding: 0;
        border-radius: 17px;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.11);
    }

    .home-wsic-entry__media::after {
        inset: 0;
        border-radius: 16px;
    }

    .home-wsic-entry__media img {
        border-radius: 16px;
    }

    .home-wsic-entry__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-wsic-entry__item {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 16px;
        row-gap: 6px;
        min-height: 0;
        padding: 22px 20px;
    }

    .home-wsic-entry__number {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 38px;
        height: 38px;
        margin: 1px 0 0;
    }

    .home-wsic-entry__item h3 {
        grid-column: 2;
        margin: 0;
    }

    .home-wsic-entry__item p {
        grid-column: 2;
    }

    .home-wsic-entry__action {
        margin-top: 30px;
    }

    .home-wsic-entry__cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-wsic-entry__item,
    .home-wsic-entry__cta,
    .home-wsic-entry__cta-arrow {
        transition: none;
    }
}
