/* Beyond Beauty Podcast Carousel Styles */
.beyond-beauty-podcast-container {
    font-family: "Arial", sans-serif;
    margin: 40px 0;
    position: relative;
}

.beyond-beauty-podcast-header {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.beyond-beauty-podcast-carousel {
    margin-bottom: 15px;
}

.beyond-beauty-episode-slide {
    padding: 0 10px;
}

.beyond-beauty-episode-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.beyond-beauty-episode-content {
    background: white;
    color: #576D48;
    padding: 20px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.beyond-beauty-episode-image {
    margin-bottom: 15px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beyond-beauty-episode-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.beyond-beauty-brand-logo {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    color: #576D48;
}

.with-h2o {
    font-size: 12px;
    display: block;
    font-style: normal;
    margin-top: 5px;
}

.beyond-beauty-episode-title {
    font-size: 22px;
    font-weight: 400;
    margin: 10px 0;
}

.beyond-beauty-episode-number {
    font-size: 14px;
    margin-top: 10px;
}

.beyond-beauty-episode-info {
    padding: 20px;
    color: white;
}

.beyond-beauty-episode-info h4 {
    font-size: 18px;
    margin: 0 0 5px 0;
}

.beyond-beauty-episode-info h5 {
    font-size: 16px;
    margin: 0 0 15px 0;
    opacity: 0.8;
}

.beyond-beauty-episode-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.beyond-beauty-play-wrapper {
    padding: 0 20px 20px;
    margin-top: auto;
}

.beyond-beauty-play-button {
    background-color: #91A87E;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: auto;
}

.beyond-beauty-play-button:hover {
    background-color: #7a9267;
}

.beyond-beauty-play-icon {
    margin-right: 10px;
}

.beyond-beauty-progress-bar {
    height: 6px;
    background-color: #D9D9D9;
    margin: 20px 0;
    border-radius: 3px;
    position: relative;
}

.beyond-beauty-progress-bar .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #000;
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 0;
}

.beyond-beauty-navigation {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.beyond-beauty-prev-button,
.beyond-beauty-next-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.beyond-beauty-prev-button:hover,
.beyond-beauty-next-button:hover {
    background-color: #f5f5f5;
}

/* Video Modal */
.beyond-beauty-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow: auto;
}

.beyond-beauty-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
}

.beyond-beauty-close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}

.beyond-beauty-video-container {
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    height: 0;
    overflow: hidden;
}

.beyond-beauty-video-container iframe,
.beyond-beauty-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .beyond-beauty-episode-content {
        padding: 15px;
    }
    
    .beyond-beauty-episode-info {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .beyond-beauty-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .beyond-beauty-episode-title {
        font-size: 18px;
    }
}