/* Сторінка /about/ */

.about { display: flow-root; }   /* щоб обтікання не вилазило за межі статті */

.about__title {
    margin: 20px 0 var(--space-40);
    font-size: var(--size-xx-large);
    line-height: 1.15;
    text-align: center;
}
.about__subtitle {
    clear: both;
    margin: 19.2px 0;
    font-size: var(--size-x-large);
    line-height: 1.15;
}

/* Зображення обтікаються текстом ліворуч, з тим самим заокругленням */
.about__figure {
    float: left;
    margin: 0;
    padding: 0 15px 5px 0;
}
.about__figure img { border-radius: var(--space-20); }
.about__figure--square img { width: auto; height: 400px; }
.about__figure--wide img { max-width: 400px; height: auto; object-fit: cover; }

.about p { margin: 0 0 19.2px; }
.about p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
    .about__figure { float: none; padding: 0 0 19.2px; }
    .about__figure--square img,
    .about__figure--wide img { width: 100%; max-width: none; height: auto; }
}
