/* ===================================
   Mobile First Styles
   =================================== */

.business-container {
    max-width: 1413px;
    margin: 0 auto;
    overflow: hidden;
}


/* service-section */
.service-section {
    padding: 60px 15px;
    position: relative;
}

.service-feature-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-feature-card-img {
    width: 100%;
    position: relative;
}

.service-feature-card-img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 1;
}

.service-feature-card-content {
    width: 100%;
    padding: 0 20px;
}

.service-feature-card-header {
    margin-bottom: 30px;
}

.service-feature-card-title-block {
    background: linear-gradient(to bottom, #1b1f83 30%, #06071d);
    color: #fff;
    padding: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.service-feature-card-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}

.service-feature-card-lead {
    font-size: 20px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-feature-card-header>p {
    font-size: 16px;
    line-height: 1.8;
}

.service-detail {
    margin-bottom: 30px;
}

.service-detail h5 {
    position: relative;
    font-size: 20px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 10px 0px 10px 20px;
}

.service-detail h5:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: #1b1f83;
    /* var(--gradient-blue-2) is not defined */
}

.service-detail p {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
}

.service-detail p.strong {
    font-weight: bold;
}

/* case-studies-section */
.case-studies-section {
    background-color: #f1f1f1;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.case-study-card {
    background-color: #fff;
    max-width: 450px;
    width: 100%;
    position: relative;
    padding-bottom: 80px;
}

.case-study-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.case-study-category {
    display: inline-block;
    background: linear-gradient(to bottom, #1b1f83 30%, #06071d);
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    margin: 0 20px 20px;
}

.case-study-card h5 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 20px 20px;
    line-height: 1.6;
}

.case-study-card p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 20px;
}

.btn-more {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 10px 40px;
    border: 1px solid #000;
    background-color: #f6f6f6;
    color: #000;
    text-decoration: none;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    font-size: 20px;
    width: calc(100% - 40px);
    text-align: center;
}

/* ===================================
   PC Styles (min-width: 992px)
=================================== */
@media (min-width: 992px) {

    .service-section {
        padding: 100px 0;
    }

    .service-feature-card {
        flex-direction: row;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
        gap: 100px;
    }

    .service-feature-card-img img {
        aspect-ratio: unset;
        object-fit: unset;
    }

    .service-feature-card-img::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent 60%, white 95%);
    }

    .service-feature-card-content {
        padding: 0;
    }

    .service-feature-card-title-block {
        padding: 2em;
        width: fit-content;
        position: absolute;
        left: 0px;
        top: 2em;
        margin-top: 0;
    }

    .service-feature-card-body {
        padding-top: 150px;
    }


    .service-feature-card-title {
        font-size: clamp(24px, 3vw, 32px);
    }

    .service-feature-card-lead {
        font-size: 30px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .service-feature-card-header>p {
        font-size: 18px;
        line-height: 2;
        padding: 0 15px;
    }

    .service-detail h5 {
        font-size: 24px;
    }

    .service-detail p {
        font-size: 16px;
    }

    .case-studies-section {
        padding: 80px 40px;
        flex-direction: row;
        gap: 40px;
        justify-content: center;
        margin-top: 80px;
    }

    .case-study-card h5 {
        font-size: 22px;
    }

    .case-study-card p {
        font-size: 16px;
    }

}