/* ==========================================================================
   PODCAST PAGE STYLES
   ========================================================================== */

/* Glavni omotač stranice */
.podcast-page-wrapper {
    background-color: #f8f9fa;
    min-height: 70vh;
}

/* Kontejner slike */
.news-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.news-card-img-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* Hover efekat na sliku */
.news-card:hover .news-card-img {
    transform: scale(1.06);
    filter: brightness(0.9);
}

/* Ikona / Bedž u gornjem desnom uglu slike */
.podcast-play-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    background-color: #c82333; /* ACDC crvena boja */
    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: #a71d2a;
}

/* Dizajn kartice */
.news-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background-color: #ffffff;
    border-radius: 12px !important;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12) !important;
}

/* Meta podaci (Datum i Autor) */
.news-card-meta {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.news-card-meta i {
    color: #c82333;
}

/* Naslov podkasta */
.news-card-title {
    line-height: 1.4;
    font-size: 1.1rem;
}

.news-card-title a {
    color: #212529;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Ograničenje na 2 reda */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a:hover {
    color: #c82333;
    text-decoration: none;
}

/* Opis / Teaser */
.news-card-teaser {
    line-height: 1.6;
    color: #555555;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Ograničenje na 3 reda */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Dugme Poslušaj epizodu */
.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);
}

/* Paginacija */
.news-pagination .page-item .page-link {
    color: #333333;
    border: none;
    margin: 0 3px;
    border-radius: 6px;
    font-weight: 600;
    padding: 8px 14px;
}

.news-pagination .page-item.active .page-link {
    background-color: #c82333;
    color: #ffffff;
}

.news-pagination .page-item .page-link:hover {
    background-color: #e9ecef;
    color: #c82333;
}
/* Container i Kartica Podkasta */
.podcast-single-card {
    background-color: #ffffff;
    border-radius: 16px;
}

/* Traka za deljenje */
.podcast-single-share {
    border-color: #f0f0f0 !important;
}

.viber-button {
    display: inline-block;
    transition: transform 0.2s ease;
}

.viber-button:hover {
    transform: scale(1.1);
}

/* Tipografija i Unutrašnji sadržaj */
.podcast-single-content {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #333333;
}

/* YouTube Video Stil - Istaknut u prvom planu */
.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;
}