/* --- PREMIUM STYLES (MATCHING ABOUT.PHP) --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.news-container { color: #fff; margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

.news-premium-section {
    position: relative;
    padding: 6rem 0 4rem 0;
    background-color: #050505;
    overflow: hidden;
    min-height: 100vh;
}

/* Ambient Glows */
.news-premium-section::before {
    content: ''; position: absolute; top: -10%; left: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(207, 0, 0, 0.12) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.news-premium-section::after {
    content: ''; position: absolute; bottom: 20%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.12) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}

.container-premium {
    width: 90%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}

/* Header */
.news-header {
    text-align: center; margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}
.news-header h1 {
    font-size: 4rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: -2px; line-height: 1; margin-bottom: 1rem;
}
.grad-red {
    background: linear-gradient(to right, #cf0000, #ff4d4d);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.news-header p {
    font-size: 1.25rem; color: #aaa; max-width: 600px; margin: 0 auto;
}

/* Hero Post */
.hero-post-wrapper {
    margin-bottom: 5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}
.hero-card {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    position: relative;
    display: grid; grid-template-columns: 1.5fr 1fr;
}
.hero-card:hover { transform: scale(1.01); border-color: #cf0000; }
.hero-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #cf0000, #1e40af);
    z-index: 10;
}
.hero-image {
    width: 100%; height: 100%; min-height: 400px; object-fit: cover;
    background-color: #111; border-right: 1px solid #222;
}
.hero-content { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.hero-badge {
    display: inline-block; background: #cf0000; color: white;
    padding: 0.25rem 0.75rem; border-radius: 4px; font-weight: 700;
    font-size: 0.8rem; text-transform: uppercase; margin-bottom: 1.5rem; align-self: flex-start;
}
.hero-title {
    font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: #fff;
    line-height: 1.1;
}
.hero-excerpt { color: #ccc; font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; }
.read-more-hero {
    color: #fff; text-decoration: none; font-weight: 700; font-size: 1.1rem;
    border-bottom: 2px solid #cf0000; display: inline-block; padding-bottom: 5px;
    align-self: flex-start; transition: all 0.3s;
}
.read-more-hero:hover { color: #cf0000; border-color: transparent; }

/* Grid */
.news-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}
.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px; overflow: hidden;
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.05);
}
.news-card-img {
    width: 100%; height: 220px; object-fit: cover;
    background-color: #111;
}
.news-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.news-card-date { color: #cf0000; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; }
.news-card-title { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.3; }
.news-card-excerpt { color: #aaa; font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.5rem; flex-grow: 1; }
.btn-read-more {
    color: #3b82f6; text-decoration: none; font-weight: 700;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: color 0.3s ease;
}
.btn-read-more:hover { color: #fff; }

@media (max-width: 900px) {
    .hero-card { grid-template-columns: 1fr; }
    .hero-image { height: 200px; min-height: auto; }
    .hero-content { padding: 2rem; }
    .hero-title { font-size: 1.75rem; }
    .hero-excerpt { font-size: 1rem; margin-bottom: 1.5rem; }
    .news-header h1 { font-size: 3rem; }
}

@media (max-width: 600px) {
    .hero-image { height: 180px; }
    .hero-content { padding: 1.5rem; }
    .hero-title { font-size: 1.5rem; }
    .hero-excerpt { 
        font-size: 0.95rem; 
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
