.section-page {
    max-width: 960px;
    margin: 0 auto 3rem;
    padding: 0 1.25rem;
}

.section-page__title {
    margin: 0.5rem 0 1.5rem;
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.section-page__actions {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.section-card {
    background: var(--color-white);
    border-radius: var(--radius);
    border-top: 4px solid var(--color-green);
    box-shadow: var(--shadow-soft);
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
}

.section-card__title {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-green);
}

.section-card__body {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
    overflow: auto;
}

.section-card__body > *:first-child {
    margin-top: 0;
}

.section-card__body > *:last-child {
    margin-bottom: 0;
}


.section-card__body::after {
    content: "";
    display: table;
    clear: both;
}

.section-card__footer {
    margin-top: 1.25rem;
    clear: both;
}

.section-empty {
    background: var(--color-white-soft);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    color: var(--color-text-muted);
}

@media (max-width: 640px) {
    .section-card {
        padding: 1.25rem;
    }

    .section-card__body img {
        float: none;
        display: block;
        max-width: 100%;
        margin: 0 0 1rem;
    }
}
