

.reviews .section-title {
    text-align: center;
    margin-bottom: 60px;
}
.user{
    width: 30px;
}
.reviews .section-title h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.reviews .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-rating {
    color: #f39c12;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-date {
    color: #95a5a6;
    font-size: 0.85rem;
}

.review-content h4 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.review-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 10px;
}
.vertinami{
    width: 20px;
    height: 20px;
}
.review-platforms span {
    color: var(--gray);
    font-size: 0.9rem;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.author-info strong {
    color: #2c3e50;
    font-size: 1rem;
    display: block;
    margin-bottom: 3px;
}

.author-info span {
    color: #95a5a6;
    font-size: 0.8rem;
}

.reviews-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}



.review-platforms {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-icons {
    display: flex;
    gap: 12px;
    font-size: 1.4rem;
}

.platform-icons i {
    color: #95a5a6;
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
 
    .reviews .section-title h2 {
        font-size: 2rem;
    }
    .review-card {
    padding: 10px;
}

    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .reviews-more {
        flex-direction: column;
        align-items: stretch;
    }
    
    .reviews-btn {
        width: 100%;
        justify-content: center;
    }
    
    .review-platforms {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .review-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-bottom: 5px;
    }
}