/**
 * Component Styles: Recruit Action
 *
 * Call-to-action section with multiple action groups.
 *
 * @package RIKAI_Marketing
 * @since 1.0.0
 */

/* ===================================
   Section Styles
   =================================== */

.recruit-action-section {
    background-color: #fff;
}

/* ===================================
   Highlight
   =================================== */

.recruit-action-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #3390d6;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Action Groups Grid
   =================================== */

.action-groups {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Action Group Card
   =================================== */

.action-group {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.action-group a.btn {
    white-space: nowrap;
}

/* ===================================
   Action Group Title
   =================================== */

.action-group-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   Check Label
   =================================== */

.action-check {
    margin-bottom: 25px;
}

/* Button Variations for Different Groups */
.action-group:nth-child(2) .action-group-title {
    color: #0d6efd;
}

.action-group:nth-child(2) .btn-default {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

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

/* Tablet (2 columns) */
@media (max-width: 992px) {
    .action-groups {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .action-group {
        padding: 35px 25px;
    }
}

/* Mobile (1 column) */
@media (max-width: 768px) {
    .recruit-action-section {
        padding: 40px 0;
    }

    .action-groups {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recruit-action-highlight {
        font-size: 15px;
    }

    .action-group {
        padding: 30px 20px;
    }

    .action-group-title {
        font-size: 16px;
        min-height: auto;
    }

    .action-check {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .action-group {
        width: 100%;
        padding: 20px;
    }

    .action-group a.btn {
        width: 80%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .recruit-action-section {
        padding: 30px 0;
    }

    .action-group a.btn {
        width: 100%;
    }
}
