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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #373D3E;
    background-color: #FCFCF9;
}

/* Contenedor principal (eliminado visualmente) */
.site {
    max-width: none; /* sin límite de ancho */
    margin: 0;      /* sin centrado */
    background-color: transparent; /* sin fondo propio */
    box-shadow: none; /* sin sombra */
}

/* Header */
.site-header {
    background-color: #FCFCF9; /* fondo claro */
    padding: 1rem 0;
}

.header-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center; /* centramos el logo */
    align-items: center;
}

/* Site Branding */
.site-branding { flex: 0; }

.custom-logo-link { display: inline-block; line-height: 0; }
.custom-logo { height: auto; max-width: 100%; vertical-align: middle; }

/* Logo responsivo */
.logo-desktop { display: block; max-height: 60px; }
.logo-mobile { display: none; max-height: 40px; }

/* Site Title (fallback cuando no hay logo) */
.site-title { margin: 0; font-size: 1.8rem; font-weight: bold; }
.site-title a { color: #373D3E; text-decoration: none; }
.site-title a:hover { color: #373D3E; }
.site-description { margin: 0; font-size: 0.9rem; color: #6b6f70; }

/* Navegación ocultada */
.main-navigation { display: none; }

/* Responsive */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; }
    .logo-desktop { display: none; }
    .logo-mobile { display: block; }
}

/* Contenido principal */
.site-content { padding: 2rem; background-color: #FCFCF9; }
.content-area { max-width: none; margin: 0; }

/* Artículos */
article { background-color: #FCFCF9; margin-bottom: 2rem; padding: 1.5rem; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.entry-title { color: #373D3E; margin-bottom: 1rem; }
.entry-title a { color: #373D3E; text-decoration: none; }
.entry-title a:hover { color: #373D3E; }
.entry-content { margin-bottom: 1rem; line-height: 1.8; }
.entry-footer { border-top: 1px solid #eee; padding-top: 1rem; font-size: 0.9rem; color: #373D3E; }

/* Footer (se mantiene) */
.site-footer { background-color: #2c3e50; color: #fff; padding: 2rem 1rem 1rem; text-align: center; }
.footer-menu { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-menu li { margin: 0 1rem; }
.footer-menu a { color: #fff; text-decoration: none; font-size: 0.9rem; }
.footer-menu a:hover { color: #3498db; }
.site-info { border-top: 1px solid #34495e; padding-top: 1rem; font-size: 0.9rem; opacity: 0.8; }

/* Responsive ajustes de contenido */
@media (max-width: 768px) { .site-content { padding: 1rem; } }

/* Inline SVG ajustes */
.custom-logo-link .logo-svg svg { height: auto; max-width: 100%; display: block; }
.logo-desktop .logo-svg svg, .logo-desktop svg { max-height: 60px; }
.logo-mobile .logo-svg svg, .logo-mobile svg { max-height: 40px; }
@media (max-width: 768px) { .logo-desktop { display: none; } .logo-mobile { display: block; } }