/* SINGLE POST - Header Info */
.podcast-single-info {
    padding: 0 20px;
}

.podcast-single-titulo {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    margin-bottom: 15px;
}

.podcast-single-autor {
    color: #e41e1e;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.podcast-single-descripcion {
    color: white;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.podcast-single-descripcion p {
    margin-bottom: 15px;
}

.podcast-single-sociales {
    display: flex;
    gap: 15px;
}

/* Imagen del programa en single */
.podcast-single-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-single-imagen img {
    max-width: 100%;
    height: auto;
}


/* Box del Autor */
.podcast-author-box {
    background-color: #f5f5f5;
    border-left: 4px solid #3d1257;
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.podcast-author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #3d1257;
}

.podcast-author-name {
    font-size: 22px;
    font-weight: 700;
    color: #3d1257;
    margin-bottom: 10px;
}

.podcast-author-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .podcast-author-box {
        padding: 20px;
    }
    
    .podcast-author-avatar {
        width: 100px;
        height: 100px;
    }
    
    .podcast-author-name {
        font-size: 18px;
    }
}


/* Botón Ver Más Episodios */
.btn-ver-mas-episodios {
    display: inline-block;
    background-color: #3d1257;
    color: white;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
} 

.btn-ver-mas-episodios:hover {
    background-color: #320f49;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 18, 87, 0.3);
}