.tb-reviews-faq {
    padding: 80px 0;
    background: #ffffff;
}

.tb-reviews-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}

.tb-reviews-faq__title {
    margin: 0 0 28px;
    font-size: clamp(32px, 3.8vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111111;
}

.tb-reviews-faq__title::after {
    content: "";
    display: block;
    width: 150px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: #fc7700;
}

.tb-reviews-faq__review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.tb-reviews-faq__review {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.07);
}

.tb-reviews-faq__stars {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 8px;
    color: #fc7700;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.tb-reviews-faq__review-text {
    grid-column: 1;
    grid-row: 2;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.72);
}

.tb-reviews-faq__review-text p {
    margin: 0;
}

.tb-reviews-faq__person {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    min-width: 150px;
    gap: 12px;
    align-items: center;
    align-self: center;
    margin-top: 0;
    padding-top: 0;
}

.tb-reviews-faq__avatar {
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.tb-reviews-faq__person strong {
    display: block;
    color: #111111;
    font-size: 14px;
    line-height: 1.2;
}

.tb-reviews-faq__person small {
    display: block;
    margin-top: 3px;
    color: rgba(17, 17, 17, 0.56);
    font-size: 12px;
    line-height: 1.2;
}

.tb-reviews-faq__faq-list {
    display: grid;
    gap: 12px;
}

.tb-reviews-faq__item {
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.tb-reviews-faq__question {
    position: relative;
    padding: 18px 52px 18px 20px;
    color: #111111;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.tb-reviews-faq__question::-webkit-details-marker {
    display: none;
}

.tb-reviews-faq__question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #fc7700;
    font-size: 24px;
    line-height: 1;
}

.tb-reviews-faq__item[open] .tb-reviews-faq__question::after {
    content: "−";
}

.tb-reviews-faq__answer {
    padding: 0 20px 18px;
    color: rgba(17, 17, 17, 0.72);
    font-size: 15px;
    line-height: 1.55;
}

.tb-reviews-faq__answer p {
    margin: 0;
}

@media (max-width: 1100px) {
    .tb-reviews-faq__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .tb-reviews-faq {
        padding: 56px 0;
    }

    .tb-reviews-faq__review-grid {
        flex-direction: column;
    }

    .tb-reviews-faq__review {
        min-height: 0;
    }
}
/* tb mobile reviews card layout fix */
@media (max-width: 767px) {
    .tb-reviews-faq__grid {
        grid-template-columns: 1fr;
    }

    .tb-reviews-faq__review {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 28px 24px;
    }

    .tb-reviews-faq__stars {
        width: 100%;
        font-size: 20px;
        line-height: 1;
    }

    .tb-reviews-faq__review-text {
        width: 100%;
        max-width: none;
        min-width: 0;
        font-size: 17px;
        line-height: 1.55;
    }

    .tb-reviews-faq__review-text p {
        margin: 0;
    }

    .tb-reviews-faq__person {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        margin-top: 2px;
    }

    .tb-reviews-faq__avatar {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 420px) {
    .tb-reviews-faq__review {
        padding: 24px 20px;
    }

    .tb-reviews-faq__review-text {
        font-size: 16px;
    }
}
