/* ==================== BLOG SPECIFIC STYLES ==================== */
.hero-listen-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-listen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.3);
}

/* Float Audio Player */
#blog-audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(22, 163, 74, 0.1);
}

#blog-audio-player.active {
    transform: translateY(0);
}

.player-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: #16a34a;
    width: 0%;
    transition: width 0.3s ease;
}

.btn-player {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #f3f4f6;
    color: #4b5563;
}

.btn-player:hover {
    background: #16a34a;
    color: white;
}

/* Typography Overrides for Article */
.prose h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.reading-highlight {
    background: rgba(22, 163, 74, 0.1);
    border-radius: 4px;
    transition: background 0.3s ease;
}
