/* ============================================
   サービス一覧
   ============================================ */
.services-section {
    background-color: var(--color-white);
}

.service-item {
    margin-bottom: 30px;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;  /* Changed from 200px */
    width: 100%;
}

.service-image img {
    border-radius: 12px;
    /* filter: grayscale(100%); */
    /* transition: filter 0.4s ease; */
    max-width: 100%;
    height: auto;
}

/* .service-item:hover .service-image img {
    filter: grayscale(0%);
} */

.service-name {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 10px;  /* Added spacing */
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }

    /* Keep side-by-side layout on tablet/mobile */
    .service-item .row {
        align-items: center;
    }

    .service-name {
        font-size: clamp(1rem, 2.5vw, 18px);
    }

    .section-description {
        font-size: clamp(12px, 1.8vw, 0.9rem);
    }

    .btn-custom {
        padding: 3px 36px;
        font-size: 13px;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    section {
        padding: 50px 0;
    }

    /* .service-image img {
        max-width: 90%;
    } */

    .service-name {
        font-size: 15px;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .btn-custom {
        padding: 3px 36px;
        font-size: 12px;
        margin-top: 20px;
    }
}