.radio-card { 
    display:flex; 
    align-items:center; 
    padding:12px; 
    border-radius:8px; 
    background:#fff; 
    box-shadow:0 2px 6px rgba(0,0,0,0.1); 
    transition:transform .2s, box-shadow .2s; 
    text-decoration:none; 
    color:inherit; 
    height:100%; 
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: var(--color-primary);

    /* Márgenes arriba y abajo */
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.section-name {
    background-color: #f8fafc;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    color: var(--color-primary);
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}
.radio-card:hover { 
    transform:translateY(-4px); 
    box-shadow:0 6px 16px rgba(0,0,0,0.2); 
}
.meta-line {
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.radio-card img { 
    width:70px; 
    height:70px; 
    border-radius:8px; 
    object-fit:contain; 
    margin-right:12px; 
}
.radio-card-content { 
    flex:1; 
    min-width:0; 
}
.radio-card-content h6 { 
    font-size:1rem; 
    font-weight:600; 
    margin:0; 
    overflow:hidden; 
    text-overflow:ellipsis; 
    white-space:nowrap; 
}
.radio-card-content small { 
    font-size:0.85rem; 
    color:#666; 
    white-space:nowrap; 
    overflow:hidden; 
    text-overflow:ellipsis; 
    display:block; 
}
.category-info { 
    color:#007bff; 
}
