/* Case studies listing — Figma node 819:44515 */

.case-studies-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 100%;
    padding: clamp(4rem, 8.333vw, 120px) 0;
    background-color: #e8f9fc;
    background-image: var(--case-studies-hero-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.case-studies-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 100%;
    text-align: center;
    padding: 0 1rem;
}

.case-studies-hero__title {
    margin: 0;
    max-width: 980px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.33vw, 48px);
    line-height: 1.3;
    color: #150f2d;
}

.case-studies-hero__description {
    margin: 0;
    max-width: 764px;
    font-size: 18px;
    line-height: 1.48;
    color: #544f69;
}

.page--case-studies .case-studies-section {
    padding: 60px 0;
}

.page--case-studies .case-studies-section .section__header {
    margin-bottom: 40px;
}

.page--case-studies .case-studies-section .section__title {
    margin: 0;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 1.4;
    color: #150f2d;
}

.page--case-studies .case-studies-grid {
    gap: 24px;
}

.page--case-studies .case-study-card {
    border-color: #d7d7d9;
    min-height: 230px;
}

.page--case-studies .case-study-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.26;
    font-weight: 600;
    color: #055e98;
}

.page--case-studies .case-study-card__category,
.page--case-studies .case-study-card__date {
    flex-shrink: 0;
}

.page--case-studies .case-study-card h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.4;
    color: #150f2d;
}

.page--case-studies .case-study-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.page--case-studies .case-study-card__link-icon {
    width: 12px;
    height: 12px;
    background: url("../images/case-studies-card-arrow.svg") center / contain no-repeat;
}

.page--case-studies .case-study-card__link-icon img {
    display: none;
}

.page--case-studies .case-study-card__link--soon {
    pointer-events: none;
    cursor: default;
    text-decoration: underline;
}

.site-footer {
    background-color: #ffffff;  
}

@media (max-width: 768px) {
    .case-studies-hero__description {
        font-size: 16px;
    }

    .page--case-studies .case-studies-section .section__title {
        font-size: 28px;
    }
}
