/* ========================
   CASE STUDY
======================== */
.expert__case-study {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 55px;
}

.expert__case-study > * {
    display: flex;
    flex-direction: column;
}

.expert__case-study > .exbg {
    background-color: var(--color-background);
    padding: 16px 32px;
    border-radius: 10px;
}

/* Two columns text inside case study */
.expert__case-study .text--twocols {
    align-self: center;
    font-family: Barlow, sans-serif;
}

/* H3 styling */
.expert__case-study .text--twocols h3,
.expert__case-study .text--twocols h3 span {
    font-family: Barlow, sans-serif;
    font-size: var(--heading-size-m);
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    line-height: 120%;
}

/* Paragraphs and other elements */
.expert__case-study .text--twocols p,
.expert__case-study .text--twocols li,
.expert__case-study .text--twocols span {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
     margin: 16px 0;
}

/* Blockquotes inside case study */
.expert__case-study .text--twocols blockquote {
    background-color: var(--color-neutral--dark);
    color: #fff;
    padding: 8px;
    border-radius: 10px;
}

/* ========================
   DESKTOP (min-width: 999px)
======================== */
@media screen and (min-width: 999px) {
    .expert__case-study {
        gap: 48px;
        margin-bottom: 110px;
        padding-bottom: 48px;
    }

    .expert__case-study .text--twocols p,
    .expert__case-study .text--twocols li,
    .expert__case-study .text--twocols span {
        font-size: 18px;
    }

    .expert__case-study > .exbg {
        padding: 64px 125px;
    }

    .expert__case-study .text--twocols blockquote {
        padding: 16px 64px;
    }
}
