/* =========================================================
   01. CSS VARIABLES
========================================================= */

:root {
    --primary-color: #0d1b2a;
    --primary-light: #1b263b;

    --accent-color: #ad0c0c;
    --accent-dark: #b51f1f;

    --text-color: #0f0e0e;
    --text-light: #2a2b2e;
    --text-muted: #4e5053;

    --white: #ffffff;
    --black: #000000;

    --background-color: #ffffff;
    --light-background: #f7f8fa;
    --border-color: #e5e7eb;

    --container-width: 1200px;

    --transition: all 0.3s ease;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);

    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 16px;
}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   03. COMMON / UTILITY
========================================================= */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-heading {
    margin-bottom: 35px;
}

.section-label {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--accent-color);
}

.section-heading h1,
.section-heading h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary-color);
    line-height: 1.2;
}

.section-heading h1 {
    font-size: clamp(36px, 5vw, 58px);
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 42px);
}

.section-heading p {
    max-width: 650px;

    margin-top: 12px;

    color: var(--text-light);
    font-size: 16px;
}


/* =========================================================
   04. TOP INFORMATION BAR
========================================================= */

.top-bar {
    width: 100%;

    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;
}

.top-bar-container {
    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--accent-color);
}

.top-bar-right {
    gap: 22px;
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.8);

    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
    background-color: var(--accent-color);

    transform: translateY(-2px);
}


/* =========================================================
   05. MAIN HEADER
========================================================= */

.main-header {
    width: 100%;

    background-color: var(--white);

    border-bottom: 1px solid var(--border-color);

    position: relative;
    z-index: 1000;
}

.header-container {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   06. LOGO
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-title {
    font-family: "Playfair Display", serif;

    font-size: 27px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.logo-subtitle {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-color);
}


/* =========================================================
   07. HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-action-btn {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f1f3f5;
    color: var(--primary-color);
    font-size: 17px;
    transition: var(--transition);
}

.header-action-btn:hover {
    color: var(--white);
    background-color: var(--accent-color);

}

.menu-btn {
    display: none;
}


/* =========================================================
   08. SEARCH OVERLAY
========================================================= */

.search-overlay {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 150px;

    background-color: rgba(13, 27, 42, 0.97);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 2000;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: relative;

    max-width: 800px;
}

.search-close {
    position: absolute;

    top: -65px;
    right: 20px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: transparent;
    color: var(--white);

    font-size: 22px;

    transition: var(--transition);
}

.search-close:hover {
    background-color: var(--accent-color);
}

.search-box {
    width: 100%;

    display: flex;
    align-items: center;

    background-color: var(--white);

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: var(--shadow-md);
}

.search-box input {
    flex: 1;

    min-width: 0;

    height: 65px;

    padding: 0 22px;

    border: none;
    outline: none;

    background-color: transparent;

    color: var(--text-color);

    font-size: 18px;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box button {
    width: 70px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent-color);
    color: var(--white);

    font-size: 18px;

    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--accent-dark);
}


/* =========================================================
   09. MAIN NAVIGATION
========================================================= */

.main-nav {
     position: sticky;
    top: 0;
    width: 100%;

    background-color: var(--white);

    border-bottom: 1px solid var(--border-color);

    /* position: relative; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.nav-container {
    min-height: 56px;

    display: flex;
    align-items: center;
}

.nav-menu {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    display: block;

    padding: 17px 14px;

    color: var(--text-color);

    font-size: 16px;
    font-weight: 600;

    transition: var(--transition);
}

.nav-item a::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 0;

    height: 2px;

    background-color: var(--accent-color);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

.nav-item:hover a,
.nav-item.active a {
    color: var(--accent-color);
}

.nav-item:hover a::after,
.nav-item.active a::after {
    transform: scaleX(1);
}


/* =========================================================
   10. BREAKING NEWS
========================================================= */

.breaking-news {
    width: 100%;

    background-color: var(--light-background);

    border-bottom: 1px solid var(--border-color);
}

.breaking-news-container {
    min-height: 52px;

    display: flex;
    align-items: center;

    gap: 20px;
}

.breaking-label {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    gap: 9px;

    padding-right: 20px;

    border-right: 1px solid var(--border-color);

    color: var(--accent-color);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.breaking-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background-color: var(--accent-color);

    box-shadow: 0 0 0 5px rgba(214, 40, 40, 0.12);

    animation: breakingPulse 1.5s infinite;
}

@keyframes breakingPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 28, 28, 0.61);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(214, 40, 40, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(214, 40, 40, 0);
    }
}

