
.container {
  width: 94%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  padding: 0 3%;
  background: url(/static/images/src/bg_select_cities.png) 0 0 no-repeat;
    background-size: auto;
  background-size: 100%;
}
.header-container {
    display: flex;
    max-width: 800px;
    padding: 8px 35px 0 35px;
}
.header-container .avatar-wrapper {
    width:23%;
    margin-right: 6%;
}
.header-container .avatar {
    width:100%;
    background-color: #ddd;
    padding-top: 100%; /* Для сохранения соотношения сторон 1:1 */
    border-radius: 50%; /* Круглый аватар */

    background: url(/static/images/src/ava200x200.png) 0 0 no-repeat;
    background-size: 100%;
    border: 3px solid #fff;
}
.header-container .text-content {
    width:71%;
    text-align: center;
}
.text-content p {
    font-size: 19px;
    line-height: 1.2;
    color: #333;
    font-family: 'MontserratAlternates';
    margin-top: 0;
    margin-bottom: 0;
}
.text-content p.yellow-montserrat {
    font-family: 'Montserrat';
    background-color: #f7b643;
    font-size: 10px;
    text-align: center;
    border-radius: 10px;
    margin-top: 10px;
    text-transform: uppercase;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    padding: 1px 15px;
}
.image-wrapper {
    position: relative;
    width: 100%;
    height: 145px;
    overflow: hidden;
    margin-bottom: 3px;
    display: flex;
    justify-content: center; /* Горизонтальное выравнивание */
    align-items: center; /* Вертикальное выравнивание */
    border-radius: 8px;
}

.image-wrapper img {
    width: 100%;
}

.label {
    position: absolute;
    width: 100%;
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 37px;
    line-height: 1.2;
    color: #fff;
    font-family: 'MontserratAlternates';
}
.image-wrapper.black-and-white img {
    filter: grayscale(100%);
    pointer-events: none;
}
a.image-wrapper {
    text-decoration: none;
}