:root {
    /* Huttons brand gold
       Update this value if brand guidelines change */
    --huttons-gold: #c89b3c;
}

/* Position Swiper arrows outside the cards (property-style layout) */
.har-swiper {
    position: relative;
    overflow: hidden;
}

/* Ensure slides/cards align and stretch to a consistent height */
.har-swiper .swiper-wrapper {
    align-items: stretch;
}

.har-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.har-review-card {
    width: 100%;
}

.har-review-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.har-review-content {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.har-bold {
    font-weight: bold;
}
.har-review-meta {
    font-size: 13px;
    color: #666;
}

.har-block {
    display: block;
}

.har-uppercase {
    text-transform: uppercase;
}

.har-text-center {
    text-align: center;
}

.har-swiper .swiper-pagination {
    position: relative;
    margin-top: 24px;
    text-align: center;
}

.har-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.65);
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.har-swiper .swiper-pagination-bullet-active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Pagination container */
nav.hm-pagination {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

/* Pagination group */
nav.hm-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    font-size: 1rem;
    text-decoration: none;
    color: #6c6c6c;
    background: #fffaf0;
    border: 1px solid #e5e5e5;
    margin-left: -1px; /* join borders */
}

/* First & last rounded corners */
nav.hm-pagination .page-numbers:first-child {
    border-radius: 12px 0 0 12px;
}
nav.hm-pagination .page-numbers:last-child {
    border-radius: 0 12px 12px 0;
}

/* Current page */
nav.hm-pagination .page-numbers.current {
    background: #D0911A;
    color: #ffffff;
    font-weight: 600;
    border-color: #D0911A;
    z-index: 2;
}

/* Hover */
nav.hm-pagination .page-numbers:not(.current):hover {
    background: #f0f2f5;
}

/* Previous / Next */
nav.hm-pagination .prev,
nav.hm-pagination .next {
    font-weight: 500;
    color: #6c6c6c;
}

/* Dots */
nav.hm-pagination .dots {
    cursor: default;
    background: #fffaf0;
}

/* Mobile */
@media (max-width: 768px) {
    nav.hm-pagination .page-numbers:not(.prev):not(.next):not(.current) {
        display: none;
    }
}

/* Hide arrows on small screens */
@media (max-width: 767px) {
    .har-swiper .swiper-button-prev,
    .har-swiper .swiper-button-next {
        display: none;
    }
}
