body {
    background-color: #fff;
    color: #000;
    word-wrap: break-word;
    /* переносит длинные слова */
    overflow-wrap: break-word;
    /* современный аналог */
    hyphens: auto;
    /* разбивка по слогам */
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
    /* базовый отступ для мобилки, может переназначаться в стилях */
}

/* === Разделитель === */
.section-divider {
    padding: 0px;
}

.section-divider__title {
    padding: 10px 28px;
}
.section-divider__title h2 {
    text-align: left;
}


/* === Шапка === */
.site-header__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.header__logo img {
    width: auto;
    height: 60px;
}

.header__menu {
    display: flex;
    flex: 1;
    flex-direction: row;
    gap: 20px;
}

.header__menu a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header__menu a:hover {
    color: #666;
}

.header__menu a:active {
    color: #333;
}

.header__button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 260px;
    height: 60px;
    box-sizing: border-box;
    padding: 0;
    border: 2px solid #000;
    border-radius: 12px;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header__button:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header__button:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.header__button-link {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: 12px;
    box-sizing: border-box;
}


/* === НАЧАЛО ОСНОВНОГО КОНТЕКТА === */
.site-main {
    flex: 1;
}

.container.site-main__container {
    display: flex;
    flex-direction: column;
}

/* === Блок 1  на каждой странице === */
.main-about__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 460px;
    margin: 40px 0 80px 0;
    padding: 40px 60px;
    border-radius: 56px;
    background-color: #f3f3f3;
}

.main-about__image {
    flex: 0 0 40%;
    justify-content: center;
    align-items: center;
}

.main-about__image img {
    display: flex;
    width: auto;
    height: 340px;
}

.main-about__content {
    flex: 0 0 60%;
    justify-content: center;
    align-items: center;
}

.main-about__content h1 {
    margin-bottom: 24px;
    color: #000;
    /* font-size: 70px;
    font-weight: 700; */
}

.main-about__content p {
    margin-bottom: 24px;
    color: #000;
    font-style: normal;
    text-align: justify;
}






/* Текст: отключить перенос, запретить переносы по слогам */
.no-wrap {
    white-space: nowrap;
    overflow-wrap: normal;
    word-wrap: normal;
    hyphens: manual;
}

.section-divider {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 40px 0 20px;
}

.section-divider__title {
    padding: 12px 32px;
    border-radius: 24px;
    background-color: #c1ff5f;
    color: #000;
    text-align: center;
    white-space: nowrap;
}

.team-card__photo {
    pointer-events: none;
    /* отключаем захват мыши изображением */
}