/* --- Radio MusicStar Magazin Startseite CSS --- */

.msm-magazine-wrapper {
    font-family: inherit;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px 10px;
}

/* Hero Section */
.msm-hero-section {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    gap: 30px;
    align-items: center;
}

.msm-hero-content {
    flex: 1;
    min-width: 280px;
}

.msm-live-badge {
    background: #e94560;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.msm-hero-content h2 {
    font-size: 2.2rem;
    margin: 15px 0 10px 0;
    color: #fff;
    line-height: 1.2;
}

.msm-hero-content p {
    color: #a0aec0;
    margin-bottom: 20px;
}

.msm-hero-actions {
    display: flex;
    gap: 15px;
}

.msm-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}

.msm-btn-primary {
    background: #e94560;
    color: #fff;
}
.msm-btn-primary:hover { background: #d73852; color: #fff; }

.msm-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.msm-btn-secondary:hover { background: rgba(255,255,255,0.2); color: #fff; }

.msm-hero-widget {
    flex: 1;
    min-width: 280px;
}

.msm-player-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.msm-player-box h3 {
    margin-top: 0;
    color: #fff;
}

.msm-now-playing {
    font-size: 0.95rem;
    color: #00d2ff;
    margin: 10px 0;
    font-weight: 500;
}

/* Mini Highlights Grid */
.msm-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.msm-card-mini {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s;
}

.msm-card-mini:hover {
    transform: translateY(-3px);
}

.msm-card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.msm-card-mini h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.msm-card-mini p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Nachrichten Magazin Sektion */
.msm-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #edf2f7;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.msm-section-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.msm-all-news {
    text-decoration: none;
    font-weight: bold;
    color: #e94560;
}

.msm-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.msm-news-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Das erste Element spannt sich über 2 Spalten als Aufmacher */
.msm-news-item.msm-featured {
    grid-column: span 2;
    flex-direction: row;
}

.msm-news-item.msm-featured .msm-news-img {
    flex: 1;
    min-height: 220px;
}

.msm-news-item.msm-featured .msm-news-content {
    flex: 1;
}

.msm-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.msm-news-content {
    padding: 20px;
}

.msm-news-date {
    font-size: 0.8rem;
    color: #a0aec0;
    display: block;
    margin-bottom: 5px;
}

.msm-news-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.msm-news-content h4 a {
    color: #2d3748;
    text-decoration: none;
}
.msm-news-content h4 a:hover {
    color: #e94560;
}

/* Responsive Anpassungen */
@media(max-width: 900px) {
    .msm-news-grid {
        grid-template-columns: 1fr;
    }
    .msm-news-item.msm-featured {
        grid-column: span 1;
        flex-direction: column;
    }
}