/*
 * TURKONFED News Page
 * Light Theme
 */

/* ============================================
   NEWS HERO (KEPT DARK)
   ============================================ */

.news-hero {
    position: relative;
    background: var(--color-bg-dark);
    overflow: hidden;
    padding: 8rem 0 4.0rem;
}

.news-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.news-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 50%, rgba(237, 27, 47, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(237, 27, 47, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, #0a0d12 0%, #111827 50%, #0f172a 100%);
}

.news-hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black 0%, transparent 70%);
}

.news-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.6;
}

.news-hero-glow-1 {
    top: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(237, 27, 47, 0.12);
}

.news-hero-glow-2 {
    bottom: -30%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(237, 27, 47, 0.08);
}

/* Layout */
.news-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

/* Breadcrumb */
.news-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.news-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-hero-breadcrumb a:hover {
    color: var(--color-accent);
}

.news-hero-breadcrumb svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Title */
.news-hero-title {
    font-family: var(--font-family-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.news-hero-title-accent {
    color: var(--color-accent);
    display: block;
}

.news-hero-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

/* Stats */
.news-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.news-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.news-hero-stat-value {
    font-family: var(--font-family-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.news-hero-stat-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.news-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* Preview Card */
.news-hero-preview {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.news-hero-preview:hover {
    transform: translateY(-4px);
    border-color: rgba(237, 27, 47, 0.3);
}

.news-hero-preview-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-hero-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-hero-preview:hover .news-hero-preview-image img {
    transform: scale(1.05);
}

.news-hero-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 13, 18, 0.9) 100%);
}

.news-hero-preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.news-hero-preview-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-accent);
    padding: 0.3rem 0.625rem;
    margin-bottom: 0.75rem;
}

.news-hero-preview-title {
    font-family: var(--font-family-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-hero-preview-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   NEWS HERO RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .news-hero-layout {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 7rem 0 3.0rem;
    }

    .news-hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .news-hero-description {
        margin-bottom: 2rem;
        font-size: 0.9375rem;
    }

    .news-hero-preview {
        max-width: 100%;
    }

    .news-hero-preview-image {
        aspect-ratio: 2/1;
    }
}

@media (max-width: 480px) {
    .news-hero {
        padding: var(--header-height) 0 2.0rem;
    }

    .news-hero-title {
        font-size: 1.5rem;
    }

    .news-hero-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .news-hero-stats {
        gap: 1.25rem;
    }

    .news-hero-stat-value {
        font-size: 1.5rem;
    }

    .news-hero-stat-divider {
        height: 28px;
    }

    .news-hero-preview-title {
        font-size: 0.875rem;
    }
}

@media (max-width: 360px) {
    .news-hero {
        padding: 5.5rem 0 1.5rem;
    }

    .news-hero-stats {
        gap: 1rem;
    }

    .news-hero-stat-value {
        font-size: 1.25rem;
    }
}

/* ============================================
   NEWS STATS BAR (MADE LIGHT)
   ============================================ */

.news-stats {
    background: #f8f9fb;
    padding: 0;
    border-bottom: 1px solid #e2e5eb;
}

.news-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.news-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 4rem;
    position: relative;
}

.news-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
}

.news-stat:last-child::after {
    display: none;
}

.news-stat-value {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #1a1f2e;
    line-height: 1;
}

.news-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5a6478;
    margin-top: 0.35rem;
}

@media (max-width: 768px) {
    .news-stats-grid {
        flex-direction: column;
        padding: 1.5rem 0;
    }

    .news-stat {
        padding: 1rem 2rem;
    }

    .news-stat::after {
        display: none;
    }
}

/* ============================================
   SECTION HEADER
   ============================================ */

.news-grid-section .section-header {
    margin-bottom: 2rem;
}

.news-grid-section .section-title {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0;
}

.news-grid-section .section-subtitle {
    font-size: 0.9rem;
    color: #8a94a6;
    margin: 0.5rem 0 0;
}

/* ============================================
   FEATURED NEWS (MADE LIGHT)
   ============================================ */

.news-featured {
    padding: 3rem 0 4rem;
    background: #f8f9fb;
    position: relative;
}

/* Featured Header */
.featured-header {
    margin-bottom: 2.5rem;
    position: relative;
}

.featured-header-line {
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    margin-bottom: 1.25rem;
}

.featured-header-title {
    font-family: var(--font-family-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a1f2e;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
}

.featured-header-sub {
    font-size: 0.9375rem;
    color: #8a94a6;
    margin: 0;
}

/* Featured Grid: 1 hero (left, spanning 2 rows) + 2 side (right) */
.featured-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    min-height: 580px;
}

