﻿/* ── Section wrapper ── */
.statement-section {
    max-width: 860px;
    margin: 0 auto;
}

/* ── Heading ── */
.statement-section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #c0392b;
    text-decoration: underline;
    margin-bottom: 10px;
}

/* ── Intro text ── */
.statement-intro {
    font-size: 0.95rem;
    color: #c0392b;
    line-height: 1.6;
    margin-bottom: 6px;
}

.statement-date {
    font-size: 0.95rem;
    color: #c0392b;
    margin-bottom: 24px;
}

/* ── Card ── */
.statement-card {
    background: #f0f0f0;
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ── Left: red title block ── */
.card-title {
    flex: 0 0 auto;
    font-size: 1.35rem;
    font-weight: 700;
    color: #C74900;
    line-height: 1.25;
    min-width: 160px;
    max-width: 200px;
}

/* ── Icon ── */
.card-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    color: #555;
}

/* ── Divider ── */
.card-divider {
    width: 1.5px;
    align-self: stretch;
    background: #C74900;
    flex: 0 0 auto;
}

/* ── Right: text block ── */
.card-body {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #333;
}

.card-body p + p {
    margin-top: 6px;
}

.card-body .highlight {
    color: #c0392b;
    font-weight: 500;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .statement-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .card-title {
        font-size: 1.15rem;
        max-width: 100%;
    }

    .card-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }

    .card-icon {
        display: none; /* tuck icon away on very small screens */
    }
}

