﻿/* Audio Player Styles */
.audio-player-container {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audio-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.audio-icon {
    width: 18px;
    height: 18px;
    fill: #1a472a;
}

.audio-title {
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.audio-controls {
    flex: 1;
}

audio {
    width: 100%;
    height: 32px;
}

.audio-benefits {
    display: none;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

    .article-content h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 2rem 0 1rem;
        color: #1a472a;
    }

    .article-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin: 1.5rem 0 0.75rem;
        color: #2d5a3d;
    }

    .article-content p {
        margin-bottom: 1.2rem;
    }

    .article-content ul {
        margin: 1rem 0 1.5rem 2rem;
    }

    .article-content li {
        margin-bottom: 0.5rem;
    }

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.cta-section {
    background: #f0f7f4;
    border-left: 4px solid #1a472a;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

    .cta-section h3 {
        color: #1a472a;
        margin-bottom: 0.5rem;
    }

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .audio-player-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .audio-header {
        justify-content: center;
    }
}

