/**
 * Recruit Why RIKAI Component Styles
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

.recruit-why-rikai-section {
    background-color: #ffffff;
}

/* ============================================
   Feature Image
   ============================================ */
.recruit-why-feature-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruit-why-feature-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================
   Benefit Items
   ============================================ */
.recruit-why-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item > .row > .col-12 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.benefit-item:last-child {
    border-bottom: none;
}

/* Benefit Number Badge */
.benefit-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Benefit Content */
.benefit-content-wrapper {
    flex: 1;
}

.benefit-title {
    line-height: 1.4;
    margin-bottom: 0px;
}

.benefit-description {
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablets (Portrait) */
@media (max-width: 991px) {
    .recruit-why-feature-image img {
        max-width: 350px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .recruit-why-feature-image img {
        max-width: unset;
        width: 100%;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .benefit-title {
        font-size: 18px;
    }

    .benefit-description {
        font-size: 14px;
    }
}

/* Small Mobile Devices */
@media (max-width: 575px) {
    .benefit-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .benefit-title {
        font-size: 17px;
    }
}
