/* Mejorar legibilidad de textos largos */
.single-post .entry-content {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 2em;
}

/* Destacar citas históricas */
.wp-block-quote {
    border-left: 4px solid #D4AF37;
    padding-left: 20px;
    font-style: italic;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 30px 0;
}

/* Botones de podcast destacados */
.podcast-button {
    background: linear-gradient(45deg, #8B4513, #D4AF37);
    color: white;
    padding: 9px 11px;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.podcast-button:hover {
    transform: translateY(-2px);
    color: white;
}

/* Timeline para eventos históricos */
.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background: #D4AF37;
    border-radius: 50%;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .single-post .entry-content {
        font-size: 16px;
    }
    
    .podcast-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}
.custom-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}