.home_applicant {
    padding: 80px 0;
    height: fit-content;

    .home_applicant_title {
        text-align: center;
        font-size: 64px;
        line-height: 64px;
    }

    .applicant_slider_section {
        display: flex;
        align-items: center;
        padding: 20px 50px;
        gap: 24px;
    }

    .applicant_slider_viewport {
        flex: 1;
        overflow: hidden;
        padding: 20px 0;
    }

    .applicant_slider_track {
        display: flex;
        gap: 24px;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .applicant_card {
        flex: 0 0 auto;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        border-radius: 24px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        opacity: 0.5;
        transition: opacity 0.4s ease;

        &.active {
            opacity: 1;
        }
    }

    .applicant_text {
        font-size: 22px;
        line-height: 36px;
        color: #333;
        font-style: italic;
        text-align: center;
    }

    .applicant_avatar {
        img {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
        }
    }

    .applicant_nav_btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: 2px solid #ccc;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 36px;
        color: #555;
        line-height: 1;
        transition: all 0.2s ease;

        &:hover:not(:disabled) {
            background: #2563eb;
            color: #fff;
            border-color: #2563eb;
        }

        &:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
    }

    .applicant_dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;

        .applicant_dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s ease;

            &.active {
                background: #2563eb;
            }
        }
    }
}

@media (max-width: 992px) {
    .home_applicant {
        padding: 50px 15px;

        .home_applicant_title {
            font-size: 46px;
            line-height: 50px;
            text-align: start;
        }

        .applicant_slider_section {
            padding: 20px 20px;
            gap: 12px;
        }

        .applicant_text {
            font-size: 20px;
            line-height: 30px;
        }

        .applicant_nav_btn {
            width: 44px;
            height: 44px;
            font-size: 28px;
        }
    }
}

@media (max-width: 445px) {
    .home_applicant {
        .applicant_slider_section {
            padding: 10px 10px;
            gap: 8px;
        }

        .applicant_card {
            padding: 30px 24px;
        }

        .applicant_nav_btn {
            width: 36px;
            height: 36px;
            font-size: 24px;
        }

        .applicant_text {
            font-size: 18px;
            line-height: 26px;
        }
    }
}
