/* Government Portal Style - Standardized & Modernized */
:root {
    --primary-blue: #003366;
    /* Elegant Dark Blue */
    --secondary-blue: #0056b3;
    --accent-red: #c8102e;
    /* Royal Red */
    --silver-gray: #f2f4f7;
    --text-dark: #111827;
    --text-muted: #4b5563;
    --gov-yellow: #ffd700;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* GLOBAL FONT FIX */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
li,
td,
th,
.box-title,
.nav-item,
button {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

body {
    background-color: #f1f3f5;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

/* Main Wrapper - Modern Boxed Layout */
.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 100vh;
}

/* GOV-STYLE UTILITY BAR */
.utility-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 0 20px;
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.utility-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.datetime-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.utility-item-left i {
    color: var(--accent-red);
    margin-right: 6px;
}

.utility-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.weather-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 0;
    background: var(--silver-gray);
    color: var(--primary-blue);
    font-weight: 500;
}

/* SEARCH DESIGN */
.gov-search-box {
    display: flex;
    align-items: center;
    background: var(--silver-gray);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 0 12px;
    height: 32px;
    width: 240px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gov-search-box:focus-within {
    width: 300px;
    background: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 75, 145, 0.1);
}

.utility-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    width: 100%;
}

.utility-search-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
}

/* HEADER - PREMIUM CLEAN */
.top-banner {
    background: #fff;
    padding: 25px 50px;
    display: flex;
    align-items: center;
    border-top: 5px solid var(--accent-red);
    border-bottom: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.top-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-red), var(--primary-blue));
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.banner-text {
    display: flex;
    flex-direction: column;
}

.org-name-1 {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.org-name-2 {
    font-size: 28px;
    color: var(--primary-blue);
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
}

/* PARTNERSHIP STYLES */
.govpay-partnership {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.partnership-line {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.partnership-logo {
    height: 38px;
    width: auto;
}

.partnership-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.partnership-text .p-top {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 600;
}

.partnership-text .p-top strong {
    color: #64748b;
    font-weight: 800;
}

.partnership-text .p-bottom {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.partnership-text .p-bottom i {
    color: #22c55e;
    font-size: 12px;
}

@media (max-width: 900px) {
    .govpay-partnership {
        display: none;
    }
}

/* NAVIGATION - ELEGANT DARK */
.main-nav {
    background: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
}

.main-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-bottom: 3px solid var(--gov-yellow);
}

.main-nav .nav-item.active {
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    border-bottom: 3px solid var(--gov-yellow);
}

.utility-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
}

.utility-center {
    display: none;
    /* Removed for standard layout */
}

/* LEFT INFO ITEMS */
.datetime-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.utility-item-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.utility-item-left i {
    color: #da251d;
}

/* RIGHT ACTIONS */
.utility-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* COMPACT WEATHER */
.weather-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 2px 12px;
    border-radius: 0;
    border: 1px solid #ddd;
    font-weight: 600;
    color: #004b90;
    font-size: 12px;
}

.weather-status i {
    color: #f59e0b;
}

/* GOV SEARCH DESIGN */
.gov-search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    /* Square/Gov style usually simpler */
    padding: 0 8px;
    height: 28px;
    width: 250px;
    transition: all 0.3s ease;
}

.gov-search-box:focus-within {
    border-color: #004b90;
    box-shadow: 0 0 5px rgba(0, 75, 144, 0.2);
    width: 350px;
}

.utility-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    width: 100%;
    color: #333;
}

.utility-search-btn {
    border: none;
    background: transparent;
    color: #004b90;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.utility-search-btn:hover {
    color: #da251d;
}

@media (max-width: 991px) {
    .utility-bar {
        padding: 0 15px;
    }

    .datetime-group .utility-item-left:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .utility-bar {
        height: auto;
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        align-items: stretch;
    }

    .utility-left,
    .utility-right {
        justify-content: center;
    }

    .gov-search-box {
        width: 100%;
    }

    .gov-search-box:focus-within {
        width: 100%;
    }
}


@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

    /* Move fully left */
}

.utility-divider {
    color: #ced4da;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .utility-bar {
        height: auto;
        padding: 5px 15px;
    }

    .utility-search-wrapper {
        width: 100%;
        margin-top: 5px;
    }

    .utility-center {
        width: 100%;
    }
}

