/**
 * Estilo El País para Galicia Universal
 * Inspirado en el diseño de elpais.com
 */

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Maison Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

/* Header estilo El País */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #000;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.header-main {
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #000;
}

.site-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -2px;
    color: #000;
    text-decoration: none;
    font-family: 'Times New Roman', serif;
}

.site-tagline {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* Navegación principal */
.main-navigation {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: #f5f5f5;
    color: #d32f2f;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid de artículos */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

/* Artículo principal */
.featured-article {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.featured-article h1 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.featured-article .article-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.featured-article .article-excerpt {
    font-size: 20px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 20px;
}

.featured-article img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* Lista de artículos */
.article-list {
    display: grid;
    gap: 30px;
}

.article-item {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.article-item:last-child {
    border-bottom: none;
}

.article-content h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 700;
}

.article-content h2 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h2 a:hover {
    color: #d32f2f;
}

.article-excerpt {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 13px;
    color: #666;
}

.article-category {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 2px 8px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 10px;
}

.article-thumbnail {
    width: 200px;
    height: 130px;
    object-fit: cover;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: #f8f8f8;
    padding: 20px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.sidebar-list a:hover {
    color: #d32f2f;
    text-decoration: underline;
}

/* Sección de opinión */
.opinion-section {
    background: #f0f0f0;
    padding: 30px 0;
    margin: 40px 0;
}

.opinion-header {
    text-align: center;
    margin-bottom: 30px;
}

.opinion-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.opinion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.opinion-item {
    background: #fff;
    padding: 20px;
}

.opinion-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
}

.opinion-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.opinion-title a {
    color: #000;
    text-decoration: none;
}

.opinion-title a:hover {
    color: #d32f2f;
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .article-item {
        grid-template-columns: 1fr;
    }
    
    .article-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .opinion-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .featured-article h1 {
        font-size: 28px;
    }
}

/* Animaciones */
.article-item {
    transition: transform 0.3s ease;
}

.article-item:hover {
    transform: translateY(-2px);
}

/* Etiquetas de última hora */
.breaking-news {
    background: #ff0000;
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Video player */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 20px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Citas destacadas */
blockquote {
    border-left: 3px solid #d32f2f;
    padding-left: 20px;
    margin: 20px 0;
    font-size: 20px;
    font-style: italic;
    color: #333;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #d32f2f;
}

.btn-outline {
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}