/* Preserve paragraph and line breaks entered in admin textareas. */
.preserve-lines,
.member-bio {
    white-space: pre-line;
    overflow-wrap: anywhere;
    word-break: normal;
}

.member-card > img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #eef4f1;
}

.member-content {
    padding: 22px;
}

.member-content h2 {
    margin: 0 0 8px;
}

.member-role {
    margin: 0 0 18px;
    color: #075c32;
    font-size: 1.05rem;
}

.member-bio {
    font-size: 1rem;
    line-height: 1.9;
}

.news-detail .lead {
    margin-bottom: 24px;
}

.news-detail .article {
    line-height: 1.9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.video-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfeae4;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(23, 59, 41, 0.08);
}

.video-frame {
    display: flex;
    width: 100%;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-frame video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 75vh;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #000;
}

.video-content {
    padding: 18px 22px 22px;
}

.video-content h2 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.45;
}

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

    .video-frame {
        min-height: 180px;
    }
}
