@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Georgia:wght@400;500&family=Inter:wght@400;500;600&display=swap');

:root {
    --red: #c8102e;
    --text: #1a1a1a;
    --gray: #555;
    --light: #f8f8f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
    font-size: 1.05rem;
}

.ticker {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.95rem;
}

.ticker-content {
    display: inline-block;
    animation: ticker 35s linear infinite;
}

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

header {
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
}

.news {
    color: var(--red);
}

nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all .5s;
}

nav a:hover {
    color: var(--red);
}

.subscribe {
    background: var(--red);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.subscribe:hover {
    color: rgb(172, 172, 172);
    background-color: #a30d26;
}

.hero {
    background: #f9f9f9;
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hero-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

.kicker {
    font-family: 'Inter', sans-serif;
    letter-spacing: 3px;
    font-size: 0.95rem;
    color: var(--red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.35rem;
    max-width: 680px;
    margin: 0 auto 2rem;
    color: var(--gray);
}

.byline {
    font-family: 'Inter', sans-serif;
    color: #777;
    font-size: 1rem;
}

/* Sections */
.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--red);
    padding-bottom: 10px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
}


.news-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.card-new {
    transition: .5s;
}

.card-new:hover {
    transform: scale(1.05);
    border: 2px solid var(--red);
    border-radius: 8px;
}

.news-card:hover {
    transform: translateY(-8px), scale(1.2);
}

.card-image {
    height: 220px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.card-content {
    padding: 1.8rem;
}


.category {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1px;
}

h3 {
    font-size: 1.45rem;
    line-height: 1.3;
    margin: 1rem 0 1rem;
    font-weight: 600;
}

.excerpt {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.meta {
    font-size: 0.9rem;
    color: #888;
    font-family: 'Inter', sans-serif;
}

.featured-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.featured-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.featured-main {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.featured-image {
    height: 420px;
    background: linear-gradient(#f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    
}

.featured-content {
    padding: 2.5rem;
}

.featured-content h2 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.stats {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.stat {
    background: #f5f5f5;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Sidebar */
.sidebar-card {
    background: white;
    padding: 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

footer {
    background: #1a1a1a;
    color: #ddd;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.copyright {
    margin-top: 3rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
}