/* ==========================================================================
   OGARANYA BLOG STYLESHEET
   Cohesive premium dark-mode styling with high-fidelity orbital designs.
   ========================================================================== */

:root {
    /* Brand Colors */
    --brand-red: #F43722;
    --brand-red-hover: #D62F1D;
    --brand-purple: #9747FF;

    /* Backgrounds */
    --bg-dark: #0A1128;
    --bg-darker: #0D1840;
    --bg-card: #141F48;
    --bg-light: #F9FAFB;
    --bg-white: #ffffff;

    /* Text Colors */
    --text-white: #ffffff;
    --text-dark: #232323;
    --text-muted: #C7D0E7;
    --text-gray: #4A4A4A;
    --text-link: #9AA6E7;

    /* Blog-specific */
    --blog-bg: #0A1128;
    --blog-bg-alt: #050b1d;
    --blog-card-bg: #141F48;
    --blog-card-border: rgba(255, 255, 255, 0.08);
    --blog-card-hover-border: rgba(244, 55, 34, 0.4);
    --blog-text-main: #ffffff;
    --blog-text-muted: #C7D0E7;
    --blog-text-dark: #232323;

    /* Animation Easing */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Page Setup */
.blog-page-body {
    background-color: var(--blog-bg);
    background-image: radial-gradient(circle at 80% 20%, rgba(151, 71, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 70%, rgba(244, 55, 34, 0.12) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--blog-text-main);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

/* Nav blog active link styling */
.nav-links a.active-blog::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--brand-red);
}

/* ==========================================================================
   FEATURED ARTICLE (HERO)
   ========================================================================== */
.featured-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.featured-content {
    position: relative;
    z-index: 10;
}

.featured-badge {
    background: rgba(244, 55, 34, 0.15);
    border: 1px solid var(--brand-red);
    color: var(--brand-red);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(244, 55, 34, 0.25);
}

.featured-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #DCE3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.featured-desc {
    color: var(--blog-text-muted);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 650px;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--brand-red);
    box-shadow: 0 0 10px rgba(244, 55, 34, 0.3);
    object-fit: cover;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--blog-text-main);
}

.author-info p {
    font-size: 0.75rem;
    color: var(--blog-text-muted);
}

/* ORBITAL GRAPHICS */
.orbital-graphic-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 380px;
}

.orbital-glow-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(244, 55, 34, 0.15) 0%, rgba(151, 71, 255, 0.1) 40%, transparent 70%);
    filter: blur(15px);
    z-index: 1;
}

.phone-mockup-wrapper {
    position: relative;
    z-index: 3;
    width: 200px;
    height: 310px;
    background: #090e24;
    border: 6px solid #1c2759;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    padding: 10px;
    transform: rotate(-5deg);
    transition: var(--transition-smooth);
}

.phone-mockup-wrapper:hover {
    transform: rotate(0deg) scale(1.03);
    border-color: var(--brand-red);
    box-shadow: 0 25px 50px rgba(244, 55, 34, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #111b40 0%, #080f28 100%);
    border-radius: 22px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    color: var(--blog-text-muted);
    opacity: 0.6;
}

.phone-content-art {
    margin: auto 0;
    text-align: center;
}

.phone-content-art i {
    font-size: 40px;
    color: var(--brand-red);
    filter: drop-shadow(0 0 8px rgba(244, 55, 34, 0.6));
    animation: phone-pulse 2s infinite ease-in-out;
}

.phone-content-title {
    font-size: 11px;
    font-weight: 600;
    color: white;
    margin-top: 10px;
}

.phone-content-desc {
    font-size: 8px;
    color: var(--blog-text-muted);
    margin-top: 5px;
}

.phone-bottom-bar {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin: 0 auto;
}

/* Orbit Path Rings */
.orbit-ring {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.orbit-ring-1 {
    width: 340px;
    height: 180px;
    transform: rotateX(70deg) rotateY(-15deg);
    animation: spin-orbit 12s linear infinite;
    border-color: rgba(244, 55, 34, 0.4);
}

.orbit-ring-2 {
    width: 400px;
    height: 220px;
    transform: rotateX(65deg) rotateY(15deg);
    animation: spin-orbit-reverse 20s linear infinite;
    border-color: rgba(151, 71, 255, 0.4);
}

.orbit-ring-3 {
    width: 460px;
    height: 260px;
    transform: rotateX(75deg) rotateZ(45deg);
    animation: spin-orbit 25s linear infinite;
    border-color: rgba(255, 255, 255, 0.15);
}

.orbit-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--brand-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-red);
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.orbit-ring-2 .orbit-node {
    background: var(--brand-purple);
    box-shadow: 0 0 10px var(--brand-purple);
}

/* Animations */
@keyframes spin-orbit {
    0% {
        transform: rotateX(70deg) rotateY(-15deg) rotate(0deg);
    }

    100% {
        transform: rotateX(70deg) rotateY(-15deg) rotate(360deg);
    }
}

@keyframes spin-orbit-reverse {
    0% {
        transform: rotateX(65deg) rotateY(15deg) rotate(360deg);
    }

    100% {
        transform: rotateX(65deg) rotateY(15deg) rotate(0deg);
    }
}

@keyframes phone-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(244, 55, 34, 0.4));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(244, 55, 34, 0.8));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(244, 55, 34, 0.4));
    }
}

