.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 17.6px;
}

.about__video {
    margin-top: 50px;
    text-align: center;
}

.video {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #000;
}

.video__iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.video__placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #f28482, #e06d6b);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video__placeholder:hover {
    transform: scale(1.02);
}

.video__placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.video__placeholder-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.video__placeholder-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {  
    .video__iframe,
    .video__placeholder {
        height: 300px;
    }
}
@media (max-width: 480px) {
    .video__iframe,
    .video__placeholder {
        height: 154px;
    }
}