/* Stil general pentru toate shortcode-urile radio90hit */
.radio90hit * {
    box-sizing: border-box;
}

.radio90hit {
    --primary-bg: #1e1e1e;
    --card-bg: rgba(60, 0, 80, 0.4);
    --text: #ffffff;
    --accent: #00aaff;
    --muted: #cccccc;
    font-family: system-ui, sans-serif;
    color: var(--text);
}

/* ------------ [radio90hit_program] ------------ */
.radio90hit .program-day {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.radio90hit .program-day h3 {
    color: #ffccff;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Card emisiune din program */
.radio90hit .program-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    color: var(--text);
}

.radio-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.radio-show-card {
    background: rgba(60, 0, 80, 0.4);
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.radio-show-card .thumb img {
    width: 100% !important;
    height: 160px !important;
    object-fit: cover !important;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.radio-show-card h4 a {
    font-size: 1.05rem;
    color: #00c8ff;
    text-decoration: none;
    font-weight: bold;
}

.radio-show-card .presenter {
    font-style: italic;
    color: #bbbbbb;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.short-desc-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #eee;
}


.radio90hit .program-card .info {
    flex: 1;
}

.radio90hit .program-card .title a {
    color: var(--accent);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.05rem;
}

.radio90hit .program-card .presenter {
    color: var(--muted);
    font-style: italic;
    margin-bottom: 0.25rem;
}

.radio90hit .program-card .desc {
    color: var(--text);
    font-size: 0.9rem;
}

/* === Stil pentru [radio90hit_shows_now] === */
.radio90hit.now-show {
    padding: 1rem;
    font-family: system-ui, sans-serif;
    color: #fff;
}

.now-show-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    font-size: 0.95rem;
}

.now-show-card .now-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.now-show-card .now-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.now-show-card .now-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.now-show-card h4 {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
    line-height: 1.2;
}

.now-show-card h4 a {
    color: #00c8ff;
    text-decoration: none;
    font-weight: 600;
}

.now-show-card h4 a:hover {
    color: #ffaa00;
}

.now-show-card .now-presenter {
    font-style: italic;
    color: #bbbbbb;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.now-show-card .now-desc {
    font-size: 0.9rem;
    color: #eee;
    line-height: 1.4;
    max-height: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0.3rem;
}

.now-show-card .now-readmore {
    font-size: 0.85rem;
    color: #00c8ff;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.2rem;
}

.now-show-card .now-readmore:hover {
    color: #ffaa00;
}

/* Responsive pentru mobil */
@media (max-width: 600px) {
    .now-show-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .now-show-card img {
        width: 100%;
        height: 160px;
    }
}

/* === Stil pentru [radio90hit_shows] === */
.radio90hit.shows-wrapper {
    margin: 2rem auto;
    max-width: 1200px;
    padding: 1rem;
}

.radio-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.radio-show-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.radio-show-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.radio-show-card h4 a {
    font-size: 1.05rem;
    color: #00c8ff;
    text-decoration: none;
    font-weight: bold;
}

.radio-show-card .presenter {
    font-style: italic;
    color: #bbbbbb;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.short-desc-wrapper {
    position: relative;
}

.short-desc-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #eee;
    max-height: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.short-desc-text.expanded {
    max-height: none;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.see-more-btn {
    background: none;
    color: #00c8ff;
    font-size: 0.85rem;
    font-weight: bold;
    border: none;
    padding: 0;
    margin-top: 0.3rem;
    cursor: pointer;
}

.see-more-btn.active {
    color: #ffaa00;
}

.social-links {
    margin-top: 0.5rem;
}

.social-links a {
    margin-right: 8px;
    color: #fff;
    display: inline-block;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #00c8ff;
}