/* Hero card spans 2 rows */
.featured-card--hero {
    grid-row: 1 / 3;
}

/* Base card styles (MADE LIGHT) */
.featured-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e2e5eb;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
}

.featured-card:hover {
    border-color: rgba(237, 27, 47, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* --- HERO CARD: full image bg with overlay text (KEPT DARK) --- */
.featured-card--hero .featured-card-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.featured-card--hero .featured-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.55) 35%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 2;
    transition: background 0.4s ease;
}

.featured-card--hero:hover .featured-card-overlay {
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 35%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0.08) 100%
    );
}

.featured-card--hero .featured-card-content {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding: 2.5rem;
}

/* --- SIDE CARDS: image top, text bottom (MADE LIGHT) --- */
.featured-card--side {
    display: flex;
    flex-direction: column;
}

.featured-card--side .featured-card-image {
    position: relative;
    width: 100%;
    height: 55%;
    min-height: 140px;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-card--side .featured-card-overlay {
    display: none;
}

.featured-card--side .featured-card-content {
    position: relative;
    z-index: 3;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
}

/* Image styles (shared) */
.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.05);
}

.featured-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eef0f4 0%, #dde1e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-card-image-placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(0, 0, 0, 0.08);
}

/* Meta row */
.featured-card-meta {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

/* Rank number badge (SIDE CARDS: light style) */
.featured-card-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-family: var(--font-family-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: #5a6478;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* Rank badge on hero card stays bright (on dark overlay) */
.featured-card--hero .featured-card-rank {
    width: 32px;
    height: 32px;
    font-size: 0.8125rem;
    background: var(--color-accent);
    border-color: var(--color-accent);
    border-radius: 8px;
    color: #fff;
}

.featured-card-category {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 0.2rem 0.5rem;
    background: rgba(237, 27, 47, 0.1);
    border: 1px solid rgba(237, 27, 47, 0.15);
    border-radius: 4px;
}

.featured-card--hero .featured-card-category {
    color: #fff;
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* Date: side cards get dark text, hero stays white via specificity below */
.featured-card-date {
    font-size: 0.75rem;
    color: #8a94a6;
}

.featured-card--hero .featured-card-date {
    color: rgba(255, 255, 255, 0.4);
}

/* Title: side cards get dark text */
.featured-card-title {
    font-family: var(--font-family-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #1a1f2e;
    line-height: 1.4;
    margin-bottom: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hero card title stays white (on dark overlay) */
.featured-card--hero .featured-card-title {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 800;
    -webkit-line-clamp: 3;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: #fff;
}

.featured-card:hover .featured-card-title {
    color: var(--color-accent);
}

/* Summary (hero only - stays white on dark overlay) */
.featured-card-summary {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read more link */
.featured-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: gap 0.3s ease;
    margin-top: auto;
}

.featured-card--side .featured-card-link {
    margin-top: 0.875rem;
}

.featured-card-link svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-card-link {
    gap: 0.75rem;
}

.featured-card:hover .featured-card-link svg {
    transform: translateX(3px);
}

/* ============================================
   NEWS FILTER (MADE LIGHT)
   ============================================ */

.news-filter {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e5eb;
    position: sticky;
    top: 80px;
    z-index: 50;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a94a6;
    white-space: nowrap;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5a6478;
    background: transparent;
    border: 1px solid #e2e5eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.filter-tab.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* ============================================
   NEWS GRID (MADE LIGHT)
   ============================================ */

.news-grid-section {
    padding: 4rem 0 6rem;
    background: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* ============================================
   NEWS CARD (MADE LIGHT)
   ============================================ */

.news-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e5eb;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.news-card:hover::before {
    width: 100%;
}

.news-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.news-card-image {
    height: 200px;
    overflow: hidden;
}

.news-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f2f5 0%, #e2e5eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-image-placeholder svg {
    width: 48px;
    height: 48px;
    color: #b8c0cc;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-body {
    flex: 1;
    padding: 1.5rem;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.news-card-category {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 0.25rem 0.5rem;
    background: rgba(237, 27, 47, 0.08);
}

.news-card-date {
    font-size: 0.75rem;
    color: #8a94a6;
}

.news-card-title {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1f2e;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-card-title {
    color: var(--color-accent);
}

.news-card-summary {
    font-size: 0.875rem;
    color: #5a6478;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.news-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e5eb;
    background: #f8f9fb;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5a6478;
    transition: all 0.3s ease;
}

.news-card-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-link {
    color: var(--color-accent);
}

.news-card:hover .news-card-link svg {
    transform: translateX(4px);
}

/* ============================================
   PAGINATION (MADE LIGHT)
   ============================================ */

.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: #5a6478;
    background: #ffffff;
    border: 1px solid #e2e5eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-page {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #5a6478;
    background: #ffffff;
    border: 1px solid #e2e5eb;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

a.pagination-btn {
    text-decoration: none;
}

.pagination-page:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.pagination-page.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.pagination-dots {
    font-size: 0.875rem;
    color: #8a94a6;
    padding: 0 0.5rem;
}

/* ============================================
   NEWSLETTER CTA (KEPT DARK)
   ============================================ */

.news-newsletter {
    padding: 5rem 0;
    background: var(--color-bg-dark);
    position: relative;
}

.news-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.newsletter-title {
    font-family: var(--font-family-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.newsletter-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.newsletter-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.newsletter-submit:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

.newsletter-submit:hover svg {
    transform: translateX(4px);
}

.newsletter-privacy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ============================================
   CARD ANIMATIONS
   ============================================ */

.news-card {
    opacity: 0;
    transform: translateY(20px);
    animation: cardReveal 0.5s ease forwards;
}

.news-card:nth-child(1) { animation-delay: 0.05s; }
.news-card:nth-child(2) { animation-delay: 0.1s; }
.news-card:nth-child(3) { animation-delay: 0.15s; }
.news-card:nth-child(4) { animation-delay: 0.2s; }
.news-card:nth-child(5) { animation-delay: 0.25s; }
.news-card:nth-child(6) { animation-delay: 0.3s; }
.news-card:nth-child(7) { animation-delay: 0.35s; }
.news-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-card {
    opacity: 0;
    transform: translateY(16px);
    animation: featuredReveal 0.6s ease forwards;
}

.featured-card:nth-child(1) { animation-delay: 0.1s; }
.featured-card:nth-child(2) { animation-delay: 0.25s; }
.featured-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes featuredReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
    }

    .featured-card--hero {
        grid-row: 1 / 2;
        grid-column: 1 / -1;
        min-height: 380px;
    }

    .featured-card--side {
        min-height: 300px;
    }

    .featured-card--side .featured-card-image {
        height: 50%;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .filter-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filter-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-tab {
        flex-shrink: 0;
        min-height: 44px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .news-card-image {
        height: 180px;
    }

    .news-card-body {
        padding: 1.25rem;
    }

    .news-card-title {
        font-size: 1.0625rem;
    }

    .news-pagination {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .pagination-btn span {
        display: none;
    }

    .pagination-btn {
        padding: 0.75rem;
        min-width: 44px;
        min-height: 44px;
    }

    .pagination-page {
        width: 40px;
        height: 40px;
    }

    .news-newsletter {
        padding: 3rem 0;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-input {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
    }

    .newsletter-submit {
        justify-content: center;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .featured-card--hero {
        grid-column: 1;
        min-height: 320px;
    }

    .featured-card--side {
        min-height: 260px;
    }

    .featured-card--side .featured-card-image {
        height: 50%;
    }

    .featured-card--side .featured-card-content {
        padding: 1rem 1.25rem;
    }

    .featured-card--hero .featured-card-content {
        padding: 1.5rem;
    }

    .featured-card--hero .featured-card-title {
        font-size: 1.125rem;
    }

    .featured-card-title {
        font-size: 0.9375rem;
    }

    .featured-header-title {
        font-size: 1.375rem;
    }

    .news-featured {
        padding: 2rem 0 2.5rem;
    }

    .news-card-image {
        height: 160px;
    }

    .news-card-body {
        padding: 1rem;
    }

    .news-card-title {
        font-size: 0.9375rem;
        -webkit-line-clamp: 2;
    }

    .news-card-summary {
        -webkit-line-clamp: 2;
    }

    .news-card-footer {
        padding: 0.75rem 1rem;
    }

    .pagination-pages {
        gap: 0.25rem;
    }

    .pagination-page {
        width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }

    .news-grid-section .section-title {
        font-size: 1.25rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .featured-card--hero {
        min-height: 280px;
    }

    .featured-card--side {
        min-height: 220px;
    }

    .featured-card--hero .featured-card-title {
        font-size: 1rem;
    }

    .featured-card-title {
        font-size: 0.875rem;
    }

    .news-card-image {
        height: 140px;
    }

    .news-card-title {
        font-size: 0.875rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .news-card,
    .featured-card {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .news-card,
    .featured-card-image img,
    .filter-tab,
    .pagination-btn,
    .pagination-page,
    .newsletter-submit {
        transition: none;
    }

    .news-card:hover,
    .featured-card:hover .featured-card-image img {
        transform: none;
    }
}
