.podcasts-section .title {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px;
}

.podcast-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.podcast-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.podcast-img-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Overlay oscuro elegante */
.podcast-img-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
}

/* Título encima de la imagen */
.podcast-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
}

.podcast-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

/* Hover elegante */
.podcast-card:hover img {
    transform: scale(1.05);
}

.podcast-card:hover {
    transform: translateY(-5px);
}

.podcast-list-section .title {
    font-weight: 700;
    font-size: 28px;
}

/* Card */
.podcast-item-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.podcast-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Imagen */
.podcast-thumb {
    position: relative;
    overflow: hidden;
}

.podcast-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.podcast-item-card:hover img {
    transform: scale(1.05);
}

/* Overlay sutil */
.thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* Duración estilo YouTube */
.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Info */
.podcast-info {
    padding: 16px;
}

.podcast-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.podcast-info .meta {
    font-size: 13px;
    color: #777;
}

/* Link limpio */
.podcast-link {
    text-decoration: none;
    color: inherit;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(144, 0, 0, 0.9);
    color: #fff;
    padding: 12px 18px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.podcast-item-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.podcast-detail {
    max-width: 1200px;
}
.podcast-header{
	width: 100%;
}

/* VIDEO */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
}

/* HEADER */
.podcast-detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.podcast-meta {
    font-size: 14px;
    color: #777;
}

.meta-left .author {
    font-weight: 600;
    color: #900000;
}

.meta-left .dot {
    margin: 0 8px;
}

/* REDES */
.meta-right a {
    margin-left: 10px;
    color: #555;
    font-size: 20px;
    transition: 0.3s;
}

.meta-right a:hover {
    color: #900000;
}

/* CONTENIDO */
.podcast-content {
    margin-top: 10px;
	width: 100%;
}

.descripcion {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
}

.detalle {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
}