.maple{
    display: flex;
    justify-content: center;
    /* align-items: flex-end; */
    /* flex-direction: row-reverse; */
    gap: 56px;
    flex-wrap: nowrap;
    margin: 0 auto;
    max-width: 900px;
}
.maple-img{
    flex-basis: 48%;
}
/* .maple-img div{
    border: 3px solid #FBB03B;
    border-radius: 50%;
    padding: 30px;
} */
.maple-img img {
    width: 100%;
    height: auto;
    max-width: 410px;
}
.maple-img p{
    text-align: center;
    font-size: 0.9375em;
    font-weight: var(--font-size-medium);
}
.maple-text{
    flex-basis: 52%;
    word-break: break-all;
    overflow-wrap: break-word;
    position: relative;
    z-index: 2;
}
.maple-text::after {
    position: absolute;
    content: '';
    top: calc(45% - 2.3125em);
    right: -16px;
    width: 0;
    height: 0;
    display: block;
    border-style: solid;
    border-color: var(--base-color-white) var(--base-color-white);
    border-width: 40px;
    border-radius: 10px;
    transform: scaleY(0.5) rotate(45deg);
}
.maple-text p:first-of-type{
    position: relative;
    padding: 2.3125em;
    background-color: var(--base-color-white);
    border-radius: 5px;
    overflow: visible !important;
    /* font-size: 0.9375em; */
    font-weight: var(--font-size-medium);
    z-index: 2;
    line-height: 1.4;
}
/* .maple-text p:first-of-type::before {
    position: absolute;
    content: '';
    border: 10px solid transparent;
    border-right: 10px solid #FBB03B;
    top: 15px;
    left: -20px;
} */

.maple-text p:last-of-type{
    text-align: right;
    margin-top: 7px;
}
.maple-text p:last-of-type a{
    color: var(--base-color-black);
    text-decoration: none;
    padding-right: 2em;
    font-size: 0.845em;
    font-weight: var(--font-size-medium);
}
.maple-text p:last-of-type a img{
    display: none;
}


@media screen and (min-width: 960px) {
    #maple{
        min-height: 326px;
    }
    .maple{
        flex-direction: row-reverse;
    }
    .maple-img{
        position: relative;
    }
    .maple-img > div{
        position: absolute;
        top: -110px;
    }
}

@media screen and (max-width: 959px) {
    .maple{
        flex-wrap: wrap;
        gap: 20px;
    }
    .maple-img{
        flex-basis: 100%;
        text-align: center;
        order: 2;
        padding-bottom: 3em;
    }
    .maple-text{
        flex-basis: 100%;
    }
    .maple-text::after{
        top: auto;
        bottom: -46px;
        right: 50%;
        transform: scaleX(0.5) rotate(45deg) translateY(-50%);
    }
    .maple-text p:last-of-type{
        position: absolute;
        bottom: -494px;
        right: 0;
    }
}
@media screen and (max-width: 450px) {
    .maple-text p:last-of-type{
        bottom: calc(-91.11vw - 48px - 36px);
    }
}
@media screen and (max-width: 304px) {
    .maple-img{
        padding-bottom: 4em;
    }
    .maple-text p:last-of-type{
        bottom: calc(-91.11vw - 48px - 56px);
    }
}
