:root {
    --v15-red: #e30613;
    --v15-dark: #121416;
    --v15-transition: all 0.4s ease;
}

.v15-opinion-section {
    padding: 100px 0;
    background: #ffffff;
}

.v15-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.v15-opinion-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: var(--v15-dark);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    position: relative;
}

/* ЛЕВАЯ КОЛОНКА */
.v15-author-side {
    background: #1a1d21;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.v15-photo-wrap {
    position: relative;
    margin-bottom: 30px;
}

.v15-author-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--v15-red);
    padding: 5px;
}

.v15-experience {
    position: absolute;
    bottom: 5px;
    right: -10px;
    background: var(--v15-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.4);
}

.v15-author-name {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.v15-author-rank {
    color: var(--v15-red);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ПРАВАЯ КОЛОНКА */
.v15-text-side {
    padding: 60px 80px;
    position: relative;
}

.v15-quote-icon {
    position: absolute;
    top: 40px;
    right: 60px;
}

.v15-opinion-title {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.v15-opinion-text {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.7;
}

.v15-highlight {
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    border-left: 3px solid var(--v15-red);
    padding-left: 25px;
}

.v15-opinion-text p {
    margin-bottom: 20px;
}

.v15-opinion-text strong {
    color: #ffffff;
}

.v15-tags {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.v15-tags span {
    font-size: 13px;
    color: #666;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) {
    .v15-opinion-card { grid-template-columns: 1fr; }
    .v15-author-side { padding: 40px; }
    .v15-text-side { padding: 40px 30px; }
    .v15-quote-icon { top: 20px; right: 20px; scale: 0.7; }
}