/* xl - DESKTOP STYLES */ 
/* Layout Wrapper */
.listen-live-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.radio-header {
    text-align: center;
    margin-bottom: 40px;
}

.radio-header h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

/* Two-Column Player Grid */
.radio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .radio-grid {
        grid-template-columns: 1fr;
    }
}

/* Now Playing Main Card */
.now-playing-card {
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.album-art-wrapper img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.track-info {
    margin-bottom: 25px;
}

.live-badge {
    background: #e53e3e;
    color: #fff;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    letter-spacing: 1px;
}

.track-info h2 {
    font-size: 1.8rem;
    margin: 10px 0 5px 0;
    color: #fff;
}

.track-info h3 {
    font-size: 1.2rem;
    color: #a0aec0;
    margin: 0;
}

/* HTML5 Player adjustments */
.audio-player-container audio {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* WhatsApp Button styling */
.whatsapp-container {
    margin-top: 25px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.2s, background 0.2s;
}

.whatsapp-btn:hover {
    background: #1ebd56;
    transform: translateY(-2px);
}

/* Recent Track List Sidebar */
.history-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
}

.history-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 10px;
}

#track-history {
    list-style: none;
    padding: 0;
    margin: 0;
}

#track-history li {
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.95rem;
}

#track-history li:last-child {
    border-bottom: none;
}

/* Blog Posts Grid Styling */
.radio-posts-section {
    border-top: 2px solid #edf2f7;
    padding-top: 40px;
}

.radio-posts-section h2 {
    margin-bottom: 25px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 900px) {
    .posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

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

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-date {
    font-size: 0.8rem;
    color: #a0aec0;
    margin-bottom: 8px;
}

.post-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.post-content h3 a {
    color: #2d3748;
    text-decoration: none;
}

.post-content p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.read-more {
    margin-top: auto;
    font-weight: bold;
    color: #3182ce;
    text-decoration: none;
    font-size: 0.9rem;
}

