/* Стили для Сетка радио — красивый дизайн карточек */
.sr-container {
    display:flex;
    flex-wrap:wrap;
    gap:26px;
    justify-content:center;
    align-items:flex-start;
    margin: 0 auto 30px;
}
.sr-card {
    width:360px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.28);
    background:transparent;
    transition:transform .18s ease;
}
.sr-card:hover { transform:translateY(-6px); }
.sr-thumb img {
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}
.sr-bottom {
    padding:18px;
    background: linear-gradient(180deg, #1a1233 0%, #241b3e 100%);
    text-align:center;
}
.sr-title { font-weight:800; font-size:22px; color:#fff; margin-bottom:8px; }
.sr-title a { color:#fff; text-decoration:none; }
.sr-title a:hover { text-decoration:underline; }
.sr-time { color:#fff; font-size:16px; font-weight:600; }
/* responsive */
@media (max-width:900px){ .sr-card{ width:48%; } }
@media (max-width:600px){ .sr-card{ width:100%; } .sr-thumb img{ height:220px; } }
.sr-empty { color:#fff; padding:10px; background:#111; border-radius:8px; display:inline-block; }