/* ===== Base ===== */

.wc-hero * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.wc-hero {
    background: #f3f4f4;
    color: #1f2a44;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .wc-hero img {
        max-width: 100%;
        display: block;
    }

    .wc-hero a {
        color: inherit;
        text-decoration: none;
    }

/* ===== Layout ===== */
.wc-hero {
    width: 100%;
    padding: 36px 0;
}

.wc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.wc-top-row {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 32px;
    align-items: center;
}

/* ===== Title ===== */
.wc-title {
    color: #2a4178;
    letter-spacing: -0.02em;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    /*font:normal normal normal 47px / 1.4em helvetica-w01-bold, sans-serif;*/
    color: rgb(83, 110, 183);
    letter-spacing: 0em;
}

    .wc-title span {
        background-color: #F7CF05;
        padding: 4px 12px;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
        display: inline;
    }

.wc-hl {
    background-color: #F7CF05;
    padding: 4px 12px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    display: inline;
}

.wc-nowrap {
    white-space: nowrap;
}

/* ===== Subtitle ===== */



.wc-subtitle {
    margin-top: 28px;
    max-width: 610px;
}

    .wc-subtitle p {
        margin: 0 0 22px;
        color: #0d2d52;
        font-family: Helvetica, Arial, sans-serif;
        font-size: 20px;
        line-height: 1.45;
        font-weight: 700;
        letter-spacing: 0;
    }

        .wc-subtitle p:last-child {
            margin-bottom: 0;
        }
/* ===== Image ===== */
.wc-right-image {
    display: flex;
    justify-content: center;
}

    .wc-right-image img {
        width: 100%;
        max-width: 460px;
        height: auto;
        border-radius: 6px;
        object-fit: cover;
        user-select: none;
    }

/* ===== Info Cards ===== */
.wc-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    line-height: normal;
    text-align: center;
    margin-top: -12px;
}

.wc-card {
    aspect-ratio: 0 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .wc-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    }

.wc-card-red {
    background-color: #ef3e36;
}

.wc-card-navy {
    background-color: #1f3147;
}

.wc-card-blue {
    background-color: #1394e4;
}

.wc-card-purple {
    background-color: #5b1f5b;
}

.wc-card-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
    color: rgb(255, 255, 255);
}

.wc-card-value {
    font-size: 40px;
    font-weight: 800;
    margin-top: 12px;
    font-family: helvetica-w01-bold,helvetica-w02-bold,helvetica-lt-w10-bold,sans-serif;
    color: rgb(255, 255, 255);
    line-height: normal;
    text-align: center;
}

.wc-card-value-lg {
    font-size: 40px;
}

.wc-asterisk {
    font-size: 28px;
    vertical-align: top;
}

.wc-card-sub {
    margin-top: 24px;
    font-size: 15px;
    color: rgb(255, 255, 255);
}

.wc-card-link {
    margin-top: 24px;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}

    .wc-card-link:hover {
        opacity: 0.9;
    }

/* ===== CTA Buttons ===== */
.wc-ctas {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 32px;
    font-family: helvetica-w01-roman,helvetica-w02-roman,helvetica-lt-w10-roman,sans-serif;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}

    .wc-btn .wc-arrow {
        width: 28px;
        height: 28px;
        transition: transform 0.2s ease;
    }

    .wc-btn:hover .wc-arrow {
        transform: translateX(4px);
    }

.wc-btn-yellow {
    background-color: #f5b942;
    color: #2a4178;
}

    .wc-btn-yellow:hover {
        background-color: #f0ab28;
    }

.wc-btn-blue {
    background-color: #4f6db5;
    color: #ffffff;
}

    .wc-btn-blue:hover {
        background-color: #4361a3;
    }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .wc-title {
        font-size: 48px;
    }

    .wc-card-value {
        font-size: 44px;
    }

    .wc-card-value-lg {
        font-size: 56px;
    }

    .wc-container {
        padding: 0 28px;
    }
}

@media (max-width: 768px) {
    .wc-hero {
        padding: 36px 0;
    }

    .wc-container {
        padding: 0 20px;
    }

    .wc-top-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wc-title {
        font-size: 36px;
    }
    /* allow long title to wrap on small screens */
    .wc-nowrap {
        white-space: normal;
    }

    .wc-subtitle {
        margin-top: 24px;
    }

        .wc-subtitle p {
            font-size: 17px;
        }

            .wc-subtitle p + p {
                margin-top: 18px;
            }

    .wc-right-image {
        justify-content: center;
    }

        .wc-right-image .wc-hero img {
            max-width: 360px;
        }

    .wc-cards {
        margin-top: -40px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .wc-card {
        padding: 12px;
    }

    .wc-card-label {
        font-size: 14px;
    }

    .wc-card-value {
        font-size: 32px;
        margin-top: 8px;
    }

    .wc-card-value-lg {
        font-size: 44px;
    }

    .wc-asterisk {
        font-size: 20px;
    }

    .wc-card-sub,
    .wc-card-link {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.35;
    }

    .wc-ctas {
        margin-top: 16px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wc-btn {
        font-size: 20px;
        padding: 22px 24px;
        gap: 12px;
    }

        .wc-btn .wc-arrow {
            width: 22px;
            height: 22px;
        }
}

@media (max-width: 480px) {
    .wc-hero {
        padding: 85px 0;
    }

    .wc-container {
        padding: 0 16px;
    }

    .wc-title {
        font-size: 30px;
    }

    .wc-hl {
        padding: 3px 10px;
    }

    .wc-subtitle p {
        font-size: 16px;
    }

    .wc-cards {
        gap: 10px;
    }

    .wc-card {
        padding: 10px;
    }

    .wc-card-label {
        font-size: 12px;
    }

    .wc-card-value {
        font-size: 26px;
    }

    .wc-card-value-lg {
        font-size: 38px;
    }

    .wc-asterisk {
        font-size: 16px;
    }

    .wc-card-sub,
    .wc-card-link {
        font-size: 12px;
        margin-top: 10px;
    }

    .wc-btn {
        font-size: 18px;
        padding: 18px 18px;
    }
}

@media (max-width: 360px) {
    .wc-hero {
        padding: 85px 0;
    }

    .wc-title {
        font-size: 26px;
    }

    .wc-card-value {
        font-size: 22px;
    }

    .wc-card-value-lg {
        font-size: 32px;
    }
}
