/* 
  XChat Premium Landing Page Styles
  Pure CSS - Modern, Responsive, Light Mode
*/

:root {
    /* Colors */
    --primary: #000000;
    --primary-soft: #1a1a1a;
    --accent: #000000; /* Unified with primary black */
    --accent-soft: #f0f3f5; /* Subtle gray background */
    --bg: #ffffff;
    --bg-alt: #f7f9f9;
    --text: #0f1419;
    --text-light: #536471;
    --border: #eff3f4;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);

    /* Spacing & Sizing */
    --container: 1140px;
    --section-pad: 120px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 9999px;

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. Base Reset & Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-pad) 0;
}

.text-center { text-align: center; }

/* 2. Components */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    gap: 10px;
}

.btn svg { width: 20px; height: 20px; }

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    border-color: var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--text-light);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.03);
}

.btn-text {
    font-weight: 600;
    padding: 10px 0;
}

.btn-text:hover {
    opacity: 0.7;
    transform: translateX(4px);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 3. Navigation & Mobile Menu */
.navbar {
    height: 72px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--primary);
    z-index: 1100;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}
.nav-links a.is-active{
    color: var(--text);
}
/* Mobile Toggle - Hidden by default */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
    margin-right: -10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
    gap: 32px;
    transform: translateX(100%);
    /* Transition transform and visibility */
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), 
                visibility 0s linear 0.5s;
    visibility: hidden;
}

.nav-overlay a {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Toggle Logic */
#menu-checkbox {
    display: none;
}

#menu-checkbox:checked ~ .nav-overlay {
    transform: translateX(0);
    visibility: visible;
    /* When showing, visibility should be instant */
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), 
                visibility 0s linear 0s;
}

#menu-checkbox:checked ~ .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#menu-checkbox:checked ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
}

#menu-checkbox:checked ~ .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide desktop links */
    }

    .menu-toggle {
        display: flex; /* Show hamburger */
    }
}

/* 4. Hero Section */
.hero {
    padding-top: 80px;
    padding-bottom: 100px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -3px;
    color: var(--primary);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.news-hero {
    padding-top: 72px;
    padding-bottom: 56px;
/*    border-bottom: 1px solid var(--border);*/
}

.news-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -2px;
    color: var(--primary);
}

.news-hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.5;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.935rem;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

