/* ── Shared styles for About/* pages ─────────────────────────────────────── */

/* Cover Banner */
.cover-wrapper {
    position: relative;
    width: 100%;
}

.cover-wrapper img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 32, 39, 0.72) 0%, rgba(44, 83, 100, 0.45) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.page-subtitle {
    font-size: 0.95rem;
    color: #cde8f5;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
}

/* Page Container */
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* Section Blocks */
.section-block {
    background: #ffffff;
    border-left: 4px solid #1e88e5;
    border-radius: 8px;
    padding: 28px 30px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.section-block h2,
.section-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0f2027;
    margin-bottom: 14px;
    font-family: Arial, sans-serif;
}

.section-block p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 0;
}

.section-block ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.section-block ul li {
    padding: 6px 0 6px 22px;
    font-size: 0.93rem;
    line-height: 1.7;
    color: #444;
    position: relative;
    border-bottom: 1px solid #f0f4f8;
}

.section-block ul li:last-child {
    border-bottom: none;
}

.section-block ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-size: 0.65rem;
    top: 10px;
}

/* Accent border colours */
.accent-blue   { border-left-color: #1e88e5; }
.accent-green  { border-left-color: #2e7d32; }
.accent-orange { border-left-color: #e65100; }
.accent-teal   { border-left-color: #00695c; }
.accent-purple { border-left-color: #6a1b9a; }
.accent-red    { border-left-color: #b71c1c; }

/* Mobile */
@media (max-width: 768px) {
    .cover-overlay      { padding: 0 24px; }
    .page-title         { font-size: 1.4rem; }
    .page-subtitle      { font-size: 0.85rem; }
    .cover-wrapper img  { max-height: 150px; }
    .page-container     { padding: 28px 16px 80px; }
    .section-block      { padding: 20px 16px; }
}

@media (max-width: 480px) {
    .page-title         { font-size: 1.15rem; }
    .cover-wrapper img  { max-height: 120px; }
}
