/* Основная секция */
.section-kottedj {
    background-color: #ffffff;
    padding: 40px 0;
    display: block;
}

/* Флекс-контейнер для десктопа */
.flex-wrapper-kottedj {
    display: flex;
    align-items: center; /* ЭТО ЦЕНТРИРУЕТ ФОТО И ТЕКСТ ПО ВЕРТИКАЛИ (ВЕРХ/НИЗ) */
    justify-content: space-between;
    gap: 40px;
}

/* Текстовый блок */
.text-content-kottedj {
    flex: 1;
}

.title-kottedj {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 32px;
    line-height: 1.2;
}

.descr-kottedj p {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.5;
    color: #1a1a1a;
}

/* Блок с изображением */
.image-box-kottedj {
    flex: 0 0 400px; /* Фиксированная ширина фото на десктопе */
}

.image-box-kottedj img {
    width: 100%;
    height: auto;
    display: block;
}

/* Адаптив для мобильных устройств */
@media (max-width: 991px) {
    .flex-wrapper-kottedj {
        flex-direction: column; /* Текст и фото друг под другом */
        text-align: center;
    }

    .image-box-kottedj {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px; /* Чтобы фото не было на весь экран */
        order: -1; /* Фото будет НАД текстом на мобилках (обычно так лучше) */
    }
    
    .title-kottedj {
        font-size: 26px;
    }
}

/* Стили для ссылки "здесь" */
.link-kottedj_categorii {
    display: inline-block; /* Нужно для корректного увеличения scale */
    color: #167f2b;
    font-weight: bold;
    text-decoration: underline;
    transition: transform 0.3s ease, color 0.3s ease; /* Плавность изменений */
    cursor: pointer;
}

.link-kottedj_categorii:hover {
    color: #1f9036;
    transform: scale(1.01); /* Увеличение в 1.25 раза */
    text-decoration: underline; /* Сохраняем подчеркивание при наведении */
}