/* =========================================================
   01. Radio Station Shelf
   File: wwwroot/css/trendeer-listening.css
   ========================================================= */

.tl-radio-shelf {
    background: #111827 !important;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px !important;
    color: #f5f7fb;
    padding: 22px;
    overflow: hidden;
}

.tl-radio-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

    .tl-radio-head h2 {
        margin: 0;
        font-size: 22px;
        letter-spacing: -.03em;
    }

    .tl-radio-head p {
        margin: 5px 0 0;
        color: #9ca3af;
        font-size: 13px;
    }

    .tl-radio-head .mud-button {
        color: #c4b5fd !important;
        text-transform: none;
        font-weight: 700;
    }

.tl-radio-feature {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background: radial-gradient(circle at top right, rgba(139,92,246,.22), transparent 42%), linear-gradient(135deg, #192133, #111827);
    border: 1px solid rgba(139,92,246,.22);
    margin-bottom: 18px;
}

.tl-radio-art {
    width: 150px;
    height: 150px;
    border-radius: 22px;
    background: rgba(139,92,246,.12);
    border: 1px solid rgba(139,92,246,.22);
    display: grid;
    place-items: center;
    overflow: hidden;
}

    .tl-radio-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .tl-radio-art .mud-icon-root {
        font-size: 52px;
        color: #c4b5fd;
    }

.tl-radio-info {
    min-width: 0;
}

.tl-live-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    background: rgba(34,197,94,.14);
    border: 1px solid rgba(34,197,94,.35);
    color: #86efac;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.tl-radio-info h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
}

.tl-radio-info p {
    margin: 8px 0 16px;
    color: #9ca3af;
}

.tl-radio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 12px;
}

.tl-radio-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #192133;
    border: 1px solid rgba(255,255,255,.06);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

    .tl-radio-card:hover {
        transform: translateY(-3px);
        border-color: rgba(139,92,246,.45);
        background: rgba(139,92,246,.12);
    }

.tl-radio-card-art {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(139,92,246,.12);
    display: grid;
    place-items: center;
    overflow: hidden;
}

    .tl-radio-card-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .tl-radio-card-art .mud-icon-root {
        color: #c4b5fd;
    }

.tl-radio-card-text {
    min-width: 0;
}

    .tl-radio-card-text strong {
        display: block;
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tl-radio-card-text small {
        display: block;
        color: #9ca3af;
        margin-top: 3px;
        font-size: 11px;
    }

@media(max-width: 900px) {
    .tl-radio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-radio-feature {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .tl-radio-art {
        width: 110px;
        height: 110px;
    }
}

@media(max-width: 600px) {
    .tl-radio-shelf {
        padding: 16px;
    }

    .tl-radio-head {
        flex-direction: column;
    }

    .tl-radio-feature {
        grid-template-columns: 1fr;
    }

    .tl-radio-grid {
        grid-template-columns: 1fr;
    }

    .tl-radio-info h3 {
        font-size: 22px;
    }
}