.breaking-content {
    flex: 1;

    min-width: 0;

    overflow: hidden;
}

.breaking-track {
    display: flex;
    align-items: center;

    white-space: nowrap;

    transition: transform 0.4s ease;
}

.breaking-track a {
    flex-shrink: 0;

    width: 100%;

    overflow: hidden;

    text-overflow: ellipsis;

    color: var(--text-color);

    font-size: 14px;
    font-weight: 500;
}

.breaking-track a:hover {
    color: var(--accent-color);
}

.breaking-controls {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    gap: 5px;
}

.breaking-controls button {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);
    border-radius: 50%;

    background-color: var(--white);
    color: var(--text-color);

    font-size: 11px;

    transition: var(--transition);
}

.breaking-controls button:hover {
    border-color: var(--accent-color);

    background-color: var(--accent-color);
    color: var(--white);
}


/* =========================================================
   11. HERO SECTION
========================================================= */

.hero-section {
    padding: 60px 0 70px;
    background-color: var(--light-bg);
}


.hero-section .section-heading {
    max-width: 800px;

      margin: 0 auto 40px;
    text-align: center;
}

.hero-section .section-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.hero-section .section-heading h1 {
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
}

.hero-section .section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}
/* =========================================================
   FEATURED NEWS
========================================================= */

.featured-news {
    display: grid;
    grid-template-columns: 1.35fr 1fr;

    min-height: 480px;

    overflow: hidden;

    background-color: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.featured-image {
    position: relative;

    min-height: 480px;

    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.featured-news:hover .featured-image img {
    transform: scale(1.03);
}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 50px;
}


/* =========================================================
   FEATURED CATEGORY
========================================================= */

.featured-category {
    display: inline-block;

    width: fit-content;

    margin-bottom: 18px;

    padding: 7px 13px;

    border-radius: 4px;

    background-color: var(--accent-color);

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* =========================================================
   FEATURED TITLE
========================================================= */

.featured-title {
    margin: 0 0 18px;

    font-family: "Playfair Display", serif;

    font-size: 40px;
    font-weight: 700;

    line-height: 1.2;

    color: var(--heading-color);
}


/* =========================================================
   FEATURED DESCRIPTION
========================================================= */

.featured-description {
    margin: 0 0 22px;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   FEATURED META
========================================================= */

.featured-meta {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-bottom: 28px;

    font-size: 13px;

    color: var(--text-light);
}

.featured-meta span {
    display: inline-flex;
    align-items: center;

    gap: 7px;
}

.featured-meta i {
    color: var(--accent-color);
}


/* =========================================================
   FEATURED READ MORE BUTTON
========================================================= */

.featured-read-more {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: fit-content !important;

    padding: 12px 20px !important;

    margin: 0 !important;

    gap: 9px !important;

    background-color: #1f2937 !important;

    color: #ffffff !important;

    border: 0 !important;
    border-radius: 5px !important;

    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 600 !important;

    line-height: 1.4 !important;

    text-decoration: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    position: relative !important;
    z-index: 10 !important;

    cursor: pointer !important;

    transition:
        background-color 0.3s ease,
        color 0.3s ease !important;
}

.featured-read-more:hover {
    background-color: var(--accent-color) !important;
    color: #ffffff !important;
}

.featured-read-more i {
    display: inline-block !important;
    color: #ffffff !important;
    font-size: 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.3s ease !important;
}

.featured-read-more:hover i {
    color: #ffffff !important;
    transform: translateX(4px);
}


/* =========================================================
   HOMEPAGE - LATEST NEWS SECTION
========================================================= */

.latest-news-section {
    padding: 75px 0;

    background-color: var(--white);
}


/* =========================================================
   LATEST NEWS GRID
========================================================= */

.latest-news-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================================
   LATEST NEWS CARD
========================================================= */

.latest-news-card {
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.latest-news-card:hover {
    box-shadow: var(--shadow-md);
}


/* =========================================================
   LATEST NEWS IMAGE
========================================================= */

.latest-news-image {
    width: 100%;
    height: 230px;

    overflow: hidden;
}

.latest-news-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.latest-news-card:hover .latest-news-image img {
    transform: scale(1.03);
}


/* =========================================================
   LATEST NEWS CONTENT
========================================================= */

.latest-news-content {
    padding: 22px;
}


/* =========================================================
   LATEST NEWS CATEGORY
========================================================= */

.latest-news-category {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--accent-color);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}
/* =========================================================
   LATEST NEWS TITLE
========================================================= */

.latest-news-title {
    margin: 0 0 12px;

    font-family: "Playfair Display", serif;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.35;
}

.latest-news-title a {
    color: var(--heading-color);

    text-decoration: none;

    transition: var(--transition);
}

.latest-news-title a:hover {
    color: var(--accent-color);
}


/* =========================================================
   LATEST NEWS DESCRIPTION
========================================================= */

.latest-news-description {
    margin: 0 0 18px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   LATEST NEWS META
========================================================= */

.latest-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-top: 15px;

    border-top: 1px solid var(--border-color);

    font-size: 12px;

    color: var(--text-light);
}

.latest-news-meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.latest-news-meta i {
    color: var(--accent-color);
}


/* =========================================================
   LATEST NEWS READ MORE
========================================================= */

.latest-read-more {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--heading-color);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: var(--transition);
}

.latest-read-more:hover {
    color: var(--accent-color);
}

.latest-read-more i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.latest-read-more:hover i {
    transform: translateX(3px);
}






/* =========================================================
   13. FOOTER
========================================================= */

.site-footer {
    background-color: var(--primary-color);

    color: rgba(255, 255, 255, 0.75);

    margin-top: 0;
}

.footer-content {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    padding: 70px 0 50px;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 18px;

    font-family: "Playfair Display", serif;

    font-size: 26px;
    font-weight: 700;

    letter-spacing: 1px;

    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 1.8;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 16px;
    font-weight: 700;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);

    padding-left: 4px;
}

.footer-social .social-links {
    gap: 10px;
}

.footer-social .social-links a {
    width: 38px;
    height: 38px;

    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social .social-links a:hover {
    border-color: var(--accent-color);
}

.footer-bottom {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.5);

    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}









/* =========================================================
   NEWSLETTER SECTION
========================================================= */

.newsletter-section {
    padding: 75px 0;
    background-color: #f7f8fa;
}


/* =========================================================
   NEWSLETTER BOX
========================================================= */

.newsletter-box {
    position: relative;

    display: grid;
    grid-template-columns: 1.1fr 1fr;

    align-items: center;

    gap: 60px;

    padding: 55px 60px;

    overflow: hidden;

    border-radius: 18px;

    background-color: #172033;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}


/* Decorative circles */

.newsletter-box::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -90px;
    top: -120px;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.04);

    pointer-events: none;
}


