/**
 * Nejat Reviews Widget Styles
 */

/* Root element — controls section spacing */
.nejat-reviews {
    padding-top: var(--nejat-section-pad-v);
    padding-bottom: var(--nejat-section-pad-v);
}

/* Inner container — controls horizontal gutter & max width */
.nejat-reviews__inner {
    max-width: var(--nejat-max-width);
    margin: 0 auto;
    padding-left: var(--nejat-gutter);
    padding-right: var(--nejat-gutter);
}

/* Header Section */
.nejat-reviews__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--nejat-gap-md);
    margin-bottom: var(--nejat-gap-lg);
}

.nejat-reviews__header-text {
    flex: 1;
}

/* Eyebrow */
.nejat-reviews__eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #4ab3c8;
    margin-bottom: 12px;
}

/* Headline */
.nejat-reviews__headline {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

/* Description */
.nejat-reviews__description {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.nejat-reviews__description p {
    margin: 0 0 12px 0;
}

.nejat-reviews__description p:last-child {
    margin-bottom: 0;
}

/* View All Link */
.nejat-reviews__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #4ab3c8;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nejat-reviews__view-all:hover {
    color: #31bcc8;
    gap: 12px;
}

.nejat-reviews__arrow {
    transition: transform 0.3s ease;
}

.nejat-reviews__view-all:hover .nejat-reviews__arrow {
    transform: translateX(4px);
}

/* Reviews Content */
.nejat-reviews__content {
    margin-top: var(--nejat-gap-lg);
}

/* Placeholder */
.nejat-reviews__placeholder {
    background: #f0f0f0;
    border: 2px dashed #e0e0e0;
    border-radius: var(--nejat-radius);
    padding: 48px 24px;
    text-align: center;
}

.nejat-reviews__placeholder p {
    color: #888888;
    font-size: 16px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nejat-reviews__header {
        gap: var(--nejat-gap-sm);
    }
}

@media (max-width: 768px) {
    .nejat-reviews__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: var(--nejat-gap-md);
    }

    .nejat-reviews__headline {
        font-size: clamp(24px, 5vw, 32px);
    }

    .nejat-reviews__view-all {
        margin-top: 16px;
    }

    .nejat-reviews__content {
        margin-top: var(--nejat-gap-md);
    }
}

@media (max-width: 480px) {
    .nejat-reviews__eyebrow {
        font-size: 13px;
    }

    .nejat-reviews__headline {
        font-size: clamp(22px, 6vw, 28px);
    }

    .nejat-reviews__description {
        font-size: 15px;
    }

    .nejat-reviews__view-all {
        font-size: 15px;
    }
}
