/* ============================================================
   Tour Reviews Wall — max-width 1380px, 3-column grid
   ============================================================ */

.tour-reviews-wall {
    background-image: url('/images/backgrounds/review.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    padding: 80px 0 60px;
    width: 100%;
}

/* Light overlay */
.tour-reviews-wall::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(17 18 20 / 10%);
    pointer-events: none;
}

.tour-reviews-wall__inner {
    position: relative;
    z-index: 1;
}

/* Centered inner wrapper — two-column: content left, image right */
.tour-reviews-wall__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
}

/* Left column: all reviews content */
.tour-reviews-wall__content {
    min-width: 0;
}

/* Right column: decorative image — centered, static */
.tour-reviews-wall__aside {
    align-self: center;
}

.tour-reviews-wall__aside-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
}

/* ---- Header ---- */
.tour-reviews-wall__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tour-reviews-wall__headline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-reviews-wall__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E87722;
    margin: 0;
}

.tour-reviews-wall__title {
    font-size: 32px;
    font-weight: 700;
    color: #111214;
    margin: 0;
    line-height: 1.15;
}

/* Score block — right side of header */
.tour-reviews-wall__score-block {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.tour-reviews-wall__score-number {
    font-size: 52px;
    font-weight: 800;
    color: #111214;
    line-height: 1;
}

.tour-reviews-wall__score-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tour-reviews-wall__stars {
    display: flex;
    gap: 3px;
}

.tour-reviews-wall__stars i {
    font-size: 18px;
    color: #E87722;
}

.tour-reviews-wall__stars i.fa-star-o {
    color: rgba(17, 18, 20, 0.2);
}

.tour-reviews-wall__count {
    font-size: 13px;
    color: rgba(17, 18, 20, 0.55);
    margin: 0;
}

/* ---- 3-column grid ---- */
.tour-reviews-wall__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Review tile ---- */
.review-tile {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Stars inside tile */
.review-tile__stars {
    display: flex;
    gap: 3px;
}

.review-tile__stars i {
    font-size: 14px;
    color: #E87722;
}

.review-tile__stars i.fa-star-o {
    color: #d0d0d0;
}

/* Title */
.review-tile__title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Text */
.review-tile__body {
    flex: 1;
}

.review-tile__text {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-tile__text.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.review-tile__expand {
    background: none;
    border: none;
    padding: 6px 0 0;
    color: #E87722;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.review-tile__expand i {
    font-size: 14px;
    transition: transform 0.25s;
}

.review-tile__expand.is-expanded i {
    transform: rotate(180deg);
}

/* Footer */
.review-tile__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #ebebeb;
    margin-top: auto;
}

.review-tile__author {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.review-tile__date {
    font-size: 12px;
    color: #999;
}

/* ---- Footer link ---- */
.tour-reviews-wall__footer {
    padding-top: 28px;
    text-align: right;
}

.tour-reviews-wall__all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #E87722;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.tour-reviews-wall__all-link:hover {
    color: #ff9540;
    border-color: #ff9540;
}

.tour-reviews-wall__all-link svg {
    transition: transform 0.2s;
}

.tour-reviews-wall__all-link:hover svg {
    transform: translateX(3px);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
    .tour-reviews-wall__inner {
        grid-template-columns: 1fr 260px;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .tour-reviews-wall__inner {
        padding: 0 32px;
        grid-template-columns: 1fr;
    }

    .tour-reviews-wall__aside {
        display: none;
    }

    .tour-reviews-wall__title {
        font-size: 26px;
    }
}

@media (max-width: 900px) {
    .tour-reviews-wall__track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tour-reviews-wall {
        padding: 52px 0 40px;
    }

    .tour-reviews-wall__inner {
        padding: 0 20px;
        grid-template-columns: 1fr;
    }

    .tour-reviews-wall__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-reviews-wall__track {
        grid-template-columns: 1fr;
    }

    .tour-reviews-wall__title {
        font-size: 22px;
    }

    .tour-reviews-wall__score-number {
        font-size: 40px;
    }

    .tour-reviews-wall__footer {
        text-align: left;
    }
}
