/* News Hero Section */
.news-hero {
    position: relative;
    overflow: hidden;
    margin-top: -6rem;
    padding-top: 6rem;
    background: var(--background);
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--background);
    opacity: 0.6;
    pointer-events: none;
}

.news-hero-gradient-h {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background), var(--background), transparent);
    pointer-events: none;
}

.news-hero-gradient-v {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, transparent, var(--background));
    pointer-events: none;
}

.news-hero-content {
    position: relative;
    max-width: var(--container-7xl);
    margin: 0 auto;
    padding: 3rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .news-hero-content {
        padding-top: 5rem;
    }
}

/* Breadcrumb */
.news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-xs);
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

.news-breadcrumb a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s var(--ease-in-out);
}

.news-breadcrumb a:hover {
    color: var(--gold);
}

.news-breadcrumb-sep {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.news-breadcrumb-sep svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--gold);
}

.news-breadcrumb-sep span {
    color: var(--foreground);
}

/* Label */
.news-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Title */
.news-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    line-height: 1.02;
    max-width: var(--container-4xl);
}

@media (min-width: 768px) {
    .news-title {
        font-size: var(--text-6xl);
    }
}

@media (min-width: 1024px) {
    .news-title {
        font-size: var(--text-7xl);
    }
}

.news-title em {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* Subtitle */
.news-subtitle {
    margin-top: 1.5rem;
    max-width: var(--container-2xl);
    font-size: var(--text-base);
    color: var(--muted-foreground);
    line-height: var(--leading-relaxed);
}

@media (min-width: 768px) {
    .news-subtitle {
        font-size: var(--text-lg);
    }
}

/* News Section */
.news-section {
    padding: 3rem 0;
}

.news-section-inner {
    max-width: var(--container-7xl);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .news-section-inner {
        grid-template-columns: 1fr 280px;
    }
}

/* Search Bar */
.news-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background: var(--gradient-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 0.625rem 1.25rem;
    margin-bottom: 2rem;
}

.news-search svg {
    width: 1rem;
    height: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.news-search-form {
    flex: 1;
    display: flex;
}

.news-search-input {
    flex: 1;
    background: transparent !important;
    font-size: var(--text-sm) !important;
    outline: none !important;
    color: var(--foreground) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    line-height: normal !important;
    font-family: var(--font-sans) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.news-search-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.news-search-input::placeholder {
    color: var(--muted-foreground) !important;
    opacity: 1 !important;
}

/* News Grid */
.news-grid {
    display: grid;
    gap: 1.5rem;
}

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

/* News Card */
.news-card {
    border-radius: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s var(--ease-in-out);
}

.news-card:hover {
    box-shadow: var(--shadow-luxe);
    transform: translateY(-0.25rem);
}

.news-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--gradient-teal-gold);
    overflow: hidden;
}

.news-card-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, oklch(1 0 0 / 0.15), transparent 70%);
}

.news-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    background: var(--background);
    opacity: 0.8;
    backdrop-filter: blur(12px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.news-card-body {
    padding: 1.5rem;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--text-xs);
    color: var(--muted-foreground);
}

.news-card-date {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.news-card-date svg {
    width: 0.75rem;
    height: 0.75rem;
}

.news-card-title {
    margin-top: 0.75rem;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    line-height: var(--leading-snug);
    transition: color 0.2s var(--ease-in-out);
}

.news-card:hover .news-card-title {
    color: var(--gold);
}

.news-card-link {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-sm);
    color: var(--gold);
    text-decoration: none;
}

.news-card-link:hover {
    text-decoration: underline;
}

.news-card-link svg {
    width: 1rem;
    height: 1rem;
}

/* Sidebar */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-sidebar-card {
    border-radius: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem;
}

.news-sidebar-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    margin-bottom: 1rem;
}

.news-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-categories li + li {
    margin-top: 0.5rem;
}

.news-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s var(--ease-in-out);
}

.news-category-link:hover {
    color: var(--gold);
}

.news-category-link span {
    font-size: var(--text-xs);
    color: var(--muted-foreground);
}

/* Sidebar CTA */
.news-sidebar-cta {
    border-radius: 1.5rem;
    background: var(--gradient-ink);
    color: #fff;
    padding: 1.5rem;
}

.news-sidebar-cta-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: #fff;
}

.news-sidebar-cta-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.news-sidebar-input {
    margin-top: 1rem;
    width: 100%;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 0.625rem 1rem !important;
    font-size: var(--text-sm) !important;
    color: var(--primary-foreground) !important;
    outline: none !important;
    transition: border-color 0.2s var(--ease-in-out);
    box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    line-height: normal !important;
    height: auto !important;
    margin: 1rem 0 0 0 !important;
    font-family: var(--font-sans) !important;
}

.news-sidebar-input:focus {
    border-color: var(--gold) !important;
    box-shadow: none !important;
    outline: none !important;
}

.news-sidebar-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.news-sidebar-btn {
    margin-top: 0.75rem;
    width: 100%;
    border-radius: 9999px;
    background: var(--gradient-gold);
    color: var(--gold-foreground);
    padding: 0.625rem;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    border: none;
    cursor: pointer;
    transition: transform 0.2s var(--ease-in-out);
}

.news-sidebar-btn:hover {
    transform: scale(1.03);
}

/* Active Category Link */
.news-category-link.active {
    color: var(--gold);
}

/* Pagination */
.news-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    padding: 0 0.75rem;
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    text-decoration: none;
    transition: all 0.2s var(--ease-in-out);
}

.news-pagination .page-numbers:hover {
    color: var(--foreground);
    background: var(--secondary);
}

.news-pagination .page-numbers.current {
    color: var(--gold-foreground);
    background: var(--gradient-gold);
}

.news-pagination .page-numbers.dots {
    background: none;
    cursor: default;
}

.news-pagination .page-numbers.prev,
.news-pagination .page-numbers.next {
    font-weight: var(--font-weight-medium);
}

/* Full Card Link */
.news-card-link-full {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card Image */
.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Search Form */
.news-search-form {
    flex: 1;
    display: flex;
}
