/* Review Cards Plugin - style.css */

.rc-wrapper {
    overflow-x: scroll !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    cursor: grab;
}

.rc-wrapper::-webkit-scrollbar {
    height: 0;
    display: none;
}

.rc-wrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rc-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 14px;
    padding: 4px 2px 8px;
    width: max-content !important;
    min-width: 100%;
}

.rc-card {
    background: #f8f8f6;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 32px 18px 36px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 260px;
    flex-shrink: 0;
}

/* Badge */
.rc-badge {
    display: inline-flex;
    align-items: center;
    background: #073e64;
    padding: 4px 10px;
    margin-bottom: 14px;
    gap: 5px;
    align-self: flex-start;
}

.rc-badge-name {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 11px;
    color: #c8e63c;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rc-badge-said {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Heading */
.rc-title {
    font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: #073e64;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin: 0 0 10px 0;
}

/* Body text */
.rc-text {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #073e64;
    text-transform: uppercase;
    line-height: 1.65;
    letter-spacing: 0.03em;
    margin: 0;
}

/* Desktop: show 6 cards visible */
@media (min-width: 1025px) {
    .rc-wrapper {
        overflow-x: auto;
    }
    .rc-card {
        width: calc((100vw - 120px) / 6);
        max-width: 260px;
        min-width: 180px;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 601px) {
    .rc-card {
        width: 240px;
    }
}

/* Mobile: 2 cards visible + peek of 3rd */
@media (max-width: 600px) {
    .rc-wrapper {
        overflow-x: scroll !important;
    }
    .rc-grid {
        flex-wrap: nowrap !important;
        width: max-content !important;
        gap: 10px;
        padding-right: 24px;
    }
    .rc-card {
        width: calc(46vw);
        min-width: 160px;
        padding: 28px 14px 32px;
    }
    .rc-title {
        font-size: 13px;
    }
    .rc-text {
        font-size: 10px;
    }
    .rc-badge-name,
    .rc-badge-said {
        font-size: 10px;
    }
}
