/* ==============================
    SECTION 07 PRESENT
============================== */

.olle-present-section {
    position: relative;
    width: 100%;
    padding: 0;
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

.olle-present-inner {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    aspect-ratio: 2048 / 932;
    min-height: 0;
    box-sizing: border-box;
}

/* LEFT */
.olle-present-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 7vw;
    padding-right: 5vw;
    background: #ff6f17;
    box-sizing: border-box;
}

.olle-present-text h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 3.45vw, 72px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.065em;
}

.olle-present-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    max-width: 100%;
    height: 86px;
    margin-top: 240px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.045em;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.olle-present-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

/* RIGHT IMAGE */
.olle-present-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #eee;
}

.olle-present-img picture,
.olle-present-img img {
    display: block;
    width: 100%;
    height: 100%;
}

.olle-present-img img {
    object-fit: cover;
    border: 0;
}

/* ==============================
    RESPONSIVE
============================== */

@media (max-width: 1600px) {
    .olle-present-btn {
        width: 320px;
        height: 78px;
        margin-top: 190px;
        font-size: 23px;
    }
}

@media (max-width: 1280px) {
    .olle-present-text {
        padding-left: 6vw;
    }

    .olle-present-btn {
        width: 280px;
        height: 68px;
        margin-top: 140px;
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .olle-present-btn {
        width: 250px;
        height: 62px;
        margin-top: 105px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .olle-present-inner {
        display: flex;
        flex-direction: column;
        aspect-ratio: auto;
    }

    .olle-present-text {
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 360px;
        padding: 76px 20px;
        text-align: center;
    }

    .olle-present-text h2 {
        font-size: 36px;
        line-height: 1.38;
    }

    .olle-present-btn {
        width: 240px;
        height: 58px;
        margin-top: 52px;
        font-size: 18px;
        border-radius: 7px;
    }

    .olle-present-img {
        width: 100%;
        height: auto;
    }

    .olle-present-img picture,
    .olle-present-img img {
        width: 100%;
        height: auto;
    }

    .olle-present-img img {
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .olle-present-text {
        min-height: 320px;
        padding: 66px 16px;
    }

    .olle-present-text h2 {
        font-size: 31px;
    }

    .olle-present-btn {
        width: 220px;
        height: 54px;
        margin-top: 42px;
        font-size: 16px;
    }
}

@media (max-width: 390px) {
    .olle-present-text h2 {
        font-size: 28px;
    }

    .olle-present-btn {
        width: 205px;
        height: 50px;
        font-size: 15px;
    }
}