/* other-channels.css */
@import url('/tailwind.css');
@import url('/fonts.css');

.channels-showcase {
    width: 100%;
    padding: 3rem 0;
    background-color: black;
    text-transform: uppercase;
    letter-spacing: 0.031rem;
}

.channels-title {
    font-family: var(--font-inter);
    font-weight: 900;
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-rendering: optimizeLegibility;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 70rem;
    margin: 0 auto;
}

.channels-grid-row1 {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 0;
}

.channels-grid-row2 {
    display: flex;
    justify-content: center;
    gap: 6rem;
}

.channels-grid-row2 .channel-item {
    flex: 0 0 auto;
}

.channel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.channel-item:hover {
    opacity: 0.7;
}

.channel-item img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Mobile Portrait | up to 480px */
@media (max-width: 480px) and (orientation: portrait) {
    .channels-showcase {
        padding: 2rem 0;
    }
    
    .channels-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .channel-item {
        height: 4rem;
    }
}

/* Mobile Landscape | up to 950px */
@media (max-width: 950px) and (orientation: landscape) {
    .channels-showcase {
        padding: 1.5rem 0;
    }
    
    .channels-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .channels-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .channel-item {
        height: 3.5rem;
    }
}

/* Mobile Large Portrait | 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) and (orientation: portrait) {
    .channels-showcase {
        padding: 2.25rem 0;
    }
    
    .channels-title {
        font-size: 1.75rem;
        margin-bottom: 2.25rem;
    }
    
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .channel-item {
        height: 5rem;
    }
}

/* Tablet Portrait | 601px - 1024px */
@media (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
    .channels-showcase {
        padding: 2.75rem 0;
    }
    
    .channels-title {
        font-size: 2.25rem;
        margin-bottom: 2.75rem;
    }
    
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .channel-item {
        height: 6rem;
    }
}

/* Tablet Landscape | 951px - 1366px */
@media (min-width: 951px) and (max-width: 1366px) and (orientation: landscape) {
    .channels-showcase {
        padding: 2.5rem 0;
    }
    
    .channels-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .channels-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .channel-item {
        height: 6rem;
    }
}