.featured-case-study {
    .featured-case-study-wrapper {
        display: grid;
        grid-template-columns: minmax(260px, 543px);
        position: relative;
        aspect-ratio: 16 / 7;
        border-radius: 24px;
        overflow: hidden;
    }
    .featured-case-study-image {
        position: absolute;
        top:0;right:0;bottom:0;left:0;
        z-index: 0;
        width: 100%;
        height: 100%;
        img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .featured-case-study-content {
        display: inline-flex;
        align-items: flex-end;
        overflow: auto;
        position: relative;
        z-index: 1;
        padding: 48px 24px;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.00) 100%);
        backdrop-filter: blur(38px);
    }
    .featured-case-study-content--inner {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .featured-case-study-content--inner * {
        margin: 0;
        color: white;
    }
    .featured-case-study-logo {
        max-width: 150px;
    }
    .featured-case-study-title {
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .featured-case-study-excerpt {}
    .featured-case-study-links {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 16px;
    }
    .featured-case-study-link {
        display: inline-flex;
        gap: 28px;
        max-width: fit-content;
        background-color: transparent;
        border: 1px solid white;
        .elementor-button-content-wrapper {
            gap: 28px;
        }
    }
}

@media (max-width: 1279px) {
    .featured-case-study {
        .featured-case-study-wrapper {
            aspect-ratio: 16 / 9;
        }
    }
}

@media (max-width: 1023px) {
    .featured-case-study {
        .featured-case-study-wrapper {
            grid-template-rows: minmax(300px, 1fr);
            grid-template-columns: 1fr;
            aspect-ratio: unset;
            padding-top: 360px;
        }
        .featured-case-study-content {
            padding: 24px 14px;
        }
        .featured-case-study-content--inner {
            gap: 16px;
        }
        .featured-case-study-logo {
            max-width: 110px;
        }
        .featured-case-study-title {
            font-size: 20px;
        }
        .featured-case-study-links {
            gap: 16px;
            margin-top: 0;
        }
        .featured-case-study-link {
            font-size: 12px;
            .elementor-button-content-wrapper {
                gap: 16px;
            }
        }
    }
}
