/* ======================================================
//  MARK: Resolve Section
// ====================================================== */

.resolve {
    position: relative;
    height: 153px;
    z-index: 1;
    overflow: hidden;
}

/* Blue background with arrow */
.resolve__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Text */
.resolve__text {
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}

.resolve__text-accent {
    color: #fccf00;
}

/* Illustration (masked crop) */
.resolve__ill {
    position: absolute;
    right: 24px;
    top: 8px;
    overflow: hidden;
}

.resolve__ill img {
    width: auto;
    height: 60px;
}

/* ---- PC ---- */
@media (min-width: 1024px) {
    .resolve {
        height: 221px;
    }

    .resolve__text {
        top: 40px;
        font-size: 32px;
    }

    .resolve__ill {
        right: calc(50% - 370px);
        top: 26px;
    }

    .resolve__ill img {
        height: 125px;
    }
}