/* ==========================================================================
   LATEST STORIES FEED SECTION
   ========================================================================== */
.stories-section {
    padding: 80px 0;
    background-color: var(--blog-bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.section-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 2rem;
}

.stories-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stories-heading p {
    color: var(--blog-text-muted);
    font-size: 0.95rem;
}

/* Filters */
.filter-pills {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: var(--blog-text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--brand-red);
    color: white;
    background: rgba(244, 55, 34, 0.05);
}

.filter-btn.active {
    background: var(--brand-red);
    border-style: solid;
    border-color: var(--brand-red);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 55, 34, 0.35);
}

/* Grid Layout */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    transition: var(--transition-smooth);
}

/* Blog Card */
.blog-card {
    background: var(--blog-card-bg);
    border: 1px solid var(--blog-card-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--blog-card-hover-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(244, 55, 34, 0.08);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #090e24;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover .card-img-wrapper img {
    transform: scale(1.07);
}

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 17, 40, 0.8) 100%);
}

.card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-meta-dot {
    width: 4px;
    height: 4px;
    background-color: rgba(244, 55, 34, 0.4);
    border-radius: 50%;
}

.card-meta-time {
    color: var(--blog-text-muted);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: white;
    transition: var(--transition-smooth);
}

.blog-card:hover .card-title {
    color: var(--brand-red);
}

.card-desc {
    color: var(--blog-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-red);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.card-link i {
    transition: transform 0.3s ease;
}

.blog-card:hover .card-link i {
    transform: translateX(4px);
}

/* Load More Container */
.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

.btn-load-more {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-load-more:hover {
    border-color: var(--brand-red);
    background: rgba(244, 55, 34, 0.05);
    box-shadow: 0 0 20px rgba(244, 55, 34, 0.1);
    transform: translateY(-2px);
}

/* Active Filtering Transitions */
.blog-card.filtered-out {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
}

/* ==========================================================================
   DYNAMIC DETAILED VIEW (EXPANDED ARTICLE PANEL)
   ========================================================================== */
.expanded-article-view {
    display: none;
    /* Controlled by JS via class active */
    opacity: 0;
    padding: 120px 0 100px;
    background-color: var(--blog-bg);
}

.expanded-article-view.active {
    display: block;
    animation: fade-in-slide 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fade-in-slide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-header {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.article-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--blog-text-muted);
    margin-bottom: 2rem;
}

.article-breadcrumbs a {
    color: var(--blog-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.article-breadcrumbs a:hover {
    color: var(--brand-red);
}

.article-breadcrumbs i {
    font-size: 0.65rem;
}

.article-redact-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    margin-right: auto;
}

.article-redact-btn:hover {
    background: rgba(244, 55, 34, 0.15);
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.article-category-badge {
    background: rgba(244, 55, 34, 0.15);
    border: 1px solid var(--brand-red);
    color: var(--brand-red);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.article-full-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: white;
}

.article-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.article-meta-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-meta-right {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--blog-text-muted);
}

.article-meta-right i {
    color: var(--brand-red);
}

/* Featured visual Banner */
.article-visual-banner {
    width: 100%;
    max-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-visual-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Core Layout: Content and Sidebar */
.article-grid-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Article Content Typography styling */
.article-body-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #E2E8F0;
}

.article-body-content p {
    margin-bottom: 2rem;
}

.article-body-content h2,
.article-body-content h3 {
    color: white;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
}

.article-body-content h2 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.article-body-content h2::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--brand-red);
    border-radius: 4px;
}

.article-body-content h3 {
    font-size: 1.4rem;
}

.article-body-content ul,
.article-body-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.article-body-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.article-body-content blockquote {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--brand-red);
    border-radius: 4px;
    padding: 1.8rem 2.2rem;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #F8FAFC;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02);
}

