#fw-section-header {

.header__link {
  font-weight: 700;
  text-transform: uppercase;
}
.header__dropdown-link{
  font-weight: 700;
  text-transform: uppercase;
}
}
#fw-section-custom-html-6e357c21-ce7b-40a2-a5ef-78cdb4a58d7a {

/* Base styles */
:root {
    --color-primary: #00B3D4;
    --color-background: #ffffff;
    --color-text: #333333;
    --color-on-background: #333333;
    --border-radius: 15px;
}

/* Grid Layout */
.podcasts-grid {
    padding: 16px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Podcast Card */
.podcast-card {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--color-background);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    padding: 16px;
}

.podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.podcast-card__image {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #000;
    margin-bottom: 16px;
    border-radius: 15px;
}

.podcast-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.podcast-card__banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(128, 0, 128, 0.8);
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.podcast-card__title {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

.podcast-card__links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.podcast-card__link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    background-color: rgba(0, 179, 212, 0.1);
    transition: background-color 0.2s ease;
}

.podcast-card__link:hover {
    background-color: rgba(0, 179, 212, 0.2);
}

/* Responsive Design */
@media (min-width: 640px) {
    .podcasts-grid {
        padding: 24px;
    }
    
    .grid {
        gap: 32px;
    }
    
    .podcast-card__title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .podcasts-grid {
        padding: 32px;
    }
    
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
}
}




#fw-section-custom-html-d67fbea3-3cd2-467f-8a4c-cf6a3c4913b6 {

/* Base styles */
:root {
    --color-primary: #00B3D4;
    --color-background: #ffffff;
    --color-text: #333333;
    --border-radius: 15px;
}

/* Grid Layout */
.shows-grid {
    padding: 16px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Show Card */
.show-card {
    width: 100%;
}

.show-card__image {
    position: relative;
    aspect-ratio: 400/600;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.show-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 15px;
}

.show-card__banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(128, 0, 128, 0.8);
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 15px 15px 0 0;
}

.show-card__title {
    margin: 12px 0 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

/* Responsive Design */
@media (min-width: 640px) {
    .shows-grid {
        padding: 24px;
    }
    
    .grid {
        gap: 32px;
    }
    
    .show-card__title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .shows-grid {
        padding: 32px;
    }
    
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
  } 
}
#fw-section-custom-html-fd7388cb-38e5-406d-92c7-fd67c71c4dc2 {

/* Base styles */
:root {
    --color-primary: #00B3D4;
    --color-background: #ffffff;
    --color-text: #333333;
    --border-radius: 15px;
}

/* Grid Layout */
.shows-grid {
    padding: 16px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Show Card */
.show-card {
    width: 100%;
}

.show-card__image {
    position: relative;
    aspect-ratio: 400/600;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.show-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 15px;
}

.show-card__banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(128, 0, 128, 0.8);
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 15px 15px 0 0;
}

.show-card__title {
    margin: 12px 0 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

/* Responsive Design */
@media (min-width: 640px) {
    .shows-grid {
        padding: 24px;
    }
    
    .grid {
        gap: 32px;
    }
    
    .show-card__title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .shows-grid {
        padding: 32px;
    }
    
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
} 
}