/* ==================================================
   YUME – WHY YUME
   ================================================== */

.yume-why {
    width: 100%;
    background: var(--yume-white);
}

.yume-why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* Levá fotografie */

.yume-why__visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.yume-why__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pravá textová část */

.yume-why__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 620px;
    padding: 80px 70px;
    color: #2E5225;
    text-align: center;
}

.yume-why__title {
    margin: 0 0 30px;
    color: #2E5225;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.yume-why__text {
    max-width: 540px;
    margin: 0 0 18px;
    color: #2E5225;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

.yume-why__text:last-child {
    margin-bottom: 0;
}

.yume-why__highlight {
    font-weight: 700;
}

/* Tablet */

@media (max-width: 991px) {
    .yume-why__visual,
    .yume-why__content {
        min-height: 520px;
    }

    .yume-why__content {
        padding: 60px 40px;
    }

    .yume-why__title {
        font-size: 26px;
    }
}

/* Mobil */

@media (max-width: 767px) {
    .yume-why__inner {
        grid-template-columns: 1fr;
    }

    .yume-why__visual {
        min-height: auto;
        aspect-ratio: 1 / 1;
    }

    .yume-why__content {
        min-height: auto;
        padding: 58px 24px 64px;
    }

    .yume-why__title {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .yume-why__text {
        font-size: 13px;
        line-height: 1.7;
    }
}