/* ====== Latest Podcasts Slider ====== */
.latestPodcasts h2 {
    text-align: center;
    font-size: 30px;
    padding-top: 10px;
}
.latestPodcasts h3 {
    text-align: center;
    /* font-size: 30px; */
    padding-top: 10px;
}

.latestPodcasts .slider {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 20px;
}

.latestPodcasts .slide {
    flex: 0 0 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    background: #fff;
    border: 1px solid #000;
}

.latestPodcasts .slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.latestPodcasts .slide:hover {
    transform: scale(1.05);
}

.latestPodcasts .videoDetails {
    padding: 10px;
    text-align: center;
}

.latestPodcasts .videoDetails h4 {
    font-size: 15px;
    margin: 10px 0;
}

.latestPodcasts .videoDetails p {
    font-size: 13px;
}

/* ====== Month Filter ====== */
.podcastGallery .monthFilter {
    text-align: left;
    margin: 20px 0px;
}

.podcastGallery .monthFilter label {
    font-weight: bold;
    margin-right: 10px;
}

.podcastGallery .monthFilter select {
    padding: 5px 10px;
    font-size: 14px;
}

/* ====== Horizontal Podcast Boxes ====== */
.podcastHorizontalGrid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0px;
}

.podcastBox {
    /* display: flex;
    align-items: center; */
    background: #cecdcd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.podcastBox:hover {
    transform: translateY(-5px);
}

.podcastBox img {
    width: 120px;
    height: 80px;
    object-fit: cover;
}

.podcastDetails {
    padding: 10px;
    flex: 1;
}

.podcastDetails h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.podcastDetails p,.podcastDetails a {
    font-size: 15px;
    margin: 0;
}
/* Media Buttons Container */
.media-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Video and Audio Buttons */
.btn-video,
.btn-audio {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-video:hover,
.btn-audio:hover {
    background-color: #555;
}

/* Podcast Box Styling */
.podcastBox {
    background: #dbd8d8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
    transition: transform 0.3s ease;
}

.podcastBox:hover {
    transform: translateY(-5px);
}

/* Podcast Image Styling */
.podcastBox img {
    width: 300px;
    height: auto;
    object-fit: cover;
    
}

/* Podcast Details */
.podcastDetails {
    padding: 10px;
}

/* YouTube Link Styling */
.youtubeLink .btn-link {
    color: #000;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
}

.youtubeLink .btn-link:hover {
    background-color: #ddd;
}
.no-podcasts-message {
    display: none;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #d9534f; /* Optional: Add color to the message */
    background-color: #f8d7da; /* Optional: Add a background color to make it more noticeable */
    border: 1px solid #f5c6cb; /* Optional: Add border to match background */
    border-radius: 5px;
    margin-top: 20px; /* Optional: Adds spacing from other elements */
}
