/**
 * Recruit Recruitment Component Styles
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

/* Two-Column Layout */
.recruitment-content-wrapper {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.recruitment-content-wrapper .col-lg-5 {
    display: flex;
    flex-direction: column;
}

/* Feature Image (Left Column) */
.recruitment-feature-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

/* Recruitment Card (Right Column) */
.recruitment-card {
    background: #ffffff;
    padding: 40px 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--dark-color);
}

/* Subtitle */
.recruitment-subtitle {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.recruitment-subtitle::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Recruitment Items List */
.recruitment-items-list {
    margin-bottom: 35px;
}

/* Single Recruitment Item */
.recruitment-item {
    padding: 0px 0px 15px;
    display: flex;
    align-items: stretch;
}

/* Item Left Column (Name) */
.recruitment-item .item-left {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary-color);
    padding: 0px 15px;
    min-width: 150px;
    max-width: 150px;
}

.recruitment-item .item-name {
    font-size: 16px;
    font-weight: 700;
    color: #3390d6;
}

/* Item Right Column (Title + Description) */
.recruitment-item .item-right {
    display: flex;
    flex-direction: column;
    padding: 0px 20px 15px;
    gap: 8px;
    border-bottom: 1px solid var(--secondary-border-color);
}

.recruitment-item .item-title {
    font-size: 15px;
    font-weight: 700;
    color: #1d2327;
    line-height: 1.6;
}

/* Item Description */
.recruitment-item .item-description {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.recruitment-item .item-description p {
    margin-bottom: 12px;
}

.recruitment-item .item-description p:last-child {
    margin-bottom: 0;
}

.recruitment-item .item-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruitment-item .item-description ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}

.recruitment-item .item-description ul li::before {
    content: "●";
    position: absolute;
    left: 0px;
    color: var(--secondary-color-light);
    font-size: 18px;
    top: -2px;
}

.recruitment-item .item-description ul li:last-child {
    margin-bottom: 0;
}

.recruitment-item .item-description strong {
    font-weight: 700;
    color: #1d2327;
}

/* CTA Button */
.recruitment-button-wrapper {
    text-align: center;
    margin-top: 35px;
    padding-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .recruit-recruitment-section {
        padding: 60px 0;
    }

    .recruitment-card {
        padding: 35px 30px;
    }

    .recruitment-feature-image img {
        height: 400px;
        object-fit: cover;
        object-position: top;
    }
}

@media (max-width: 768px) {
    .recruitment-card {
        padding: 30px 25px;
    }

    .recruitment-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .recruitment-item .item-name {
        font-size: 15px;
        padding-bottom: 5px;
    }

    .recruitment-item .item-title {
        font-size: 14px;
    }

    .recruitment-item .item-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .recruitment-card {
        padding: 25px 20px;
    }

    .recruitment-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .recruitment-feature-image img {
        border-radius: 8px;
    }

    .recruitment-button-wrapper {
        margin-top: 25px;
        padding-top: 25px;
    }
}

@media (max-width: 434px) {
    .recruitment-subtitle::after {
        left: unset;
    }
}

@media (max-width: 375px) {
    .recruitment-item .item-left {
        min-width: 100px;
        max-width: 100px;
        padding: 0px 0px;
    }

    .recruitment-item .item-right {
        padding: 0px 0px 15px;
    }
}