.main-nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.main-nav li {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.main-nav a {
    display: block;
    padding: 12px 20px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
}

/* ... */
.main-nav a:hover,
.main-nav a.active {
    background-color: var(--primary-red);
    color: var(--gov-yellow);
    text-decoration: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-blue);
    min-width: 240px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-radius: 0;
}

.main-nav li.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 25px;
}

/* Sub Dropdown Menu - Level 2 */
.dropdown-sub {
    position: relative;
}

.dropdown-sub>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-sub>a::after {
    content: '\f0da';
    /* FontAwesome right caret */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.dropdown-sub-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background-color: var(--secondary-blue);
    /* Lighter blue for hierarchy visibility */
    box-shadow: var(--shadow-md);
    z-index: 1001;
}

.dropdown-sub:hover>.dropdown-sub-content {
    display: block;
}

/* MARQUEE */
.marquee-wrapper {
    background: var(--silver-gray);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

#main-marquee {
    color: var(--accent-red);
    font-weight: 500;
    font-size: 13px;
}

/* MAIN LAYOUT - STABLE GRID SYSTEM */
.main-content {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

.grid-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    /* Traditional 70/30 or 8/4 proportion */
    gap: 30px;
    align-items: start;
}

.left-col {
    min-width: 0;
    /* Webkit fix for grid items */
}

