.video-wrapper {
    max-width: 800px;
    margin: 0 auto; /* 가운데 정렬 */
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.video-info {
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0;
}

.video-preacher {
    font-size: 1em;
    color: #666;
    margin: 5px 0 0;
}

.video-date {
    font-size: 0.9em;
    color: gray;
    margin: 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 비율 유지 */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


article header {
    display: flex;
}
article header h3 {
    margin: 0 auto;
}