:root {
            --primary-orange: #F87336;
            --light-bg: #f5f7faad;
            --card-bg: #ffffffab;
            --text-primary: #1a1d21;
            --text-secondary: #4a5568;
            --border-color: #d1d5db;
            --accent-orange: #F87336;
            --success-green: #22c55e;
            --warning-yellow: #fbbf24;
            --shadow-color: rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("CSWN-WX0SWN.png");
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: 70%;
            opacity: 0.20;
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        header {
            background: var(--card-bg);
            border-bottom: 3px solid var(--primary-orange);
            padding: 2rem 0;
            box-shadow: 0 4px 6px var(--shadow-color);
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .logo-img {
            width: 180px;
            height: 180px;
            flex-shrink: 0;
        }

        .header-text h1 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            color: var(--text-primary);
        }

        .header-text .subtitle {
            font-size: clamp(0.875rem, 2vw, 1.5rem);
            color: var(--text-secondary);
            font-weight: 400;
        }

        /* Navigation */
        nav {
            background: var(--card-bg);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px var(--shadow-color);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-links {
            display: flex;
            flex-wrap: nowrap;
            gap: 0.5rem;
            list-style: none;

        }

        .nav-links li {
            list-style: none;
            white-space: nowrap; /* prevents label wrapping */
        }

        .nav-links a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
            border: 1px solid transparent;
        }

        .theme-switch {
            margin-left: auto;   /* pushes switch to far right */
        }

        .nav-links a:hover {
            background: var(--light-bg);
            color: var(--primary-orange);
            transform: translateY(-2px);
            border: 1px solid var(--primary-orange);
        }

        .nav-links a.active {
            background: var(--primary-orange);
            color: #ffffff;
            font-weight: 600;
        }

        a:link {
            color: var(--primary-orange);
        }

        /* Main Content */
        main {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 3rem 0;
        }

        @media (min-width: 1024px) {
            main {
                grid-template-columns: 250px 1fr;
            }
        }

        /* Sidebar */
        .sidebar {
            display: none;
        }

        @media (min-width: 1024px) {
            .sidebar {
                display: block;
            }
        }

        .sidebar-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 4px var(--shadow-color);
        }

        .sidebar-card h3 {
            font-size: 1rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }

        .sidebar-card ul {
            list-style: none;
        }

        .sidebar-card a {
            color: var(--text-primary);
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .sidebar-card a:hover {
            color: var(--primary-orange);
            padding-left: 0.5rem;
        }

        .sidebar-card a.current {
            color: var(--primary-orange);
            font-weight: 600;
        }

        .badge-restricted {
            display: inline-block;
            background: #dc2626;
            color: #ffffff;
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 3px;
            margin-left: 0.25rem;
            border: 1px solid #991b1b;
        }

        /* Content Area */
        .content {
            background: var(--card-bg);
            border-radius: 12px;
            padding: clamp(1.5rem, 4vw, 3rem);
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 8px var(--shadow-color);
            height: fit-content;
            align-self: flex-start;
        }

        .content h1 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
            border-bottom: 3px solid var(--primary-orange);
            padding-bottom: 0.75rem;
        }

        .content h2 {
            font-size: clamp(1.375rem, 3vw, 1.75rem);
            margin: 2.5rem 0 1.25rem;
            color: var(--text-primary);
            border-top: 2px solid var(--border-color);
            padding-top: 1.5rem;
        }

        /* Mission Statement */
        .mission-statement {
            background: linear-gradient(135deg, rgba(248, 115, 54, 0.08), rgba(248, 115, 54, 0.04));
            border-left: 4px solid var(--primary-orange);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid rgba(248, 115, 54, 0.2);
        }

        .mission-statement p {
            font-size: 1.125rem;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .mission-statement a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .mission-statement a:hover {
            text-decoration: underline;
            color: #d95a1f;
        }

        /* Core Values */
        .core-values {
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .value-item {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-orange);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .value-item:hover {
            background: rgba(248, 115, 54, 0.08);
            transform: translateX(8px);
            box-shadow: 0 4px 12px rgba(248, 115, 54, 0.15);
        }

        .value-item strong {
            display: block;
            font-size: 1.25rem;
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
        }

        /* Policy Section */
        .policy-section {
            margin-top: 3rem;
        }

        .policy-section p {
            margin-bottom: 1.25rem;
            line-height: 1.8;
            color: var(--text-primary);
        }

        .policy-section a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .policy-section a:hover {
            color: var(--primary-orange);
            text-decoration: underline;
        }

        .main-statement {
            background: linear-gradient(135deg, rgba(248, 115, 54, 0.08), rgba(248, 115, 54, 0.04));
            border-left: 4px solid var(--primary-orange);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid rgba(248, 115, 54, 0.2);
        }

        .main-statement p {
            font-size: 1.125rem;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .main-statement a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .main-statement a:hover {
            text-decoration: underline;
            color: #d95a1f;
        }

        /* Core Values */
        .main-hover {
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .hover-main {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-orange);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .hover-main:hover {
            background: rgba(248, 115, 54, 0.08);
            transform: translateX(8px);
            box-shadow: 0 4px 12px rgba(248, 115, 54, 0.15);
        }

        .hover-main strong {
            display: block;
            font-size: 1.25rem;
            color: var(--primary-orange);
            margin-bottom: 0.5rem;
        }

        /* Main Section */
        .main-section {
            margin-top: 3rem;
        }

        .main-section p {
            margin-bottom: 1.25rem;
            line-height: 1.8;
            color: var(--text-primary);
        }

        .main-section a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .main-section a:hover {
            color: var(--primary-orange);
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: var(--card-bg);
            border-top: 3px solid var(--primary-orange);
            padding: 2rem 0;
            margin-top: 4rem;
            box-shadow: 0 -2px 4px var(--shadow-color);
        }

        .footer-content {
            font-size: 0.875rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .footer-content a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
        }

        .footer-content a:hover {
            color: var(--primary-orange);
            text-decoration: underline;
        }

        /* Mobile Menu Toggle */
        .mobile-nav-toggle {
            display: none;
            background: var(--primary-orange);
            color: #ffffff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
            }

            .nav-links.active {
                display: flex;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .logo-img {
                width: 175px;
                height: 175px;
            }

            .content {
                padding: 1.5rem;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Accessibility */
        a:focus, button:focus {
            outline: 2px solid var(--primary-orange);
            outline-offset: 2px;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            min-width: 200px;
            box-shadow: 0 4px 12px var(--shadow-color);
            padding: 0.5rem 0;
            z-index: 1000;
            list-style: none;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            border-radius: 0;
            list-style: none;
        }

        .dropdown-menu a:hover {
            background: var(--light-bg);
            color: var(--primary-orange);
            transform: none;
        }

        /* Mobile dropdown */
        @media (max-width: 768px) {
            .dropdown-menu {
                position: static;
                box-shadow: none;
                border: none;
                background: var(--light-bg);
                margin-top: 0.5rem;
            }
        }

        .nav-links .dropdown-menu a::before {
            content: none !important;
        }

/* From Uiverse.io by cssbuttons-io */ 
.switch {
 border: 2px solid #f0ebeb;
 border-radius: 130px;
 margin-bottom: 45px;
 padding: 1px 2px;
 background: linear-gradient(to bottom right, white, rgba(220,220,220,.5)), white;
 box-shadow: 0 0 0 2px #fbfbfb;
 cursor: pointer;
 display: flex;
 align-items: center;
}

.switch:last-child {
 margin-bottom: 0;
}

.switch input[type="checkbox"] {
 display: none;
}

.switch label {
 position: relative;
 display: inline-block;
 width: 65px;
 height: 20px;
 background: #d13613;
 border-radius: 80px;
 cursor: pointer;
 box-shadow: inset 0 0 16px rgba(0,0,0,.3);
 transition: background .5s;
}

.switch input[type="checkbox"]:checked + label {
 background: #13d162;
}

.handle {
 position: absolute;
 top: -8px;
 left: -10px;
 width: 35px;
 height: 35px;
 border: 1px solid #e5e5e5;
 background: repeating-radial-gradient(circle at 50% 50%, rgba(200,200,200,.2) 0%, rgba(200,200,200,.2) 2%, transparent 2%, transparent 3%, rgba(200,200,200,.2) 3%, transparent 3%), conic-gradient(white 0%, silver 10%, white 35%, silver 45%, white 60%, silver 70%, white 80%, silver 95%, white 100%);
 border-radius: 50%;
 box-shadow: 3px 5px 10px 0 rgba(0,0,0,.4);
 transition: left .4s;
}

.switch input[type="checkbox"]:checked + label > .handle {
 left: calc(100% - 35px + 10px);
}


/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Alert Messages */
.alert {
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.alert h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.alert p {
    margin: 0;
    line-height: 1.6;
}

.alert-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-left-color: var(--success-green);
    color: var(--text-primary);
}

.alert-success h3 {
    color: #15803d;
}

.alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border-left-color: #ef4444;
    color: var(--text-primary);
}

.alert-error h3 {
    color: #b91c1c;
}

.contact-info {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-color);
    height: fit-content;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 0.75rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.contact-method h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.contact-method p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
}

.availability-box {
    background: linear-gradient(135deg, rgba(248, 115, 54, 0.1), rgba(248, 115, 54, 0.05));
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.availability-box h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.availability-box ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.availability-box li {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.availability-box strong {
    color: var(--primary-orange);
}

/* Contact Form */
.contact-form-container {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.contact-form-container h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 0.75rem;
}

.contact-form-container > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(248, 115, 54, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-footer {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px var(--shadow-color);
    text-align: center;
}

.contact-footer h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-footer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-orange);
    color: #ffffff;
}

.btn-primary:hover {
    background: #d95a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

        .alerts-header {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
            border-left: 4px solid var(--primary-orange);
        }

        .alerts-header h1 {
            margin: 0 0 0.5rem 0;
            font-size: 2rem;
        }

        .last-update {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .regions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .regions-grid {
                grid-template-columns: 1fr;
            }
        }

        .region-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .region-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .region-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--border-color);
        }

        .region-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .alert-count {
            background: var(--primary-orange);
            color: var(--dark-bg);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .alert-count.zero {
            background: var(--success-green);
            color: #000;
        }

        .alert-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 0.75rem;
            border-left: 4px solid;
            transition: all 0.3s ease;
        }

        .alert-item:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateX(4px);
        }

        .alert-item:last-child {
            margin-bottom: 0;
        }

        /* Severity colors */
        .alert-extreme {
            border-left-color: #ff0000;
        }

        .alert-severe {
            border-left-color: #ff6b00;
        }

        .alert-moderate {
            border-left-color: #ffff00;
        }

        .alert-minor {
            border-left-color: #00ff00;
        }

        /* Event type colors */
        .event-tornado { background: rgba(255, 0, 0, 0.15); }
        .event-severe { background: rgba(255, 107, 0, 0.15); }
        .event-flood { background: rgba(0, 191, 255, 0.15); }
        .event-winter { background: rgba(173, 216, 230, 0.15); }
        .event-wind { background: rgba(255, 215, 0, 0.15); }

        .alert-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .alert-meta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .alert-severity {
            font-weight: 600;
            text-transform: uppercase;
        }

        .alert-description {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-top: 0.5rem;
        }

        .no-alerts {
            text-align: center;
            padding: 2rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        .no-alerts-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .alert-link {
            display: inline-block;
            margin-top: 0.5rem;
            color: var(--primary-orange);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .alert-link:hover {
            text-decoration: underline;
        }

.cwa-table-wrapper {
    max-width: 960px;
    margin: 1.5rem auto;
    padding: 0 1rem;
    overflow-x: auto;
}

.cwa-table {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.cwa-table caption {
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.cwa-table thead {
    background: linear-gradient(90deg, var(--primary-orange), #d95a1f);
    color: #ffffff;
}

.cwa-table th,
.cwa-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cwa-table th {
    font-weight: 600;
}

.cwa-table tbody tr {
    transition: all 0.3s ease;
}

.cwa-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

.cwa-table tbody tr:hover {
    background-color: rgba(248, 115, 54, 0.1);
    transform: scale(1.01);
}

.cwa-table th[scope="row"] {
    font-weight: 600;
    color: var(--primary-orange);
}

@media (max-width: 640px) {
    .cwa-table th,
    .cwa-table td {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }

    .cwa-table-wrapper {
        margin: 1rem 0;
    }
}

.team-member {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.member-photo {
    flex: 0 0 220px;
}

.member-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 6px;
}

.member-content {
    flex: 1;
}

.member-content h3 {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.severe-climatology {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.severe-climatology p,
.severe-climatology ul,
.severe-climatology blockquote,
.severe-climatology figcaption {
  text-align: center;
}

.severe-climatology ul {
  list-style-position: inside;
}

.severe-climatology img {
  display: block;
  margin: 0 auto;
}

.agency-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.agency-icons img {
    display: block;
}