.article-body-content blockquote p {
    margin-bottom: 0;
}

.article-body-content blockquote footer {
    font-size: 0.9rem;
    color: var(--blog-text-muted);
    margin-top: 0.8rem;
    font-weight: 500;
    font-style: normal;
}

.article-body-content blockquote footer::before {
    content: "— ";
}

/* Detailed Sidebar */
.article-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.6rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Sharing buttons */
.share-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--blog-text-muted);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.share-btn:hover {
    background: rgba(244, 55, 34, 0.1);
    border-color: var(--brand-red);
    color: white;
}

.share-btn i {
    font-size: 1rem;
    width: 18px;
}

.share-btn.fb:hover i {
    color: #1877F2;
}

.share-btn.tw:hover i {
    color: #1DA1F2;
}

.share-btn.ln:hover i {
    color: #0A66C2;
}

/* Interactive Demo block inside article body */
.article-inline-demo {
    background: linear-gradient(135deg, rgba(20, 31, 72, 0.7) 0%, rgba(24, 38, 92, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-inline-demo::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--brand-red);
    filter: blur(80px);
    opacity: 0.25;
    bottom: -50px;
    right: -50px;
    pointer-events: none;
}

.inline-demo-badge {
    background: var(--brand-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.inline-demo-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.6rem;
}

.inline-demo-desc {
    font-size: 0.9rem;
    color: var(--blog-text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.expanded-article-footer-redact {
    text-align: center;
    margin: 5rem auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 3.5rem;
    max-width: 700px;
}

.expanded-article-footer-redact p {
    color: var(--blog-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   STAY IN THE ORBIT (NEWSLETTER SECTION)
   ========================================================================== */
.newsletter-section {
    padding: 100px 0;
    background-color: var(--blog-bg);
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(20, 31, 72, 0.9) 0%, rgba(13, 24, 64, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4.5rem 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.newsletter-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(244, 55, 34, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--brand-purple);
    opacity: 0.15;
    filter: blur(100px);
    top: -120px;
    left: -120px;
    border-radius: 50%;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.newsletter-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.newsletter-content p {
    color: var(--blog-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-form-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-form {
    display: flex;
    background: rgba(10, 17, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.newsletter-form:focus-within {
    border-color: var(--brand-red);
    box-shadow: 0 0 15px rgba(244, 55, 34, 0.25);
}

.newsletter-input {
    background: transparent;
    border: none;
    color: white;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    flex-grow: 1;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
}

.btn-subscribe {
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-subscribe:hover {
    background-color: var(--brand-red-hover);
    box-shadow: 0 4px 15px rgba(244, 55, 34, 0.4);
    transform: translateY(-1px);
}

.newsletter-footer-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    padding-left: 0.3rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */

/* Large screen and down */
@media (max-width: 1100px) {
    .featured-grid {
        gap: 2.5rem;
    }

    .stories-grid {
        gap: 1.6rem;
    }
}

/* Medium screen (Tablet) */
@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .featured-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .author-block {
        justify-content: center;
    }

    .orbital-graphic-container {
        height: 320px;
    }

    .phone-mockup-wrapper {
        width: 180px;
        height: 280px;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .section-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .filter-pills {
        width: 100%;
    }

    .article-grid-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .article-sidebar {
        position: static;
    }

    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .newsletter-card {
        padding: 3.5rem 2.5rem;
    }
}

/* Small screen (Mobile) */
@media (max-width: 768px) {
    .featured-hero {
        padding: 100px 0 60px;
    }

    .featured-title {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-card {
        padding: 3rem 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.8rem;
    }

    .newsletter-form:focus-within {
        box-shadow: none;
    }

    .newsletter-input {
        background: rgba(10, 17, 40, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        padding: 1rem;
    }

    .btn-subscribe {
        width: 100%;
        padding: 1rem;
    }

    .article-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .article-meta-right {
        width: 100%;
        justify-content: space-between;
    }

    .article-full-title {
        font-size: 2.2rem;
    }

    .article-body-content blockquote {
        padding: 1.2rem 1.5rem;
        margin: 2rem 0;
        font-size: 1.1rem;
    }
}