/* =====================================================
   ILYK — Відгуки курсу (вкладка Reviews)
   themes/ilyk/css/reviews.css
   ===================================================== */

.ilyk-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* =====================================================
   КАРТКА ВІДГУКУ
   ===================================================== */

.ilyk-review-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 28px 32px;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.ilyk-review-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}




/* =====================================================
   ШАПКА КАРТКИ: аватар + мета + лапки
   ===================================================== */

.ilyk-review-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

/* Аватар */
.ilyk-review-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f0f0f0;
}

.ilyk-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ilyk-review-card__avatar--placeholder {
    background: #f0f1f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 20px;
}

body.term-program .ilyk-review-card__avatar {
    border-color: rgba(81, 105, 241, 0.2);
}

body.term-training .ilyk-review-card__avatar {
    border-color: rgba(45, 110, 99, 0.2);
}

/* Мета */
.ilyk-review-card__meta {
    flex: 1;
    min-width: 0;
}

.ilyk-review-card__author {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.3;
}

.ilyk-review-card__role {
    font-size: 13px;
    font-weight: 500;
    color: #888;
}

/* Іконка лапок */
.ilyk-review-card__quote {
    flex-shrink: 0;
    font-size: 28px;
    line-height: 1;
    opacity: 0.12;
}

body.term-program .ilyk-review-card__quote {
    color: #5169F1;
    opacity: 0.2;
}

body.term-training .ilyk-review-card__quote {
    color: #2D6E63;
    opacity: 0.2;
}

/* =====================================================
   ТЕКСТ ВІДГУКУ
   ===================================================== */

.ilyk-review-card__text {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

.ilyk-review-card__text p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   ВІДЕО YOUTUBE
   ===================================================== */

.ilyk-review-card__video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
    margin-top: 20px;
}

.ilyk-review-card__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =====================================================
   ПОРОЖНІЙ СТАН
   ===================================================== */

.ilyk-no-reviews {
    font-size: 15px;
    color: #999;
    text-align: center;
    padding: 40px 0;
}

/* =====================================================
   АДАПТИВ
   ===================================================== */

@media (max-width: 767px) {
    .ilyk-review-card {
        padding: 20px;
    }

    .ilyk-review-card__author {
        font-size: 15px;
    }

    .ilyk-review-card__text {
        font-size: 14px;
    }
}