/* ABOUT — section #4 (after Services)
   Figma: ~1380 × 788 content area, white bg.
   - TOP row: photo (left) + title+body (right)
   - BOTTOM row: 4 gold stats (רק / 350 / 1000 / 20) */

.about {
    width: 100%;
    background: #fff;
    padding: 60px 24px 70px;
    color: #1d1d1b;
}

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

/* ===== Top row: photo + text ===== */
.about__top {
    display: flex;
    flex-direction: row-reverse;          /* RTL: photo at LEFT visual, text at RIGHT */
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.about__media {
    flex: 0 0 672px;
    position: relative;
    aspect-ratio: 672 / 533;
    border-radius: 4px;
    overflow: hidden;
    background: #d9d9d9;
    cursor: pointer;
}
.about__media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94px;
    height: 94px;
    z-index: 2;
    transition: transform 0.2s var(--ease);
    pointer-events: none;
}
.about__media:hover .about__play {
    transform: translate(-50%, -50%) scale(1.08);
}

.about__text {
    flex: 1 1 auto;
    min-width: 0;
}
.about__title {
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 42px;
    line-height: 48px;
    color: var(--c-blk);
    text-align: right;
    margin: 0 0 28px;
}
.about__body {
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #1d1d1b;
    text-align: right;
    max-width: 622px;
}
.about__body p {
    margin: 0 0 14px;
}
.about__body p:last-child {
    margin-bottom: 0;
}

/* ===== Bottom stats row: 4 columns ===== */
.about__stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Badge "ייצוג רק בעלי דירות" (centered, top) */
.about__stats-badge {
    margin: 0;
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 42px;
    line-height: 1;
    color: #030a11;
    white-space: nowrap;
    text-align: center;
}
.about__stats-badge-gold {
    color: #fff;
    background: var(--c-gold-flat);
    padding: 2px 10px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* 3 stats row */
.about__stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 980px;
    align-items: start;
}
.about__stat {
    text-align: center;
    direction: rtl;
}
.about__stat-num {
    font-family: var(--ff-he);
    font-weight: 300;                     /* Heebo Light ≈ Atlas DL Light */
    font-size: 92px;
    line-height: 1;
    color: var(--c-gold-flat);
    margin: 0 0 10px;
    display: block;
}
.about__stat-text {
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #1d1d1b;
    margin: 0 auto;
    max-width: 244px;
    text-align: center;
}

/* ===== MOBILE responsive ===== */
@media (max-width: 1024px) {
    .about {
        padding: 40px 16px 50px;
    }
    .about__top {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }
    .about__media {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16 / 10;
    }
    .about__play {
        width: 64px;
        height: 64px;
    }
    .about__title {
        font-size: 24px;
        line-height: 30px;
        margin: 0 0 16px;
        text-align: center;
    }
    .about__body {
        font-size: 16px;
        line-height: 24px;
        text-align: right;
        max-width: none;
    }
    .about__stats { gap: 22px; }
    .about__stats-badge { font-size: 26px; }
    .about__stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 8px;
    }
    .about__stat-num {
        font-size: 44px;
        margin-bottom: 6px;
    }
    .about__stat-text {
        font-size: 12px;
        line-height: 17px;
    }
}
