/* ============================================
   BLC Reviews — Editorial Testimonials
   ============================================ */

.blc-reviews {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.blc-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent);
}

.blc-reviews-container {
    max-width: 1170px;
    margin: 0 auto;
}

/* Header */
.blc-reviews-header {
    margin-bottom: 60px;
    text-align: center;
}

.blc-reviews-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #cd0516;
    margin-bottom: 12px;
    font-family: "Roboto", Arial, sans-serif;
}

.blc-reviews-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #000;
    margin: 0 auto;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.blc-reviews-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #cd0516;
}

/* Grid */
.blc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* Card */
.blc-reviews-card {
    position: relative;
    padding: 45px 35px 40px;
    border-right: 1px solid #eee;
    transition: background 0.4s ease;
    animation: blcRevFadeUp 0.6s ease both;
    animation-delay: calc(var(--review-index) * 0.15s);
}

.blc-reviews-card:last-child {
    border-right: none;
}

.blc-reviews-card:hover {
    background: #fafafa;
}

.blc-reviews-card:hover .blc-reviews-quote-mark {
    color: #cd0516;
    transform: scale(1.01);
}

/* Giant quote mark */
.blc-reviews-quote-mark {
    font-size: 80px;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 0.6;
    margin-bottom: 10px;
    font-family: Georgia, "Times New Roman", serif;
    transition: color 0.4s ease, transform 0.4s ease;
}

/* Stars */
.blc-reviews-stars {
    display: flex;
    gap: 1px;
    margin-bottom: 20px;
}

.blc-reviews-star {
    font-size: 18px;
    color: #ddd;
    transition: color 0.2s ease;
}

.blc-reviews-star--filled {
    color: #cd0516;
}

/* Quote text */
.blc-reviews-text {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin: 0 0 28px;
    padding: 0;
    border: none;
    font-style: normal;
}

/* Author */
.blc-reviews-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blc-reviews-author-line {
    width: 30px;
    height: 2px;
    background: #cd0516;
    flex-shrink: 0;
}

.blc-reviews-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
}

/* Animation */
@keyframes blcRevFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .blc-reviews-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .blc-reviews-card {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 35px 25px;
    }
    .blc-reviews-card:last-child {
        border-bottom: none;
    }
    .blc-reviews-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .blc-reviews {
        padding: 50px 15px;
    }
    .blc-reviews-header {
        margin-bottom: 40px;
    }
    .blc-reviews-title {
        font-size: 28px;
    }
    .blc-reviews-quote-mark {
        font-size: 60px;
    }
    .blc-reviews-card {
        padding: 30px 15px;
    }
}
