/* Стили для секции */
.faq-videos-prosthetics-section {
    padding: 50px 0;
}

.section-title-faq-videos { /* Новый класс */
    font-size: 2.4em;
    font-weight: bold;
    color: #000;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}

.main-faq-video-wrapper { /* Новый класс */
    margin-bottom: 40px;
    background-color: #000;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5em;
    border-radius: 8px;
}

.faq-videos-grid { /* Новый класс */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-video-card { /* Новый класс */
    background-color: #fff; /* Фон карточки */
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-video-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.faq-video-thumbnail-link { /* Новый класс */
    display: block;
    height: 180px; /* Высота превью */
    background-size: cover;
    background-position: center;
    position: relative;
    /* Если нужна иконка Play, раскомментируйте и добавьте ее в HTML:
    display: flex;
    align-items: center;
    justify-content: center;
    */
}
/* Если есть иконка Play:
.faq-video-thumbnail-link .play-icon-video { ... стили как в предыдущем примере ... }
*/


.faq-video-content { /* Новый класс */
    padding: 15px 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #fdfdfd; /* Очень светлый фон для текстовой части */
}
.faq-video-content h3 {
    font-size: 1.05em; /* Заголовок чуть меньше */
    font-weight: bold;
    color: #000;
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.3;
}
.faq-video-content h3 a {
    text-decoration: none;
    color: inherit;
}
.faq-video-content h3 a:hover {
    color: #e0a990;
}
.faq-video-content p {
    font-size: 0.85em; /* Описание мельче */
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}
.watch-faq-video-button { /* Новый класс */
    display: inline-block;
    background-color: #fff;
    color: #e0a990;
    border: 1px solid #e0a990;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}
.watch-faq-video-button:hover {
    background-color: #e0a990;
    color: #fff;
}


/* Адаптивность */
@media (max-width: 992px) {
    .faq-videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}
@media (max-width: 768px) {
    .section-title-faq-videos {
        font-size: 2em;
    }
    .main-faq-video-wrapper {
        height: 350px;
    }
    .faq-video-thumbnail-link { height: 160px; }
}
@media (max-width: 600px) {
    .faq-videos-grid {
        grid-template-columns: 1fr;
    }
    .faq-video-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .watch-faq-video-button {
        align-self: center;
    }
}
