/*
Theme Name: News Classic News
Theme URI: 
Author: 
Author URI: 
Description: Tema de periódico digital
Version: 1.0
License: GPL v2
Text Domain:classic web
*/

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #121212;
    background-color: #ffffff;
}

/* Header */
.site-header {
    border-bottom: 1px solid #e2e2e2;
    padding: 20px 0;
    text-align: center;
    background: #fff;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.site-title {
    font-family: 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 15px 0;
}

.site-title a {
    color: #121212;
    text-decoration: none;
}

.tagline {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navegación */
.main-navigation {
    border-top: 1px solid #e2e2e2;
    border-bottom: 2px solid #121212;
    padding: 10px 0;
    margin-top: 20px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.main-navigation li {
    margin: 0 15px;
}

.main-navigation a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #121212;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.main-navigation a:hover {
    border-bottom-color: #121212;
}

/* Layout principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Artículos destacados */
.hero-article {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.hero-article .entry-title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-article .entry-title a {
    color: #121212;
    text-decoration: none;
}

.hero-article .entry-title a:hover {
    color: #666;
}

.hero-article .featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 15px;
}

.hero-article .entry-meta {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-article .entry-summary {
    font-size: 18px;
    line-height: 1.5;
    color: #444;
}

/* Grid de noticias secundarias */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.news-grid .article-card {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 20px;
}

.article-card .entry-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.article-card .entry-title a {
    color: #121212;
    text-decoration: none;
}

.article-card .entry-title a:hover {
    color: #666;
}

.article-card .entry-meta {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.article-card .entry-summary {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

/* Sidebar */
.sidebar {
    border-left: 1px solid #e2e2e2;
    padding-left: 30px;
}

.widget {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e2e2;
}

.widget-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #121212;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget a {
    color: #121212;
    text-decoration: none;
    font-size: 14px;
}

.widget a:hover {
    color: #666;
}

/* Footer */
.site-footer {
    background-color: #f7f7f7;
    border-top: 1px solid #e2e2e2;
    padding: 40px 20px;
    margin-top: 50px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #121212;
        padding-top: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .site-title {
        font-size: 32px;
    }
    
    .hero-article .entry-title {
        font-size: 28px;
    }
}

/* Single post */
.single-post .entry-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.single-post .entry-title {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.single-post .entry-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.single-post .entry-content p {
    margin-bottom: 20px;
}

.single-post .entry-content h2,
.single-post .entry-content h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 30px 0 15px;
}

/* Navegación de posts */
.post-navigation {
    max-width: 700px;
    margin: 40px auto;
    padding-top: 20px;
    border-top: 1px solid #e2e2e2;
    display: flex;
    justify-content: space-between;
}