.about-section { padding: 88px 0; background: #fff; }
.about-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-section__media { position: relative; }
.about-section__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.about-section__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.about-section__stat {
    position: absolute;
    bottom: -40px;
    left: -20px;
    background: #fff;
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    width: 200px;
}
.about-section__stat-number {
    font-family: var(--font-condensed);
    font-weight: 800;
    font-size: 30px;
    color: var(--blue);
    display: block;
    margin-bottom: 4px;
}
.about-section__stat-text {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-body);
}
@media (max-width: 1024px) {
    .about-section__grid { grid-template-columns: 1fr; gap: 40px; }
    .about-section__media { order: -1; }
}
@media (max-width: 460px) {
    .about-section__stat { position: static; margin-top: -20px; width: auto; }
}