.right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 991px) {
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* CONTENT BOXES - CLEAN CARDS */
.section-box {
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.box-header {
    padding: 18px 25px;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-title {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.box-title::before {
    content: '';
    width: 6px;
    height: 22px;
    background: linear-gradient(to bottom, var(--accent-red), #8b0000);
    border-radius: 0;
}

.box-body {
    padding: 30px;
}

/* NEWS LIST - CLEAN EDITORIAL */
.news-list-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    /* Remove side padding for exact alignment */
    border-bottom: 1px dotted #d1d5db;
    /* Dotted, elegant separator */
    transition: all 0.3s ease;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item:hover {
    background: transparent;
    /* Remove heavy hover background block */
}

.news-thumb {
    width: 220px;
    height: 140px;
    border-radius: 4px;
    /* Slight rounding for thumbnail, editorial feel */
    object-fit: cover;
    background: var(--silver-gray);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 19px;
    font-weight: 700;
    color: #111827;
    /* Editorial dark navy */
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.news-list-item:hover .news-title {
    color: var(--primary-blue);
    /* Only title changes color on hover */
}

.news-meta {
    font-size: 13px;
    color: #6b7280;
    /* Muted gray */
    font-style: italic;
    /* Editorial italic */
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.news-meta i {
    color: #9ca3af;
    font-style: normal;
    /* Fix icon inheritance */
}

.news-summary {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

/* SIDEBAR LINKS */
.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 0;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-link::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 12px;
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

.sidebar-link:hover {
    background: var(--silver-gray);
    color: var(--primary-blue);
    transform: translateX(8px);
    border-color: var(--border-light);
}

.sidebar-link:hover::before {
    transform: translateX(3px);
}

/* FOOTER - PROFESSIONAL */
footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin-bottom: 12px;
}

.footer-info strong {
    color: #fff;
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
}

/* FEATURED NEWS STYLING (Redesigned - Hero Layout) */
.news-featured {
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    /* Softer rounded corners */
    padding: 0;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.news-thumb-link-featured {
    position: relative;
    display: block;
    width: 60%;
    /* Image takes 60% */
    min-height: 320px;
    overflow: hidden;
}

.news-thumb-featured {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-thumb-featured:hover {
    transform: scale(1.03);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #be0000 0%, #ff0000 100%);
    /* Gradient badge */
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 0;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.news-info-featured {
    width: 40%;
    /* Content takes 40% */
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #f0f0f0;
}

.news-title-featured {
    font-size: 24px;
    /* Larger title */
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: none;
    /* Normal case looks more modern */
    line-height: 1.3;
    color: #1f2937;
}

.news-title-featured a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* Limit title lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title-featured a:hover {
    color: var(--primary-red);
}

.news-meta {
    margin-bottom: 15px;
}

.news-summary-featured {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0;
    /* Reset */
    margin-bottom: 20px;
}

/* Featured Read More Button (New) */
.btn-read-more {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 13px;
    border-radius: 0;
    text-align: center;
    width: fit-content;
    transition: all 0.2s;
}

.btn-read-more:hover {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .news-featured {
        flex-direction: column;
    }

    .news-thumb-link-featured {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        min-height: auto;
    }

    .news-info-featured {
        width: 100%;
        padding: 15px;
    }

    .news-title-featured {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .news-summary-featured {
        font-size: 14px;
        margin-bottom: 12px;
        -webkit-line-clamp: 3;
    }
}

/* Feature Grid (for Organizations) */
.org-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.org-item {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background: #f9f9f9;
    transition: all 0.2s;
}

.org-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.org-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.org-title {
    font-weight: bold;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 5px;
}

.org-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: var(--primary-red);
    color: white;
    font-size: 11px;
    border-radius: 0;
}

.org-btn:hover {
    background: #a00;
    color: white;
    text-decoration: none;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
    .wrapper {
        max-width: 100%;
    }

    .top-banner {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .utility-bar {
        display: none;
    }

    .top-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px 15px;
    }

    .banner-content {
        flex-direction: column;
        gap: 8px;
    }

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

    .org-name-1 {
        font-size: 11px;
    }

    .org-name-2 {
        font-size: 15px;
        padding: 0 10px;
    }

    /* UN-STICKY NAV ON MOBILE */
    .main-nav {
        position: static;
    }

    .main-nav ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .main-nav ul::-webkit-scrollbar {
        display: none;
    }

    .main-nav li {
        width: auto;
        flex: 0 0 auto;
        border-right: none;
    }

    .main-nav .nav-item {
        border-bottom: 3px solid transparent;
        justify-content: center;
        padding: 10px 14px;
        white-space: nowrap;
        font-size: 12px;
    }

    /* COMPACT NEWS LAYOUT ON MOBILE - SIDE BY SIDE */
    .news-list-item {
        flex-direction: row;
        gap: 12px;
        padding: 12px 0;
        align-items: flex-start;
    }

    .news-thumb {
        width: 100px;
        height: 70px;
        flex-shrink: 0;
        border-radius: 4px;
    }

    .news-info {
        gap: 4px;
    }

    .news-title {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .news-summary {
        display: none;
        /* Hide summary on mobile list to save space */
    }

    .news-meta {
        font-size: 11px;
        margin-top: auto;
        gap: 10px;
    }

    .box-body {
        padding: 12px;
    }

    .box-header {
        padding: 12px 15px;
    }

    .box-title {
        font-size: 14px;
    }

    .org-grid {
        grid-template-columns: 1fr;
    }
}

/* BACK TO TOP */
#btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2000;
}

#btn-back-to-top:hover {
    background: var(--secondary-blue);
    transform: translateY(-5px);
}

#btn-back-to-top.show {
    display: flex;
}

.article-detail-title {
    color: #111827;
    /* Dark navy-gray for editorial feel */
    font-size: 32px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.article-meta-bar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #ccc;
    /* Lighter, less intrusive */
    font-size: 14px;
    color: #6b7280;
    /* Muted gray */
    font-style: italic;
    /* Editorial style meta */
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #9ca3af;
    font-size: 13px;
    font-style: normal;
    /* Override italic for icons */
}

.share-toolbar {
    margin-bottom: 35px;
    display: flex;
    gap: 10px;
}

/* OUTLINE BUTTONS */
.btn-share {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-facebook {
    color: #1877f2;
    border: 1px solid #1877f2;
}

.btn-facebook:hover {
    background: #1877f2;
    color: #fff;
}

.btn-zalo {
    color: #0068ff;
    border: 1px solid #0068ff;
}

.btn-zalo:hover {
    background: #0068ff;
    color: #fff;
}

.btn-copy {
    color: #4b5563;
    border: 1px solid #9ca3af;
}

.btn-copy:hover {
    background: #f3f4f6;
    color: #111827;
}

/* ARTICLE DETAIL - ADMINISTRATIVE STANDARD */
.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    text-align: justify;
}

.article-content h2 {
    color: var(--primary-blue);
    font-size: 22px;
    margin: 40px 0 20px;
    border-left: 4px solid var(--accent-red);
    padding-left: 15px;
    font-weight: 800;
}

.article-content p {
    margin-bottom: 22px;
}

.article-content img {
    border-radius: 0;
    margin: 30px 0;
}

/* Adjust for very long main titles on small screens */
@media (max-width: 480px) {
    .org-name-2 {
        font-size: 13px;
        line-height: 1.35;
        padding: 0 5px;
        letter-spacing: -0.2px;
    }
}