.opinions-page {
    padding: calc(var(--header-height) + 2rem) 7rem 4rem;
    background: #000;
    color: #fff;
    min-height: 100vh;
}

.opinions-page-inner {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
}

.opinions-page-title {
    font-family: 'Decimal', 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2rem;
    display: block;
    margin-top: -0.2rem;
}

.opinions-grid {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.opinions-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.testimonial-card {
    background: #0d0d0d;
    border: 1px solid #262626;
    border-radius: 0.8rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.testimonial-top {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    margin-bottom: 0.95rem;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-author {
    color: #f0f0f0;
    font-size: 1.04rem;
    font-weight: 600;
    line-height: 1.15;
}

.testimonial-stars {
    margin-top: 0.3rem;
    color: var(--color-violet);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
}

.testimonial-content {
    color: #d6d6d6;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #f7f7f7;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-link:hover,
.testimonial-link:focus-visible {
    color: #ffffff;
}

.testimonial-link img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .opinions-page {
        padding: calc(var(--header-height) + 1.2rem) 1rem 2.4rem;
    }

    .opinions-grid {
        flex-direction: column;
    }

    .opinions-col {
        width: 100%;
    }
}
