/**
 * Component Styles: Recruit 1DAY FLOW
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */
.recruit-1day-flow-section {
    padding-top: 20px;
}

.recruit-1day-flow-section .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

/* ========================================
   FEATURE IMAGE
   ======================================== */

.feature-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline-wrapper {
    position: relative;
    padding: 20px 0px 20px 40px;
}

/* Vertical timeline line */
.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 0px;
    bottom: 0px;
    width: 3px;
    background-color: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Timeline dot */
.timeline-dot {
    position: absolute;
    left: -36px;
    width: 20px;
    height: 20px;
    background-color: #3390d6;
    border-radius: 50%;
    z-index: 2;
}

/* Timeline content */
.timeline-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.timeline-time {
    font-size: 26px;
    font-weight: 700;
    color: #3390d6;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
    .timeline-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .feature-image-wrapper img {
        min-height: 480px;
    }

    .timeline-item {
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .feature-image-wrapper img {
        min-height: 0px;
        height: 400px;
        width: 100%;
        object-position: top;
    }

    .timeline-wrapper::before {
        left: 19px;
    }

    .timeline-dot {
        left: -26px;
        width: 12px;
        height: 12px;
    }

    .timeline-time {
        font-size: 20px;
    }

    .timeline-title {
        font-size: 16px;
    }

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

@media (max-width: 575px) {
    .recruit-1day-flow-section .container {
        padding: 20px;
    }

    .timeline-wrapper {
        padding-left: 30px;
    }

    .timeline-wrapper::before {
        left: 9px;
    }
}

@media (max-width: 375px) {
    .timeline-wrapper::before {
        left: 9px;
    }
}
