/* MBS Sermon Archive Styles */

.mbs-sermon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mbs-sermon-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.mbs-sermon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.sermon-info {
    padding: 1.5rem;
}

.sermon-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.sermon-info .speaker {
    display: block;
    font-size: 0.9rem;
    color: var(--color-accent-gold, #D4AF37);
    margin-bottom: 1rem;
    font-weight: 600;
}

.btn-watch {
    display: inline-block;
    background: var(--color-accent-gold, #D4AF37);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-watch:hover {
    background: #b8972f;
    color: #fff;
}

/* Media Players */
.mbs-sermon-media-wrapper {
    margin-bottom: 2.5rem;
    background: #fbf9f4;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #eee;
}

.sermon-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.sermon-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sermon-audio-container h4 {
    margin-top: 0;
    font-size: 1rem;
    color: #666;
}

.sermon-audio-container audio {
    width: 100%;
}

.btn-pdf-download {
    display: inline-block;
    margin-top: 1.5rem;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-pdf-download:hover {
    background: #000;
}
