@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Crimson+Text:wght@400;600&display=swap');

body {
     background-image: url('/assets/images/fondoblog.gif');
      background-repeat: no-repeat; 
    background-position: center center;
    background-size: cover;
   
    background-attachment: fixed;
    
    height: 100vh;
    margin: 0;
}
:root {
    --bg-claro: #F4F1EA;
    --bg-oscuro: #1A1D24;
    --accent-green: #4A7C59;
    --accent-glow: #68A678;
    --accent-gold: #D4AF37;
    --accent-blue: #5D93B4;
    --accent-earth: #C17767;
}

.title-Blog {
    font-family: 'Cinzel', serif;
;
    color: var(--bg-claro); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: xx-large;
    min-height: 200px;
    
}
.title-container {
    
    background-color: rgba(26, 29, 36, 0.7);
    padding: 20px 40px;
    border-radius: 8px;
    border: 3px solid var(--accent-gold);
    
}
.post {
    background-color: rgba(26, 29, 36, 0.8);
    
    padding: 30px;
    
    margin: 0 auto 30px auto; 
    border-radius: 8px;
    max-width: 900px; 
}

.post-header {
    display: flex;
    align-items: center;
    gap: 25px; 
    margin-bottom: 25px;
}

.post-logo {
    width: 90px; 
    height: auto;
    object-fit: contain;
}

.post-info {
    border-left: 3px solid var(--accent-green);
    padding-left: 25px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--bg-claro);
    text-transform: uppercase;
    margin: 0 0 8px 0;
    line-height: 1.1;
}

.post-meta {
    font-family: monospace, sans-serif;
    font-size: 16px;
    color: #999; 
    margin: 0;
}

.accent-blue {
    color: var(--accent-blue);
    font-weight: bold;
}

.post-content p {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    color: var(--bg-claro);
    line-height: 1.6;
    margin: 0;
}