/**
 * Single Channel Styles
 * Ella Radio Theme
 */

/* ==============================================
   BREADCRUMB
============================================== */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item:hover {
    color: hsl(var(--primary));
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #ccc;
    flex-shrink: 0;
}

/* ==============================================
   CHANNEL HERO
============================================== */
.channel-detail-hero {
    padding: 1.5rem 0 2rem;
}

@media (min-width: 768px) {
    .channel-detail-hero {
        padding: 2rem 0 3rem;
    }
}

.channel-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .channel-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
}

.channel-hero-cover {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .channel-hero-cover {
        justify-content: flex-start;
    }
}

.channel-hero-cover img {
    width: 100%;
    max-width: 28rem;
    aspect-ratio: 1;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.channel-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.channel-detail-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

@media (min-width: 768px) {
    .channel-detail-title {
        font-size: 3rem;
    }
}

.channel-play-btn {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .channel-play-btn {
        width: auto;
    }
}

/* ==============================================
   INFO CARDS
============================================== */
.channel-info-cards {
    padding: 3rem 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .info-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.info-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .info-card {
        padding: 1.5rem;
    }
}

.info-card-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 auto 0.75rem;
    color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .info-card-icon {
        width: 2rem;
        height: 2rem;
        margin-bottom: 1rem;
    }
}

.info-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card-content {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

@media (min-width: 768px) {
    .info-card-content {
        font-size: 1.125rem;
    }
}

/* ==============================================
   ABOUT SECTION
============================================== */
.channel-about-section {
    padding: 2rem 0 3rem;
}

.channel-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

@media (min-width: 768px) {
    .channel-section-title {
        font-size: 2rem;
    }
}

.channel-description-content {
    max-width: 100%;
}

.channel-description-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .channel-description-content p {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
}

.channel-description-content strong {
    color: #333;
    font-weight: 600;
}

/* ==============================================
   RELATED CHANNELS
============================================== */
.related-channels-section {
    padding: 2rem 0 4rem;
}

.related-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .related-channels-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.related-channel-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
}

.related-channel-card:hover {
    transform: scale(1.05);
}

.related-channel-image {
    position: relative;
    aspect-ratio: 1;
}

.related-channel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-channel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.related-channel-name {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .related-channel-name {
        font-size: 1rem;
    }
}

.related-channel-genre {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (min-width: 768px) {
    .related-channel-genre {
        font-size: 0.875rem;
    }
}

/* Channel Play Button States */
.channel-play-btn .pause-text,
.channel-play-btn .pause-icon {
    display: none;
}

.channel-play-btn.playing .play-text,
.channel-play-btn.playing .play-icon {
    display: none;
}

.channel-play-btn.playing .pause-text,
.channel-play-btn.playing .pause-icon {
    display: inline;
}

/* SVG Icon Swap */
.channel-play-btn svg path.pause-path {
    display: none;
}

.channel-play-btn.playing svg path.play-path {
    display: none;
}

.channel-play-btn.playing svg path.pause-path {
    display: block;
}
