.station-title h1,
.podcast-title h1 {
    font-weight: 700;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.station-title p, 
.podcast-title p {
    font-size: 1.1rem;
    color: #343a40;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
}

/* Program list container (kept simple for Tailwind layout) */
.programs-grid {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Individual program item */
.program-item {
    padding: 20px 0 0 0;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Program title / heading */
.program-title,
.podcast-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Program description */
.program-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Images inside program items */
.program-item .img-fluid {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hover effect on image */
.program-item:hover .img-fluid {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.radio-programs-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.5rem;
}

.radio-programs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radio-programs-img:hover .program-overlay {
    opacity: 1;
}

.program-content {
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.program-content .program-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.program-content .program-description {
    font-size: 0.875rem;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

/* Spotify / podcast embeds */
.spotify-podcast h3.podcast-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.spotify-embed-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.spotify-embed-container iframe {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 12px;
}