/* =========================================
   CSS Variables & Theme Definitions
   ========================================= */
:root {
    /* Light Theme (Default) */
    --bg-main: #F8FAFC;         /* Soft Gray */
    --bg-card: #FFFFFF;         /* Pure White */
    --text-main: #1E293B;       /* Dark Slate */
    --text-muted: #64748B;
    --primary: #3DA5D9;         /* Ocean/Sea Blue */
    --primary-hover: #2B89B8;
    --secondary: #F4C542;       /* Golden Yellow */
    --secondary-hover: #DCA92A;
    --border-color: #E2E8F0;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --border-radius: 12px;
    
    /* Layout Variables */
    --topbar-bg: #2B89B8;
    --topbar-text: #FFFFFF;
    --header-bg: #FFFFFF;
    --nav-bg: #1E293B;
    --nav-text: #FFFFFF;
    --footer-bg: #0F172A;
    --footer-text: #F8FAFC;
    
    /* Accessibility */
    --font-scale: 1;
}

[data-theme="dark"] {
    /* Dark Theme */
    --bg-main: #0F172A;         /* Deep Navy / Slate */
    --bg-card: #1E293B;         /* Card Slate */
    --text-main: #F8FAFC;       /* Off White */
    --text-muted: #94A3B8;
    --border-color: #334155;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
    
    --header-bg: #1E293B;
    --topbar-bg: #0B1120;
    --nav-bg: #0B1120;
}

/* =========================================
   Global Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: calc(16px * var(--font-scale));
}

body {
    font-family: 'Product Sans', 'Google Sans', 'Open Sans', 'Noto Sans Thai', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 4rem 0;
}

.bg-light {
    background-color: rgba(61, 165, 217, 0.03);
}

[data-theme="dark"] .bg-light {
    background-color: rgba(255, 255, 255, 0.02);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* =========================================
   Buttons
   ========================================= */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s;
}
.btn-primary:hover { background-color: var(--primary-hover); color: #fff; }

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary);
    color: #1E293B;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}
.btn-secondary:hover { background-color: var(--secondary-hover); }

