.recruit-container {
    max-width: 1360px;
    margin: 0 auto;
}

.recruit-header {
    text-align: center;
    margin-bottom: 8rem;
}

.recruit-title {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    padding-top: 15px;
    letter-spacing: -0.055em;
    color: #1d1d1f;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(90deg, #1aeddb 0%, #1d85cf 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1.5s ease-out;
}

.gradient-text.animate {
    background-position: 0% 0;
}

.recruit-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 3rem;
    text-align: left;
    font-weight: 700;
    position: relative;
    padding-top: 15px;
    letter-spacing: -0.055em;
    margin-bottom: 4rem;
    color: #1d1d1f;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.talent-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
    transition: all 0.3s ease;
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.talent-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.talent-icon, .benefit-icon, .culture-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background:linear-gradient(135deg, #5f9ae5 0%, #0adbe7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	margin-left:-7px;
}

.talent-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.talent-description {
    color: #86868b;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    flex: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
    text-align: center;
    transition: all 0.3s ease;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.benefit-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    color: #1d1d1f;
}
.mini-text {color:#a9a9a9; font-size:0.9rem;}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.culture-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
    transition: all 0.3s ease;
    text-align: center;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.culture-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.culture-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.8rem;
}

.culture-description {
    color: #86868b;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 400;
}

/* 애니메이션 효과 */
.section-header h2 .gradient-text {
    opacity: 0;
    animation: fadeInGradient 1s ease-out 0.3s forwards;
}

@keyframes fadeInGradient {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        background-position: 0% 0;
    }
}

@media (max-width: 1200px) {
    .recruit-container {
        padding: 0 1rem;
    }
    
    .recruit-title,
    .section-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .recruit-header {
        margin-bottom: 4rem;
    }
    
    .section-header h2 {
        margin-bottom: 3rem;
    }
    
	.text-st h2 {font-size:3rem;}

    .talent-grid,
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .benefits-grid {grid-template-columns:1fr 1fr; gap:1.2rem;}
    
    .talent-card,
    .culture-card {
        height: auto;
        padding: 2rem;
    }
    
    .benefit-card {
        height: 150px;
        padding: 1.5rem;
    }
}