/* =============================================
   ABOUT SECTION
   Review badges, portrait, booking card, description
   ============================================= */

.about {
    background: var(--color-white, #fff);
    padding: var(--section-padding, 100px) 0;
}

.about__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* --- Top Row: 3-column --- */
.about__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 48px;
}

/* --- Review Badges --- */
.about__badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__badge {
    background: var(--color-white, #fff);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-card, 12px);
    padding: 16px 20px;
}

.about__badge-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.about__badge-icon {
    flex-shrink: 0;
}

.about__badge-stars {
    display: flex;
    gap: 1px;
    color: var(--color-blue, #4C60FF);
    font-size: 14px;
    line-height: 1;
}

.about__badge-score {
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-black, #000);
}

.about__badge-count {
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 400;
    font-size: 12px;
    color: var(--color-gray, #6B7280);
}

/* --- Portrait --- */
.about__portrait {
    display: flex;
    justify-content: center;
}

.about__portrait-img {
    width: 280px;
    height: 280px;
    background: #ddd;
    border-radius: var(--radius-card, 12px);
}

/* --- Booking Card --- */
.about__booking {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-cream, #FFF4F0);
    border-radius: var(--radius-card, 12px);
    padding: 20px;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about__booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about__booking-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
}

.about__booking-title {
    display: block;
    font-family: var(--font-heading, 'Satoshi', sans-serif);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-black, #000);
}

.about__booking-sub {
    display: block;
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 400;
    font-size: 13px;
    color: var(--color-gray, #6B7280);
}

/* --- Description --- */
.about__desc {
    text-align: center;
}

.about__desc p {
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-charcoal, #1A1A1A);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 24px;
}

.about__desc strong {
    font-weight: 600;
}

.about__cta {
    /* inherits .btn-ghost */
}


/* =============================================
   RESPONSIVE — TABLET (768px+)
   ============================================= */
@media (min-width: 768px) {
    .about__row {
        grid-template-columns: auto 1fr auto;
    }
}


/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 767px) {
    .about {
        padding: var(--section-padding-mobile, 56px) 0;
    }

    .about__row {
        justify-items: center;
        text-align: center;
    }

    .about__badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about__portrait-img {
        width: 200px;
        height: 200px;
    }

    .about__booking {
        justify-content: center;
    }
}
