/* INK Reviews Slider - Identical to Figma Design */
/* Design specs: Container 1799x298px, Card 406x188px */

.ink-reviews-wrapper {
    width: 100%;
    background: #ffffff;
    padding: 0;
    overflow: hidden;
}

.ink-reviews-title {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 60px;
    font-weight: 400;
    color: #000000;
    line-height: 1.1;
    margin: 0 0 0 0;
    padding: 40px 0 30px 0;
    letter-spacing: -0.02em;
}

.ink-reviews-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    gap: 0;
    padding: 24px 0;
}

.ink-reviews-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000000;
    padding: 0;
    z-index: 10;
    transition: opacity 0.2s ease;
    font-family: Arial, sans-serif;
    line-height: 1;
    -webkit-user-select: none;
    user-select: none;
}

.ink-reviews-arrow:hover {
    opacity: 0.5;
}

.ink-reviews-arrow:disabled {
    opacity: 0.25;
    cursor: default;
}

.ink-reviews-prev {
    margin-left: 16px;
    margin-right: 8px;
}

.ink-reviews-next {
    margin-right: 16px;
    margin-left: 8px;
}

.ink-reviews-track-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ink-reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Review Card */
.ink-review-card {
    flex: 0 0 auto;
    background: #ffffff;
    box-sizing: border-box;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Header */
.ink-review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Avatar */
.ink-review-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background-color: #1565C0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ink-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.ink-avatar-initial {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    text-transform: uppercase;
}

/* Meta */
.ink-review-meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.ink-review-name {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    line-height: 1.35;
    display: block;
}

.ink-review-date {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #888888;
    line-height: 1.35;
    display: block;
    margin-bottom: 3px;
}

/* Stars */
.ink-review-stars {
    display: flex;
    gap: 1px;
    align-items: center;
}

.ink-star {
    color: #dddddd;
    font-size: 15px;
    line-height: 1;
}

.ink-star.ink-star-filled {
    color: #E37418;
}

/* Review text */
.ink-review-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #444444;
    line-height: 1.55;
    flex: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .ink-reviews-title {
        font-size: 48px;
    }
}
@media (max-width: 1024px) {
    .ink-reviews-title {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .ink-reviews-title {
        font-size: 32px;
        padding: 24px 0 20px 0;
    }
    .ink-reviews-arrow {
        font-size: 22px;
        width: 28px;
    }
}
@media (max-width: 480px) {
    .ink-reviews-title {
        font-size: 26px;
    }
}
