/* Reviews Component Styles */
.reviews {
    padding: 60px 0px 60px 0px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.reviews__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* h2 заголовок теперь наследует стили из typography.css */ 

/* Заголовок секции */
.reviews-header {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.reviews-header-bage {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.reviews-header .vector {
    flex-shrink: 0;
    width: 23px;
    height: 20px;
    position: relative;
    overflow: visible;
    aspect-ratio: 23/20;
}

.reviews-header .div {
    color: var(--berloga-text, #1a1a1a);
    text-align: left;
    font-family: 'Nunito-Medium', sans-serif;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

/* Декоративные лапки */
.reviews-header .paw-print {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    height: auto;
    position: absolute;
    right: 62.33px;
    top: calc(50% - 45.5px);
    transform: translate(-35.74px, 0px);
    overflow: visible;
}

.reviews-header .paw-print2 {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    height: auto;
    position: absolute;
    right: 1162.32px;
    top: calc(50% - 45.5px);
    transform: translate(-49.97px, 0px);
    overflow: visible;
}

/* Виджет отзывов */
.reviews__widget {
    margin-top: 40px;
}

/* Адаптивные стили */
@media (max-width: 1320px) {
    .reviews__container {
        width: calc(100% - 40px);
    }
}
@media (max-width: 768px) {
    .reviews {
        padding: 40px 0;
        gap: 30px;
    }

    .reviews-header h2 {
        font-size: 32px;
        text-align: center;
    }

    .reviews-header .div {
        font-size: 18px;
    }

    .reviews-header .paw-print,
    .reviews-header .paw-print2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .reviews-header h2 {
        font-size: 28px;
    }

    .reviews-header .div {
        font-size: 16px;
    }

    .reviews-header .vector {
        width: 18px;
        height: 16px;
    }
}

@media (max-width: 375px) {
    .reviews {
        padding: 30px 0;
    }
} 