
    .case-study {
        width: 100%;
        padding: 80px 100px;
        background: #F8FAFF;
    }

    .case-study .container {
        max-width: 1335px;
        margin: 0 auto;
        width: 100%;
    }

    /* Case Study-specific badge differences.
       Base badge styling comes from component.css. */

    .case-header {
        max-width: 931px;
        margin: 0 auto 60px;
        text-align: center;
    }

    .case-header h2 {
        margin: 22px 0;
        font-size: 48px;
        font-weight: 600;
        line-height: 58px;
        color: #222;
    }

    .case-header p {
        font-size: 18px;
        line-height: 26px;
        font-weight: 400;
        letter-spacing: -4%;
        color: #222;
        max-width: 716px;
        font-style: normal;
        margin: 0 auto;
    }

    .case-slider {
        position: relative;
        width: 100%;
        background: #edf2ff;
        border-radius: 16px;
        padding: 24px 90px 24px 24px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .case-slide {
        align-items: center;
        gap: 24px;
        width: 100%;
        border-radius: 16px;
    }
    .case-image {
        width: 320px;
        height: 332px;
        flex: 0 0 320px;
    }

    .case-image img {
        width: 100%;
        height: 332px;
        object-fit: cover;
        border-radius: 16px;
        display: block;
    }

    .case-content {
        flex: 1;
        min-width: 0;
        background: #fff;
        padding: 36px 28px;
        border-radius: 12px;
        height: 332px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .case-content h3 {
        font-size: 24px;
        font-weight: 600;
        line-height: 34px;
        margin: 0 0 16px;
        color: #000;
    }

    .case-content p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -4%;
        font-weight: 400;
        color: #222;
        margin: 0 0 26px;
    }

    .case-content h4 {
        font-size: 16px;
        font-weight: 500;
        line-height: 100%;
        margin: 0 0 30px;
        color: #000;
    }

    .case-content a {
        font-family: 'lato', sans-serif;
        font-style: normal;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0;
        font-weight: 400;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--color-Blue-Ribbon-400, #53A0FF);
        width: fit-content;
    }

    .case-content a span {
        border-bottom: 1px solid #53A0FF;
        padding-bottom: 4px;
    }

    .case-content a img {
        width: 10px;
    }

    .case-slide {
        display: none;
    }

    .case-slide.active {
        display: flex;

        animation: caseSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes caseSlideIn {

        0% {
            opacity: 0;
            transform: translateY(28px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }

    }
    @keyframes caseSlideFromRight {

        0% {
            opacity: 0;
            transform: translateX(60px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }

    }

    @keyframes caseSlideFromLeft {

        0% {
            opacity: 0;
            transform: translateX(-60px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }

    }

    .case-navigation {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 14px;
        z-index: 10;
    }

    .case-navigation button {
        width: 40px;
        height: 40px;

        padding: 0;

        border: 1px solid #53A0FF;

        border-radius: 50%;

        background: #fff;

        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow: none;

        transition:
            background-color 0.25s ease,
            transform 0.25s ease;
    }

    .case-navigation button:hover {
        background: #155dfc;
        transform: scale(1.05);
    }

    .case-navigation button img {
        width: 16px;
        height: 16px;

        display: block;

        transition: filter 0.25s ease;
    }

    .case-navigation img {
        width: 18px;
    }

    @media (max-width: 480px) {
        .case-study {
            padding: 16px;
        }

        .case-header {
            max-width: 380px;
            margin: 0 auto 32px;
            text-align: center;
        }

        .case-header h2 {
            font-size: 32px;
            font-weight: 600;
            line-height: 40px;

            margin: 0 0 12px;

            color: #000;
        }

        .case-header p {
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;

            letter-spacing: -0.04em;

            color: #222;

            max-width: 364px;

            margin: 0 auto;
        }

        .case-slider {
            width: 100%;

            padding: 16px;

            border-radius: 16px;

            overflow: hidden;

            box-sizing: border-box;
        }

        .case-slide {
            display: none;

            flex-direction: column;

            align-items: stretch;

            width: 100%;

            gap: 16px;

            padding: 0;

            border-radius: 16px;

            box-sizing: border-box;
        }

        .case-slide.active {
            display: flex;
        }

        .case-image {
            width: 100%;

            height: auto;

            flex: none;

            order: 1;

            box-sizing: border-box;
        }

        .case-image img {
            display: block;

            width: 100%;

            height: auto;

            aspect-ratio: 1.46 / 1;

            object-fit: cover;

            border-radius: 16px;
        }

        .case-content {
            width: 100%;

            height: auto;

            flex: none;

            order: 2;

            padding: 0;

            background: transparent;

            box-sizing: border-box;

            display: block;
        }

        .case-content h3 {
            font-size: 24px;

            line-height: 32px;

            margin: 0 0 12px;

            color: #000;
        }

        .case-content p {
            font-size: 16px;

            line-height: 24px;

            margin: 0 0 20px;

            color: #222;
        }

        .case-content h4 {
            font-size: 16px;

            line-height: 24px;

            margin: 0 0 20px;

            color: #222;
        }

        .case-content a {
            font-size: 16px;

            color: var(--color-Blue-Ribbon-400, #53A0FF);
        }

        .case-content a span {
            border-bottom-color: #53A0FF;
        }

        .case-content a img {
            filter: none;
        }

    .case-slide.active.slide-next {
        animation: caseSlideFromRight
            0.55s
            cubic-bezier(0.22, 1, 0.36, 1)
            both;
    }

    .case-slide.active.slide-prev {
        animation: caseSlideFromLeft
            0.55s
            cubic-bezier(0.22, 1, 0.36, 1)
            both    ;
    }

        .case-navigation {
            position: static;
            transform: none;

            display: flex;
            flex-direction: row;

            justify-content: center;
            align-items: center;

            margin-top: 16px;
            gap: 12px;
        }

        .case-navigation button {
            width: 40px;
            height: 40px;

            padding: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            border: 1px solid #53A0FF;
            border-radius: 50%;

            background: #fff;

            cursor: pointer;
        }

        .case-navigation button img {
        width: 16px;
        height: 16px;
        display: block;
    }

    .case-navigation button:first-child img {
        transform: rotate(-90deg);
    }

    .case-navigation button:last-child img {
        transform: rotate(-90deg);
    }

    }

    /* TABLET: 481px–768px */
    /* TABLET: 481px–768px */
    /* TABLET: 481px–768px */
    /* ========================================
    TABLET — 481px to 768px
    ======================================== */
/* Tablet */
@media (min-width: 481px) and (max-width: 768px) {

    .case-study {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .case-header {
        max-width: min(90%, 600px);
        margin: 0 auto clamp(28px, 5vw, 40px);
        text-align: center;
    }

    .case-header h2 {
        font-size: 34px;
        line-height: 1.25;
        margin: 18px 0 10px;
    }

    .case-header p {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -4%;
        max-width: 90%;
        margin: 0 auto;
    }

    .case-slider {
        width: 100%;
        max-width: 100%;
        padding: 18px clamp(46px, 8vw, 52px) 18px 18px;
        box-sizing: border-box;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
    }

    .case-slide.active {
        display: grid;
        grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
        align-items: stretch;
    }

    .case-image {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: clamp(220px, 32vw, 250px);
    }

    .case-image img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        display: block;
    }

    .case-content {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        height: clamp(220px, 32vw, 250px);
        padding: 18px 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .case-content h3 {
        font-size: 20px;
        line-height: 26px;
        margin: 0 0 8px;
    }

    .case-content p {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -4%;
        color: rgba(34,34,34,1);
        font-weight: 400;
        margin: 0 0 12px;
    }

    .case-content h4 {
        font-size: 15px;
        line-height: 20px;
        margin: 0 0 12px;
    }

    .case-content a {
        font-size: 14px;
        max-width: 100%;
    }

    .case-navigation {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 10;
        margin-top: 0;
    }

    .case-navigation button {
        width: 36px;
        height: 36px;
    }

}