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

.section-title-interviews {
    font-size: 2.4em;
    font-weight: bold;
    color: #000;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
}

.main-interview-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;
    /* Если будет iframe, стили для него: */
    /* position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; */
}
/* .main-interview-video-wrapper iframe { position: absolute; top:0; left:0; width:100%; height:100%; border:none; } */


.interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Адаптивная сетка, ~3 колонки */
    gap: 30px;
}

.interview-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;
}
.interview-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.interview-image-link {
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.motorica-logo-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.5); /* Полупрозрачный фон лого */
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    line-height: 1; /* Для лучшего центрирования буквы */
}


.interview-content {
    padding: 15px 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #fdfdfd; /* Очень светлый фон для текстовой части */
}
.interview-content h3 {
    font-size: 1.1em;
    font-weight: bold;
    color: #000;
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.3;
}
.interview-content h3 a {
    text-decoration: none;
    color: inherit;
}
.interview-content h3 a:hover {
    color: #e0a990;
}
.interview-content p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}
.watch-interview-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-interview-button:hover {
    background-color: #e0a990;
    color: #fff;
}

/* Кнопка "Загрузить еще", если нужна */
.load-more-interviews-wrapper {
    text-align: center;
    margin-top: 40px;
}
.load-more-button-interviews { /* Используем другой класс, чтобы не конфликтовать */
    background-color: #343a40;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.load-more-button-interviews:hover {
    background-color: #23272b;
    transform: translateY(-2px);
}

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