/* Header section */
.usecase-header {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
}

#intro-container.usecase-header .title {
    margin: 0;
}

/* Image block */
.image-block {
    text-align: center;
}

.usecase-cover {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Section content */
.usecase-content {
    padding-top: 1em;
    border-top: 2px solid var(--celtic-blue-a10);
}

.usecase-content strong,
.usecase-content b {
    color: var(--oxford-blue);
}

.usecase-content a {
    color: var(--bleu-de-france);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.usecase-content a:hover {
    color: var(--azure);
    text-decoration: none;
}

.usecase-content.banner {
    background-color: var(--azure-a5);
    margin-bottom: 40px;
    padding: 30px 24px;
    border-radius: 8px;
    box-shadow: inset 0px 0px 25px -15px var(--azure);
}

.usecase-content.banner .section-description {
    margin-bottom: 28px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--oxford-blue);
    margin-bottom: 16px;
}

.section-image {
    display: block;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.section-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--black-a80);
    margin-bottom: 48px;
}

.section-description ul,
.section-description ol {
    padding-left: 25px;
}

.section-description li {
    margin-bottom: 0.25em;
}

.section-description li>ul {
    margin-top: 0.25em;
}

@media screen and (min-width: 1360px) {
    .section-title {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 1359px) {
    .section-title {
        font-size: 1.6rem;
    }
}

@media screen and (min-width: 768px) {
    .usecase-header {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        justify-content: space-between;
        margin-bottom: 64px;
    }

    .text-block {
        grid-column: 1/3;
    }

    .usecase-title {
        font-size: 2.75rem;
    }

    .image-block {
        text-align: right;
    }

    .usecase-cover {
        max-width: 420px;
    }
}

@media screen and (max-width: 767px) {
    .section-title {
        font-size: 1.45rem;
    }
}

@media screen and (min-width: 641px) {
    article.page-container.wrapper {
        padding-top: 3rem;
    }

    .section-description ul,
    .section-description ol {
        padding-left: 40px;
    }

    .section-description li {
        margin-bottom: 0.3em;
    }

    .section-description li>ul {
        margin-top: 0.3em;
    }
}

@media screen and (max-width: 640px) {
    .section-title {
        font-size: 1.3rem;
    }
}