/* ========== RECRUIT PAGE STYLES ========== */

/* ========== HERO SECTION ========== */
.recruit-hero-section {
    background: #ffffff;
    padding: 6rem 0 4rem 0;
    margin-top: 5rem;
    text-align: center;
}

.recruit-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.recruit-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
}

.recruit-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* ========== WORK STYLE SECTION ========== */
.work-style-section {
    padding: 6rem 0;
}

.work-style-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.work-style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00bcd4 0%, #26c6da 50%, #4dd0e1 100%);
}

.work-style-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 3rem 0;
    text-align: center;
}

.work-style-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.work-style-item {
    text-align: center;
}

.work-style-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.work-style-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.work-style-item-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* ========== POSITIONS SECTION ========== */
.positions-section {
    background: #ffffff;
    padding: 6rem 0;
}

.position-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.1);
    margin-bottom: 2rem;
}

.position-card:last-child {
    margin-bottom: 0;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00bcd4 0%, #26c6da 50%, #4dd0e1 100%);
}

.position-image-wrapper {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
}

.position-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.position-content {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
}

.position-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-color);
}

.position-title-group {
    width: 100%;
}

.position-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.position-body {
    margin-bottom: 0;
}

.position-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 1.2rem 0 0 0;
    font-style: italic;
}

.position-section {
    margin-bottom: 1.5rem;
}

.position-section:last-child {
    margin-bottom: 0;
}

.position-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.8rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.position-section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

.position-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.position-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.position-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.employment-types {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.employment-tag {
    display: inline-block;
    padding: 0.5rem 1.3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.position-footer {
    display: flex;
    justify-content: center;
}

.position-apply-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3.5rem;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.benefit-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 188, 212, 0.1);
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.benefit-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* ========== CTA SECTION ========== */
.recruit-cta-section {
    background: #ffffff;
    padding: 6rem 0;
}

.recruit-cta-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.recruit-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00bcd4 0%, #26c6da 50%, #4dd0e1 100%);
}

.recruit-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.recruit-cta-description {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-muted);
    margin: 0 0 3rem 0;
}

.recruit-cta-btn {
    font-size: 1.3rem;
    padding: 1.3rem 4rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .recruit-hero-section {
        padding: 5rem 0 3rem 0;
        margin-top: 4rem;
    }

    .recruit-hero-title {
        font-size: 2rem;
    }

    .recruit-hero-subtitle {
        font-size: 1.3rem;
    }

    .recruit-hero-description {
        font-size: 1rem;
    }

    .work-style-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .position-content {
        padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    }

    .position-header {
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .position-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .recruit-cta-title {
        font-size: 2rem;
    }

    .recruit-cta-description {
        font-size: 1.1rem;
    }

    .recruit-cta-btn {
        font-size: 1.1rem;
        padding: 1.1rem 3rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .recruit-hero-section {
        padding: 4rem 0 2.5rem 0;
    }

    .recruit-hero-title {
        font-size: 1.6rem;
    }

    .recruit-hero-subtitle {
        font-size: 1.1rem;
    }

    .recruit-hero-description {
        font-size: 0.95rem;
    }

    .work-style-icon {
        font-size: 3rem;
    }

    .work-style-item-title {
        font-size: 1.3rem;
    }

    .work-style-item-text {
        font-size: 1rem;
    }

    .position-content {
        padding: 1rem 1.2rem 1.2rem 1.2rem;
    }

    .position-header {
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }

    .position-title {
        font-size: 1.8rem;
    }

    .position-subtitle {
        font-size: 1rem;
    }

    .position-section-title {
        font-size: 1.2rem;
    }

    .position-section-text,
    .position-list li {
        font-size: 1rem;
    }

    .employment-tag {
        font-size: 1rem;
        padding: 0.5rem 1.2rem;
    }

    .position-apply-btn {
        font-size: 1.1rem;
        padding: 1.1rem 3rem;
        width: 100%;
    }

    .benefit-icon {
        font-size: 3rem;
    }

    .benefit-title {
        font-size: 1.3rem;
    }

    .benefit-text {
        font-size: 1rem;
    }

    .recruit-cta-title {
        font-size: 1.6rem;
    }

    .recruit-cta-description {
        font-size: 1rem;
    }
}
