@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');

.midori-story {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: var(--section-pad-y) auto;
    gap: 50px;
    padding: 0 20px;
    overflow: visible !important;
}

.midori-story-content {
    flex: 1;
}

/* Chữ nổi bật nghệ thuật (Pinyon Script) quy chuẩn Desktop 32px, Mobile 26px */
.midori-story-highlight {
    font-family: 'Pinyon Script', cursive;
    color: #456C35 !important;
    font-size: 32px !important;
    line-height: 1.5;
    margin-top: var(--space-heading-bottom) !important;
    margin-bottom: var(--space-heading-bottom) !important;
}

.midori-story-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    max-width: 100%;
}

.midori-story-img-box {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.midori-story-img-box::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 90%;
    height: 100%;
    background-color: #9FB877;
    z-index: 1;
}

.midori-story-img-box img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .midori-story {
        flex-direction: column;
        margin: 30px auto 60px auto;
        gap: 30px;
        padding: 30px 25px 0 15px;
        overflow: visible !important;
    }
    .midori-story-image-wrapper {
        padding-right: 25px;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
    .midori-story-img-box::before {
        top: -25px;
        right: -25px;
        width: 90%;
        height: 100%;
        background-color: #9FB877;
    }
}

@media (max-width: 767px) {
    .midori-story-highlight {
        font-size: 26px !important;
    }
}