.media-box-container {
    overflow: hidden;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
}

.media-box-content {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #f7f4ef 0%, #e8e4dd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-box-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-box-video-wrapper {
    width: 100%;
    height: 100%;
}

.media-box-video-wrapper iframe {
    width: 100%;
    height: 100%;
}

.media-box-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6e6860;
}

.media-box-placeholder span {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 12px;
}

.media-box-caption {
    background: #f7f4ef;
    border-top: 1px solid #e8e4dd;
    padding: 8px 14px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 11px;
    color: #6e6860;
    font-style: italic;
}
