/* ==========================================================================
   PODCAST STRANICA - SPECIFIČNI STILOVI
   ========================================================================== */

/* ---------- PAGE WRAPPER ---------- */
.podcast-page-wrapper {
    background-color: var(--acdc-bg-light);
    min-height: 70vh;
}

/* ---------- PODCAST PLAY BADGE ---------- */
.podcast-play-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    background-color: var(--acdc-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.news-card:hover .podcast-play-badge {
    transform: scale(1.15);
    background-color: var(--acdc-red-hover);
}

/* ---------- PODCAST SINGLE CARD ---------- */
.podcast-single-card {
    background-color: #ffffff;
    border-radius: 16px;
}

.podcast-single-share {
    border-color: #f0f0f0 !important;
}

/* ---------- PODCAST CONTENT ---------- */
.podcast-single-content {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #333333;
}

.podcast-single-content iframe {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
    min-height: 380px;
    border: none;
    border-radius: 12px;
    margin: 1rem 0 2rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
    .podcast-single-content iframe {
        min-height: 220px;
    }
}

.podcast-single-content p {
    margin-bottom: 1.4rem;
}

.podcast-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* ---------- META PODACI (ako nisu u master) ---------- */
.news-card-meta {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.news-card-meta i {
    color: #c82333;
}

.news-read-more {
    color: #c82333;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.news-read-more:hover {
    color: #a71d2a;
    text-decoration: none;
}

.news-read-more i {
    transition: transform 0.2s ease;
}

.news-card:hover .news-read-more i {
    transform: scale(1.2);
}