﻿.banner {
    width: 100%;
    padding: 3rem 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
    margin: 8em auto 2em auto;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
}

.banner .heading {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards 0.1s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .banner {
        padding: 2rem 1rem 1.5rem;
    }
}

ol {
    list-style: lower-latin;
    margin: 0 0 1em 2em;
}

.banner-bg {
    background-color: #993333;
}

.content-row {
    padding: 1rem 0;
}

.content-row h4 {
    margin: 1rem 0;
}

.contact-list {
    margin: 1.5rem 0;
}

.contact-list div {
    display: flex;
    gap: 0.5rem;
    margin: 0.4rem 0;
}

.contact-list dt {
    font-weight: 700;
    min-width: 160px;
}

.contact-list dd {
    margin: 0;
}

.contact-list a {
    color: #0d6efd;
}