.ueber-uns-container {
    max-width: 2560px; /* Шире, чем корзина, для двух колонок */
    width: 100%;
    margin: 40px auto !important;
    padding: 0 15px;
    font-family: "PT Mono", monospace !important;
    min-height: 400px;
    background: #fff; /* Белый фон */
    box-sizing: border-box;
}
main {
        margin-top: 20vh;
}
/* Родительские элементы */
#primary, .site-main {
    margin: 0 auto !important;
    width: 100%;
    max-width: 1200px;
}

/* Заголовок */
.ueber-uns-title {
    font-size: 32px;
    font-weight: 300;
    color: #222;
    margin-bottom: 35px; /* Отступ для линии */
    text-align: left; /* Прижат к левому краю */
    letter-spacing: 0.5px;
        font-family: "PT Mono", monospace !important;
}

/* Линия */
.ueber-uns-divider {
    border: none;
    border-top: 1px solid #ddd; /* Серая линия */
    margin: 0 0 40px 0;
}

/* Контент (две колонки) */
.ueber-uns-content {
    display: flex;
    gap: 30px;
}

/* Левая колонка (фото) */
.ueber-uns-left {
    flex: 0 0 50%;
}
.ueber-uns-left img {
    width: 460px;
    height: 670px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Правая колонка (текст) */
.ueber-uns-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ueber-uns-right p {
    font-size: 16px;
    font-family: "PT Mono", monospace !important;
    color: #333;
    line-height: 1.6;
    margin: 0;
}
.ueber-uns-right h2 {
    font-family: "PT Mono", monospace !important;
    font-size: 20px;
    font-weight: 400;
    color: #222;
    margin: 20px 0 10px;
}
.ueber-uns-right ol {
    list-style-type: disc; /* Круглые маркеры */
    padding-left: 20px;
    margin: 0;
}
.ueber-uns-right ol li {
    font-family: "PT Mono", monospace !important;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .ueber-uns-content {
        flex-direction: column;
        gap: 20px;
    }
    .ueber-uns-left,
    .ueber-uns-right {
        flex: 0 0 100%;
    }
    .ueber-uns-left img {
        width: 100%;
        height: auto; /* Сохраняем пропорции */
        max-height: 670px;
    }
}
@media (max-width: 768px) {
    .ueber-uns-container {
        margin: 20px auto !important;
        padding: 0 10px;
        min-height: 300px;
    }
    .ueber-uns-title {
        font-size: 28px;
    }
    .ueber-uns-right p,
    .ueber-uns-right ol li {
        font-size: 15px;
    }
    .ueber-uns-right h2 {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .ueber-uns-title {
        font-size: 24px;
    }
    .ueber-uns-right p,
    .ueber-uns-right ol li {
        font-size: 14px;
    }
    .ueber-uns-right h2 {
        font-size: 16px;
    }
}

