﻿.rv-tabs {
    background: #fff;
    border-bottom: 1px solid #eaecf0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.rv-tabs__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
    .rv-tabs__list::-webkit-scrollbar {
        display: none;
    }
.rv-tabs__item {
    flex-shrink: 0;
}
.rv-tabs__link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}
    .rv-tabs__link i {
        font-size: 13px;
        opacity: 0.7;
    }
    .rv-tabs__link:hover {
        color: #1d4ed8;
        text-decoration: none;
    }
.rv-tabs__item--active .rv-tabs__link {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}
    .rv-tabs__item--active .rv-tabs__link i {
        opacity: 1;
    }
/* ── SECTION ── */
.clients-section {
    background: #f8fafc;
    min-height: 60vh;
    padding: 2rem 0 3rem;
}
/* ── TOP BAR ── */
.clients-topbar {
    margin-bottom: 1.75rem;
}
.clients-topbar__title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.clients-topbar__page {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    background: #f3f4f6;
    border-radius: 6px;
    padding: 3px 10px;
}
/* ── GRID ── */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}
/* ── CLIENT CARD ── */
.client-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
    .client-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.09);
        transform: translateY(-2px);
        border-color: #bfdbfe;
        text-decoration: none;
    }
.client-card__img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.client-card__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.25s, transform 0.25s;
}
.client-card:hover .client-card__img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.client-card__footer {
    padding: 10px 14px;
    border-top: 1px solid #f3f4f6;
    background: #fff;
}
.client-card__name {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ── EMPTY STATE ── */
.clients-empty {
    text-align: center;
    padding: 5rem 1rem;
    grid-column: 1 / -1;
}
.clients-empty__icon {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 1rem;
}
.clients-empty__text {
    font-size: 16px;
    color: #9ca3af;
    font-weight: 500;
}