.newsletter-box::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -80px;
    bottom: -100px;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.03);

    pointer-events: none;
}


/* =========================================================
   NEWSLETTER CONTENT
========================================================= */

.newsletter-content {
    position: relative;

    z-index: 2;
}


.newsletter-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #d11111;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.newsletter-content h2 {
    margin: 0 0 17px;

    font-family: "Playfair Display", serif;

    color: #ffffff !important;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;
}


.newsletter-content p {
    max-width: 560px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72) !important;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   NEWSLETTER FORM
========================================================= */

.newsletter-form-wrapper {
    position: relative;

    z-index: 2;
}


.newsletter-form {
    display: flex;

    align-items: stretch;

    gap: 10px;
}


/* =========================================================
   EMAIL INPUT
========================================================= */

.newsletter-input-wrapper {
    position: relative;

    flex: 1;

    display: flex;

    align-items: center;
}


.newsletter-input-wrapper i {
    position: absolute;

    left: 17px;

    color: #9aa4b2;

    font-size: 15px;

    pointer-events: none;

    z-index: 2;
}


.newsletter-input-wrapper input {
    width: 100%;

    height: 50px;

    padding: 0 16px 0 45px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 5px;

    outline: none;

    background-color: rgba(255, 255, 255, 0.08);

    color: #ffffff !important;

    font-family: inherit;

    font-size: 14px;

    box-sizing: border-box;

    transition: 0.3s ease;
}


.newsletter-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}