.btn-outline {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 500;
}
.btn-outline:hover { background-color: var(--primary); color: #fff; }

/* =========================================
   Topbar (Accessibility)
   ========================================= */
.topbar {
    background-color: var(--topbar-bg);
    color: var(--topbar-text);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accessibility-tools button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    margin-right: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.accessibility-tools button:hover {
    background: var(--secondary);
    color: #1E293B;
}

.topbar-links a {
    color: white;
    margin-left: 1rem;
    font-weight: 500;
}

.topbar-links a:hover {
    color: var(--secondary);
}

/* =========================================
   Header
   ========================================= */
#navbar {
    background-color: var(--header-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
}

.brand i {
    font-size: 2.5rem;
}

.brand-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.header-search {
    display: none;
    align-items: center;
    background: var(--bg-main);
    border-radius: 50px;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border-color);
}

.header-search input {
    border: none;
    background: transparent;
    padding: 0.5rem 1rem;
    outline: none;
    color: var(--text-main);
    width: 250px;
    font-family: inherit;
}

.header-search button {
    background: var(--primary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.header-search button:hover {
    background: var(--primary-hover);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

@media (min-width: 992px) {
    .header-search { display: flex; }
    .mobile-menu-btn { display: none; }
}

/* =========================================
   Main Navigation
   ========================================= */
.main-nav {
    background-color: var(--nav-bg);
    display: none; /* hidden on mobile by default */
}

/* Added active class logic for mobile menu */
.main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.main-nav .nav-links {
    display: flex;
    gap: 0;
}

.main-nav a {
    color: var(--nav-text);
    padding: 1rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    border-bottom: 3px solid transparent;
}

/* Mobile styles for nav links */
@media (max-width: 991px) {
    .main-nav .nav-links {
        flex-direction: column;
    }
    .main-nav a {
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .main-nav a:last-child {
        border-bottom: none;
    }
}

.main-nav a:hover, .main-nav a.active {
    background-color: rgba(255,255,255,0.1);
    border-bottom: 3px solid var(--secondary);
    color: var(--secondary);
}

@media (min-width: 992px) {
    .main-nav { display: block; position: static; }
    .main-nav.active { box-shadow: none; }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../assets/photo/spk-place-001.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    color: #fff;
}

.hero-content p {
    font-size: 1.25rem;
    color: #e2e8f0;
}

/* =========================================
   E-Services (Overlapping Cards)
   ========================================= */
.services-overlap {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 3rem;
}

.grid-4, .grid-3 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card {
    text-align: center;
    border-top: 4px solid var(--primary);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(61, 165, 217, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: background-color 0.3s, color 0.3s;
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary);
    color: #fff;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   Live Dashboard (Metrics)
   ========================================= */
.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-card.warning .stat-icon {
    color: var(--secondary);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* =========================================
   News & Activities Cards
   ========================================= */
.news-card, .activity-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.news-card:hover, .activity-card:hover {
    transform: translateY(-5px);
}

.news-img, .activity-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color); /* Fallback */
}

/* Individual card background overrides inline or via classes if needed, 
   using bg-placeholder as a default fallback styling */
.bg-placeholder {
    background: linear-gradient(135deg, var(--border-color), rgba(61, 165, 217, 0.2));
}

.news-content, .activity-content {
    padding: 1.5rem;
}

.news-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(61, 165, 217, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.news-title, .activity-title {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more i {
    margin-left: 0.25rem;
    transition: transform 0.2s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* =========================================
   Tourism Banner
   ========================================= */
.tourism-banner {
    position: relative;
    background: url('../assets/photo/spk-place-002.png') center/cover no-repeat;
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.tourism-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 41, 59, 0.7);
}

.tourism-content {
    position: relative;
    z-index: 1;
}

.tourism-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.tourism-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   Channels Grid
   ========================================= */
.channels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .channels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .channels-grid { grid-template-columns: repeat(4, 1fr); }
}

.channel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s;
}

.channel-btn i {
    font-size: 1.5rem;
    color: var(--primary);
}

.channel-btn:hover {
    border-color: var(--primary);
    background: rgba(61, 165, 217, 0.05);
    color: var(--primary);
    transform: translateY(-2px);
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-brand .brand {
    color: #fff;
}

.footer-brand .address {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 350px;
}

.footer-contact .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-links h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.3);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   Floating Contact Buttons
   ========================================= */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.messenger-btn {
    background: linear-gradient(45deg, #00B2FF, #006AFF);
}

.line-btn {
    background-color: #00C300;
}

/* =========================================
   Section Backgrounds
   ========================================= */
.dashboard, .news, .activities, .procurement, .other-channels {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.dashboard::before, .news::before, .activities::before, .procurement::before, .other-channels::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 250, 252, 0.88); /* Light overlay */
    z-index: -1;
    transition: background 0.3s ease;
}

[data-theme="dark"] .dashboard::before, 
[data-theme="dark"] .news::before, 
[data-theme="dark"] .activities::before, 
[data-theme="dark"] .procurement::before, 
[data-theme="dark"] .other-channels::before {
    background: rgba(15, 23, 42, 0.88); /* Dark overlay */
}

/* Assign images to each section */
.dashboard { background-image: url('../assets/photo/spk-place-003.jpg'); }
.news { background-image: url('../assets/photo/2be49adb-7e8a-462e-abcd-e8089678704e.jpg'); }
.activities { background-image: url('../assets/photo/98a1ecfc-9d99-413d-b7d9-52143a92c49a.jpg'); }
.procurement { background-image: url('../assets/photo/e8853160-612f-4cfa-9c19-fa34b1d6dc75.jpg'); }
.other-channels { background-image: url('../assets/photo/b3056d85-5fb3-4486-964a-aa057ae6d777.jpg'); }

/* =========================================
   Service Specific Navigation (for e.g., News, E-Tax, E-Petition)
   ========================================= */
.top-nav-service {
    background-color: var(--primary);
    color: #fff;
    padding: 0.8rem 0;
}

.top-nav-service .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.menu-icon {
    font-size: 1.5rem;
}

.service-menu-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icon {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.nav-icon:hover {
    color: var(--secondary);
}

/* Sidebar for Service Pages */
.service-sidebar {
    position: fixed;
    top: 0;
    left: -280px; /* Hidden by default */
    width: 280px;
    height: 100%;
    background-color: var(--bg-card);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1100;
    transition: left 0.3s ease-in-out;
    padding-top: 2rem;
}

.service-sidebar.open {
    left: 0;
}

.service-sidebar .sidebar-header {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.service-sidebar .close-btn {
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
}

.service-sidebar .sidebar-menu {
    list-style: none;
    padding: 0 1.5rem;
}

.service-sidebar .sidebar-menu li {
    margin-bottom: 0.5rem;
}

.service-sidebar .sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-main);
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}

.service-sidebar .sidebar-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.service-sidebar .sidebar-menu a i {
    font-size: 1.2rem;
    color: var(--primary);
}

/* Main Content for Service Pages (to push content when sidebar opens) */
.service-main-content {
    transition: margin-left 0.3s ease-in-out;
}

/* News Detail Specific Styles */
.news-hero-detail {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.news-hero-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-hero-info {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.news-hero-info .news-category, .news-hero-info .news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-hero-info .news-category::before {
    margin-right: 0.5rem;
    color: white;
}

.news-hero-info .news-date::before {
    margin-right: 0.5rem;
    color: white;
}

.news-detail-content {
    padding-bottom: 3rem;
}

.news-detail-title {
    font-family: 'Public Sans', sans-serif;
    font-size: 48px; /* display-lg */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--on-surface);
}

.news-detail-body {
    font-family: 'Noto Sans Thai', sans-serif;
    font-size: 18px; /* body-lg */
    font-weight: 400;
    line-height: 1.6;
    color: var(--on-surface);
}

.news-highlights h3 {
    font-family: 'Public Sans', sans-serif;
    font-size: 32px; /* headline-md */
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

.highlight-card ul {
    padding-left: 1.5rem; /* Add padding for bullet points */
    list-style: disc; /* Use disc for bullet points */
}

.highlight-card ul li {
    display: list-item; /* Ensure it behaves as a list item */
    gap: 0; /* Remove gap if set by previous rule */
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.news-cta i {
    /* Removed icon from HTML, so remove associated CSS if any */
    display: none;
}

.news-cta ul {
    padding-left: 1.5rem; /* Add padding for bullet points */
    list-style: disc; /* Use disc for bullet points */
}

.news-cta ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--on-surface-variant);
    font-size: 16px;
}

.news-cta ul li::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f00c"; /* fa-check-circle */
    color: var(--primary);
    font-size: 1.2rem;
}

.news-cta .cta-buttons .btn-primary, .news-cta .cta-buttons .btn-secondary {
    min-height: 56px; /* Minimum height for buttons */
    padding: 1rem 2rem;
    border-radius: 1rem; /* rounded-lg */
    font-weight: 600;
    font-size: 1.1rem;
}

.news-cta .cta-buttons .btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.news-cta .cta-buttons .btn-secondary:hover {
    background-color: var(--primary); /* Hover state */
    color: var(--on-primary);
}

.news-cta .cta-buttons .btn-primary i, .news-cta .cta-buttons .btn-secondary i {
    margin-right: 0.5rem;
}

/* Related News Section */
.news.section-padding.bg-light {
    background-color: var(--surface); /* Use surface color for light background */
}

.news-section-related .news-card {
    border-radius: 1.5rem; /* rounded-xl */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05); /* Level 1 shadow */
    border: 1px solid var(--surface-container-high);
}

.news-section-related .news-content {
    background-color: var(--surface-container-lowest); /* White surface */
}

.news-section-related .news-title {
    font-family: 'Public Sans', sans-serif; /* title-lg */
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--on-surface);
}

/* Ensure consistent container padding */
.news-detail-content.container, .news.section-padding.bg-light .container {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

@media (max-width: 768px) {
    .news-detail-content .container {
        max-width: 100%;
    }

    .news-cta .cta-buttons .btn-primary, .news-cta .cta-buttons .btn-secondary {
        width: 100%;
    }

    .news-cta ul li {
        justify-content: flex-start;
    }
}