/* 5. Stats Section */
.stats {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    background: var(--bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-icon {
    margin-bottom: 10px;
    color: var(--primary);
}

.stat-icon svg { width: 50px; height: 50px; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 4px;
    color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* 6. Features Section */
.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 140px;
}

.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }

.feature-content { flex: 1.2; }
.feature-image { flex: 1; }

.feature-icon-header {
    width: 64px;
    height: 64px;
    background: var(--accent-soft);
    color: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.feature-icon-header svg { width: 32px; height: 32px; }

.feature-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.feature-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.feature-list li {
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    gap: 16px;
    font-size: 1.05rem;
}

.feature-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
    width: 20px;
    height: 20px;
}

.placeholder-img {
    background: #f0f3f5;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.ai-orb {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #333, #ccc, transparent);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.2;
    animation: pulse 6s infinite ease-in-out;
}

.secure-shield {
    width: 140px;
    height: 160px;
    background-color: var(--primary);
    clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
    opacity: 0.08;
    animation: float 4s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.4); opacity: 0.3; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* 7. Quote Section */
.quote {
    background-color: var(--primary);
    color: white;
    border-radius: 0;
}

.quote-icon {
    color: white;
    opacity: 0.3;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.quote-icon svg { width: 64px; height: 64px; }

.testimonial {
    max-width: 860px;
    margin: 0 auto;
}

.testimonial p {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.testimonial cite {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial cite strong {
    font-size: 1.25rem;
    color: white;
}

.testimonial cite span {
    color: #8899a6;
    font-size: 0.95rem;
    font-weight: 500;
}

/* 8. Final CTA */
.final-cta {
    background: linear-gradient(to bottom, #fff, var(--bg-alt));
}

.final-cta h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

/* 9. Footer */
.main-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 10. Responsive */
@media (max-width: 1024px) {
    .feature-row { gap: 40px; }
    .feature-content h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px; }
    
    .hero { padding-top: 40px; }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 48px;
    }
    
    .feature-icon-header { margin: 0 auto 24px; }
    
    .feature-list li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn { width: 100%; }
}

/* 12. News & Article Specific */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.news-card-link {
    display: block;
    color: inherit;
    min-width: 0;
}

.news-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.news-meta .category {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}
.tit-v2{
    font-size: 3rem; font-weight: 900; letter-spacing: -1.5px;
}
.news-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3em;
    overflow: hidden;
}

.news-card .read-more {
    margin-top: auto;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs .separator {
    display: flex;
    align-items: center;
    opacity: 0.3;
}

.breadcrumbs .separator svg {
    width: 14px;
    height: 14px;
}

.breadcrumbs .current {
    color: var(--primary);
    opacity: 0.5;
    cursor: default;
}

/* Article Detail */
.article-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.article-header h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.article-header time {
    display: inline-block;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-content {
    --article-gap: 1.7rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    word-break: break-word;
}

.article-content::after {
    content: "";
    display: block;
    clear: both;
}

.article-content > * {
    max-width: 100%;
}

.article-content > * + * {
    margin-top: var(--article-gap);
}

.article-content p {
    margin: 0;
}

.article-content :where(h2, h3, h4, h5, h6) {
    color: var(--primary);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-top: 2.8rem;
    margin-bottom: 0.9rem;
}

.article-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.15rem);
}

.article-content h3 {
    font-size: clamp(1.45rem, 2.4vw, 1.8rem);
}

.article-content h4 {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.article-content h5 {
    font-size: 1.08rem;
}

.article-content h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.article-content a:hover {
    opacity: 0.75;
}

.article-content :where(ul, ol) {
    margin: 0;
    list-style: disc;
    padding-left: 1.35em;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin: 0;
}

.article-content li + li {
    margin-top: 0.55em;
}

.article-content li::marker {
    color: var(--primary);
}

.article-content hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 2.2rem 0;
}

.article-content blockquote,
.article-content .wp-block-quote {
    margin: 0;
    padding: 1.1rem 1.25rem;
    border-left: 4px solid var(--primary);
    background: var(--bg-alt);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-content blockquote p,
.article-content .wp-block-quote p {
    margin: 0;
}

.article-content blockquote cite,
.article-content .wp-block-quote cite {
    margin-top: 0.9rem;
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-content .wp-block-pullquote {
    margin: 0;
    padding: 1.4rem 1.2rem;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

.article-content .wp-block-pullquote blockquote {
    border: 0;
    background: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
}

.article-content :not(pre) > code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9em;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    border-radius: 6px;
    padding: 0.12em 0.42em;
}

.article-content pre,
.article-content .wp-block-code {
    margin: 0;
    overflow: auto;
    border-radius: 14px;
    background: #0f1419;
    color: #f7f9f9;
    border: 1px solid #1f2937;
    padding: 1rem 1.15rem;
    line-height: 1.65;
}

.article-content pre code,
.article-content .wp-block-code code {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 0.92em;
}

.article-content figure,
.article-content .wp-block-image,
.article-content .wp-block-gallery,
.article-content .wp-block-embed {
    margin: 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.article-content figcaption,
.article-content .wp-element-caption {
    margin-top: 0.65rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-light);
    text-align: center;
}

.article-content .wp-block-table {
    margin: 0;
    overflow-x: auto;
}

.article-content table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--bg);
    font-size: 0.98rem;
}

.article-content th,
.article-content td {
    border: 1px solid var(--border);
    padding: 0.72rem 0.82rem;
    text-align: left;
    vertical-align: top;
}

.article-content thead th {
    background: var(--bg-alt);
    font-weight: 700;
}

.article-content .alignleft {
    float: left;
    margin: 0.35rem 1.25rem 0.7rem 0;
    max-width: min(48%, 340px);
}

.article-content .alignright {
    float: right;
    margin: 0.35rem 0 0.7rem 1.25rem;
    max-width: min(48%, 340px);
}

.article-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.article-content .alignwide {
    width: min(1100px, calc(100vw - 48px));
    max-width: none;
    margin-left: calc(50% - min(550px, (100vw - 48px) / 2));
    margin-right: calc(50% - min(550px, (100vw - 48px) / 2));
}

.article-content .alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

.article-content .alignwide img,
.article-content .alignfull img {
    width: 100%;
    border-radius: inherit;
}

.article-content .wp-block-buttons {
    margin-top: 2rem;
}

.article-content .wp-block-button__link {
    border-radius: var(--radius-full);
    padding: 0.68em 1.35em;
    font-weight: 700;
}

.article-content .wp-block-separator {
    border: 0;
    border-top: 1px solid var(--border);
    opacity: 1;
}

.article-cover {
    width: 100%;
    margin: 0 0 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    margin: 48px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.article-cover-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .article-header,
    .article-body {
        max-width: 760px;
    }

    .article-header {
        margin-bottom: 48px;
    }

    .article-content {
        font-size: 1.07rem;
    }
}

@media (max-width: 768px) {
    .article-header {
        margin-bottom: 32px;
    }

    .article-header h1 {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
        margin-bottom: 16px;
    }

    .article-header time {
        font-size: 0.94rem;
    }

    .article-content {
        --article-gap: 1.3rem;
        font-size: 1rem;
        line-height: 1.78;
    }

    .article-content :where(h2, h3, h4, h5, h6) {
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .article-content h3 {
        font-size: 1.36rem;
    }

    .article-content h4 {
        font-size: 1.18rem;
    }

    .article-content .alignleft,
    .article-content .alignright {
        float: none;
        margin: 0;
        max-width: 100%;
    }

    .article-content .alignwide {
        width: calc(100vw - 32px);
        margin-left: calc(50% - ((100vw - 32px) / 2));
        margin-right: calc(50% - ((100vw - 32px) / 2));
    }

    .article-content table {
        min-width: 500px;
    }

    .article-cover {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .article-content pre,
    .article-content .wp-block-code {
        padding: 0.85rem 0.95rem;
        border-radius: 12px;
    }

    .article-content blockquote,
    .article-content .wp-block-quote {
        padding: 0.95rem 1rem;
    }

    .article-content table {
        min-width: 420px;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 80px;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 700;
    transition: var(--transition);
    color: var(--text);
}

.pagination-item:hover:not(.disabled):not(.active) {
    border-color: var(--primary);
    background: var(--bg-alt);
}

.pagination-item.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-item.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-arrow {
    padding: 0 16px;
    width: auto;
    min-width: 44px;
    gap: 8px;
}

@media (max-width: 480px) {
    .pagination {
        gap: 4px;
    }
    .pagination-item:not(.pagination-arrow):not(.active) {
        display: none; /* Hide middle numbers on small mobile except active */
    }
    .pagination-item.active {
        width: 60px; /* Make active number a bit wider to look intentional */
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--text-light);
}

.back-link:hover {
    color: var(--primary);
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    padding: 24px 0;
}

/* Responsive News */
@media (max-width: 768px) {
    .news-hero {
        padding-top: 40px;
        padding-bottom: 32px;
    }

    .news-hero h1 {
        letter-spacing: -1px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
}

.download-rows {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.download-row {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.download-row:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.download-row.reverse {
    flex-direction: row-reverse;
}

.row-info {
    flex: 1;
}

.row-info svg.category-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 24px;
}

.row-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.row-info p {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 400px;
}

.dl-row-actions {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.download-btn-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    gap: 24px;
}

.download-btn-card:hover {
    border-color: var(--primary);
    background: var(--bg);
}

.card-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-info svg,
.card-info i {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.btn-full {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 20px;
    text-align: center;
}

.download-btn-card .btn-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.download-btn-card small {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.download-btn-card span:not(a span) {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

/* Download Responsive */
@media (max-width: 1024px) {
    .download-row {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .download-row.reverse {
        flex-direction: column;
    }
    
    .row-info p {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .download-row{
        padding: 20px;
    }
    .row-info svg.category-icon{
        margin-bottom: 0;
    }
    .dl-row-actions {
        grid-template-columns: 1fr;
        margin-top: 30px;
        width: 100%;
    }
    
    .row-info h2 {
        font-size: 2rem;
    }
    .stat-icon{
        margin-bottom: 0;
    }
    .stat-number{
        line-height: 1.2;
    }
    .stat-item{
        padding: 30px 20px;
    }

}

.news-list,
.download-options{
    padding-top: 0;
}


.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    list-style: none;
}
.breadcrumbs a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary);
}


.breadcrumbs .seperator {
    display: flex;
    align-items: center;
    opacity: 0.3;
    font-size: 0.9rem;
}

.breadcrumbs .seperator svg {
    width: 14px;
    height: 14px;
}

.breadcrumbs .item-current,
.breadcrumbs .current {
    color: var(--primary);
    opacity: 0.5;
    cursor: default;
}

.breadcrumbs li {
    flex: 0 0 auto; 
}

.breadcrumbs .item-current{
    
    flex: 1 1 auto;  
      min-width: 0;    
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}


.quote footer{
    text-align: right;
}
.logo{
    display: inline-flex;
    align-items: center;
}
.logo-img{
    height: 60px;
}

.main-footer .copy-right{
    margin-right: 10px;
}
.main-footer .container p{
    display: inline;
}


@media (max-width: 640px) {
    .main-footer{
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}