.newsletter-input-wrapper input:focus {
    border-color: #d11111;

    background-color: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   SUBSCRIBE BUTTON
========================================================= */

.newsletter-submit {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 130px;

    height: 50px;

    padding: 0 20px;

    border: none;

    border-radius: 5px;

    background-color: #c81010;

    color: #ffffff !important;

    font-family: inherit;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}


.newsletter-submit:hover {
    background-color: #ffffff;

    color: #172033 !important;
}


.newsletter-submit i {
    color: inherit;

    font-size: 12px;

    transition: transform 0.3s ease;
}


.newsletter-submit:hover i {
    transform: translateX(4px);
}


/* =========================================================
   NEWSLETTER NOTE
========================================================= */

.newsletter-note {
    display: flex;

    align-items: center;

    gap: 7px;

    margin: 12px 0 0;

    color: rgba(255, 255, 255, 0.55) !important;

    font-size: 12px;
}


.newsletter-note i {
    color: #63c174 !important;
    font-size: 11px;
}








/* =========================================================
   NEWSLETTER MESSAGE
========================================================= */

.newsletter-message {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.newsletter-message.success {
    padding: 10px 14px;
    border-radius: 6px;
    background: #eaf7ee;
    color: #247a43;
}


/* =========================================================
   ERROR MESSAGE
========================================================= */

.newsletter-message.error {
    padding: 10px 14px;
    border-radius: 6px;
    background: #fff0f0;
    color: #c0392b;
}

















@media (max-width: 991px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .top-bar-text {
        display: none;
    }

    .header-container {
        min-height: 90px;
    }

    .logo img {
        width: 55px;
        height: 55px;
    }

    .logo-title {
        font-size: 24px;
    }

    .nav-item a {
        padding-left: 10px;
        padding-right: 10px;

        font-size: 13px;
    }

    .nav-item a::after {
        left: 10px;
        right: 10px;
    }



    .breaking-news-container {
        gap: 14px;
    }

    .breaking-label {
        padding-right: 14px;
    }


    /* Hero */

    .hero-section {
        padding: 50px 0 60px;
    }

    .hero-section .section-heading h1 {
        font-size: 40px;
    }


    /* Featured News */

    .featured-news {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 400px;
    }

    .featured-content {
        padding: 40px;
    }

    .featured-title {
        font-size: 36px;
    }


    /* Latest News */

    .latest-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 35px;
    }





    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-box {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px;
    }

    .newsletter-content h2 {
        font-size: 34px;
    }

    .newsletter-content p {
        max-width: 650px;
    }
}


/* =========================================================
   15. TABLET
   768px
========================================================= */

@media (max-width: 768px) {

    .top-bar-container {
        min-height: 36px;
    }

    .top-bar-left {
        font-size: 12px;
    }

    .top-bar-right {
        margin-left: auto;
    }

    .top-bar .social-links {
        gap: 4px;
    }

    .top-bar .social-links a {
        width: 25px;
        height: 25px;

        font-size: 11px;
    }


    /* Header */

    .header-container {
        min-height: 78px;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        width: 48px;
        height: 48px;
    }

    .logo-title {
        font-size: 21px;
    }

    .logo-subtitle {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .header-action-btn {
        width: 40px;
        height: 40px;
    }

    .menu-btn {
        display: inline-flex;
    }


    .main-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    /* Navigation */

      .main-nav {
        position: fixed;

        top: 0;
        left: 0;

        width: 100%;
        height: 100vh;

        background-color: var(--white);

        transform: translateX(100%);
        transition: transform 0.35s ease;

        overflow-y: auto;

        z-index: 1500;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-container {
        min-height: auto;

        padding-top: 25px;
        padding-bottom: 30px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .nav-item {
        width: 100%;

        border-bottom: 1px solid var(--border-color);
    }

    .nav-item a {
        padding: 16px 5px;

        font-size: 15px;
    }

    .nav-item a::after {
        display: none;
    }

    .nav-item.active a {
        color: var(--accent-color);
    }


    /* Breaking News */

    .breaking-news-container {
        min-height: 50px;

        gap: 10px;
    }

    .breaking-label {
        padding-right: 10px;

        font-size: 10px;
    }

    .breaking-content {
        min-width: 0;
    }

    .breaking-track a {
        font-size: 12px;
    }

    .breaking-controls {
        display: none;
    }


    /* Hero */

    .hero-section {
        padding: 40px 0 50px;
    }

    .hero-section .section-heading {
        margin-bottom: 30px;
    }

    .hero-section .section-heading h1 {
        font-size: 34px;
    }

    .hero-section .section-heading p {
        font-size: 15px;
    }


    /* Featured News */

    .featured-image {
        min-height: 340px;
    }

    .featured-content {
        padding: 32px;
    }

    .featured-title {
        font-size: 32px;
    }

    .featured-description {
        font-size: 14px;
    }


    /* Latest News */

    .latest-news-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 25px;
    }


    /* Footer */

    .footer-content {
        grid-template-columns: 1fr 1fr;

        gap: 40px;

        padding: 55px 0 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 600px;
    }

    .footer-bottom {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        padding: 20px 0;
    }




 .newsletter-section {
        padding: 50px 0;
    }

    .newsletter-box {
        gap: 30px;

        padding: 40px 32px;
    }

    .newsletter-content h2 {
        font-size: 31px;
    }


}


/* =========================================================
   16. SMALL TABLET
   630px
========================================================= */

@media (max-width: 630px) {

    .top-bar-left span span {
        display: none;
    }

    .top-bar-left span::after {
        content: "Today";

        color: rgba(255, 255, 255, 0.8);
    }

    .top-bar-container {
        justify-content: space-between;
    }

    .header-actions {
        gap: 3px;
    }

    .search-overlay {
        padding-top: 120px;
    }

    .search-box input {
        height: 58px;

        padding-left: 16px;

        font-size: 16px;
    }

    .search-box button {
        width: 58px;
        height: 58px;
    }

    .search-close {
        top: -55px;
        right: 10px;
    }


    /* Breaking News */

    .breaking-news-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .breaking-label span:last-child {
        display: none;
    }

    .breaking-label {
        border-right: none;

        padding-right: 4px;
    }

    .breaking-track a {
        font-size: 11px;
    }


    /* Footer */

    .footer-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-social {
        margin-top: 0;
    }

    .footer-bottom-links {
        flex-wrap: wrap;

        gap: 10px 18px;
    }
}


/* =========================================================
   17. MOBILE
   576px
========================================================= */

@media (max-width: 576px) {

    body {
        font-size: 14px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* Top Bar */

    .top-bar {
        font-size: 11px;
    }

    .top-bar-container {
        min-height: 34px;
    }

    .top-bar .social-links a {
        width: 23px;
        height: 23px;
    }


    /* Header */

    .header-container {
        min-height: 70px;
    }

    .logo img {
        width: 43px;
        height: 43px;
    }

    .logo-title {
        font-size: 19px;
    }

    .logo-subtitle {
        margin-top: 3px;

        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .header-action-btn {
        width: 38px;
        height: 38px;

        font-size: 15px;
    }


    /* Mobile Navigation */

    /* .main-nav {
        top: 71px;
        height: calc(100vh - 71px);
    } */


    /* Breaking News */

    .breaking-news-container {
        min-height: 45px;
    }

    .breaking-dot {
        width: 6px;
        height: 6px;
    }


    /* Hero */

    .hero-section {
        padding: 35px 0 45px;
    }

    .hero-section .section-heading {
        margin-bottom: 25px;
    }

    .hero-section .section-heading h1 {
        font-size: 28px;
    }

    .hero-section .section-heading p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* Featured News */

    .featured-image {
        min-height: 250px;
    }

    .featured-content {
        padding: 25px 20px;
    }

    .featured-category {
        margin-bottom: 14px;

        padding: 6px 10px;

        font-size: 10px;
    }

    .featured-title {
        margin-bottom: 14px;

        font-size: 27px;
    }

    .featured-description {
        margin-bottom: 18px;

        font-size: 14px;
    }

    .featured-meta {
        flex-direction: column;
        align-items: flex-start;

        gap: 8px;

        margin-bottom: 22px;
    }

    .featured-read-more {
        padding: 11px 17px;

        font-size: 13px;
    }


    /* Latest News */

    .latest-news-section {
        padding: 50px 0;
    }

    .latest-news-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .latest-news-image {
        height: 220px;
    }



    /* Search */

    .search-overlay {
        padding-top: 100px;
    }

    .search-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .search-box input {
        height: 55px;

        font-size: 15px;
    }

    .search-box button {
        width: 55px;
        height: 55px;
    }


    /* Footer */

    .footer-content {
        padding: 45px 0 30px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 11px;
    }




     .newsletter-section {
        padding: 45px 0;
    }

    .newsletter-box {
        gap: 25px;

        padding: 32px 22px;

        border-radius: 14px;
    }

    .newsletter-content h2 {
        font-size: 27px;
    }

    .newsletter-content p {
        font-size: 14px;

        line-height: 1.65;
    }

    .newsletter-form {
        flex-direction: column;

        gap: 10px;
    }

    .newsletter-input-wrapper input {
        height: 48px;
    }

    .newsletter-submit {
        width: 100%;

        height: 48px;
    }
}




@media (max-width: 400px) {

    .logo {
        gap: 7px;
    }

    .logo img {
        width: 38px;
        height: 38px;
    }

    .logo-title {
        font-size: 17px;
    }

    .logo-subtitle {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .header-action-btn {
        width: 35px;
        height: 35px;
    }

    .section-heading h1 {
        font-size: 30px;
    }

    .section-heading h2 {
        font-size: 26px;
    }
}




