/* Recruit Benefit Page Styles */

/* Header Section */
.benefit-header {
    margin-bottom: 60px;
    text-align: center;
}

.benefit-tit-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-tit {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.benefit-subtit {
    font-size: 18px;
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
}

.benefit-slogan {
    font-size: 24px;
    color: #333;
    line-height: 1.4;
}

.benefit-slogan strong {
    font-weight: 700;
    color: var(--point-color);
}

/* Grid Layout */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styles */
.benefit-card {
    background: #fff;
    border: 1px solid var(--point-color);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--point-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: all 0.3s ease;
}


.benefit-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.benefit-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--point-color);
}

.benefit-list {
    text-align: left;
    padding: 0 10px;
}

.benefit-list li {
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
	font-weight:500;
}

.benefit-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    color: var(--point-color);
}

.benefit-fac-grid {display:grid; grid-template-columns:repeat(3, 1fr); grid-gap:1rem;}
.benefit-fac-grid .one {height:300px; overflow:hidden; position:relative;}
.benefit-fac-grid .one img {object-fit:cover; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2; }
.benefit-fac-grid .one .txt {position:absolute; background:linear-gradient(
0deg, rgba(0,0,0,0.8), transparent); color:#fff; font-weight:700; padding:60px 20px 15px 20px; bottom:0; left:0; width:100%; z-index:4;}


/* Responsive */
@media (max-width: 1200px) {
    .benefit-tit {
        font-size: 32px;
    }

    .benefit-subtit {
        font-size: 16px;
    }

    .benefit-slogan {
        font-size: 20px;
    }

    .benefit-grid {
        grid-template-columns:1fr;
    }
    .benefit-card {
        padding: 30px 20px;
    }
	.benefit-fac-grid {grid-template-columns:1fr;}
	.benefit-fac-grid .one {height:initial; padding-top:75%;}
}
