.audio-tour-container-39414c4f {
    font-family: system-ui, -apple-system, sans-serif;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 450px;
    margin: 20px auto;
}

.audio-tour-header-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 20px;
}

.audio-tour-number {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 6px;
}

.audio-tour-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
    color: #1a1a1a;
}

.audio-tour-title span {
    display: block;
}

.audio-tour-title .line-2 {
    font-size: 14px; /* Reduced from 18px to make it smaller */
    font-weight: 500;
    color: #666;
    margin-top: 4px;
}

/* Custom Audio Player */
.audio-player-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px; /* Added margin-bottom to separate from carousel below */
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #3b82f6;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.play-btn:hover {
    transform: scale(1.05);
}

.play-btn:active {
    transform: scale(0.95);
}

.progress-bar-container {
    flex-grow: 1;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: #3b82f6;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.hidden-audio {
    display: none;
}

/* Image Carousel CSS */
.audio-tour-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3/4;
}

.carousel-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
