/* ============================================================
   culture-page.css — 문화 페이지 고유 스타일
   ============================================================ */

/* ── Hero Background ── */
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(139, 111, 71, .06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 111, 71, .04) 0%, transparent 50%);
    pointer-events: none
}

/* ── Work Style Cards ── */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 56px 0
}

.work-card {
    padding: 40px 32px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden
}

.work-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ac), var(--ac2));
    transform: scaleX(0);
    transition: transform .4s var(--ease)
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(139, 111, 71, .08);
    border-color: rgba(139, 111, 71, .15)
}

.work-card:hover::after {
    transform: scaleX(1)
}

.work-card .w-num {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ac), #c9a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .2;
    line-height: 1;
    margin-bottom: 16px
}

.work-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.work-card p {
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.8
}

.work-card .example {
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--ac-light);
    border-radius: 12px;
    font-size: 13px;
    color: var(--tx2);
    line-height: 1.7;
    border-left: 3px solid var(--ac)
}

.work-card .example strong {
    color: var(--ac)
}

/* ── Team Interview ── */
.interview-card {
    margin: 32px 0;
    padding: 48px 40px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(139, 111, 71, .06);
    box-shadow: 0 2px 24px rgba(139, 111, 71, .04);
    position: relative;
    transition: all .4s var(--ease)
}

.interview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(139, 111, 71, .08);
    border-color: rgba(139, 111, 71, .12)
}

.interview-card .big-quote {
    position: absolute;
    top: 20px;
    right: 32px;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--ac), #c9a96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .1
}

.interview-card .int-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

.interview-card .role-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--ac);
    background: var(--ac-light);
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: .03em
}

.interview-card .tenure {
    font-size: 13px;
    color: var(--tx3)
}

.int-question {
    font-size: 15px;
    font-weight: 700;
    color: var(--ac);
    margin-bottom: 8px;
    margin-top: 24px
}

.int-question:first-of-type {
    margin-top: 0
}

.int-answer {
    font-size: 15px;
    color: var(--tx2);
    line-height: 1.9;
    padding-left: 16px;
    border-left: 2px solid rgba(139, 111, 71, .1)
}

/* ── Career Path ── */
.career-path {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 56px 0;
    position: relative
}

.career-step {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(139, 111, 71, .06);
    padding: 36px 24px;
    text-align: center;
    position: relative;
    transition: all .3s var(--ease)
}

.career-step:first-child {
    border-radius: var(--radius) 0 0 var(--radius)
}

.career-step:last-child {
    border-radius: 0 var(--radius) var(--radius) 0
}

.career-step:hover {
    background: var(--ac-light);
    transform: translateY(-4px);
    z-index: 1;
    box-shadow: 0 12px 32px rgba(139, 111, 71, .08)
}

.career-step .step-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--ac);
    letter-spacing: .1em;
    margin-bottom: 12px
}

.career-step .step-icon {
    font-size: 32px;
    margin-bottom: 12px
}

.career-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px
}

.career-step p {
    font-size: 13px;
    color: var(--tx2);
    line-height: 1.6
}

.career-arrow {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--ac);
    padding: 0 4px;
    font-weight: 300
}

/* ── Day Timeline ── */
.day-timeline {
    position: relative;
    margin: 56px 0;
    padding-left: 56px
}

.day-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--ac), rgba(139, 111, 71, .1))
}

.day-item {
    position: relative;
    margin-bottom: 36px;
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.day-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--ac);
    transition: all .3s
}

.day-item:hover::before {
    background: var(--ac);
    transform: scale(1.3)
}

.day-time {
    font-size: 14px;
    font-weight: 700;
    color: var(--ac);
    min-width: 60px;
    padding-top: 2px
}

.day-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px
}

.day-content p {
    font-size: 14px;
    color: var(--tx2);
    line-height: 1.7
}

/* ── Benefits Grid ── */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 56px 0
}

.benefit-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid rgba(139, 111, 71, .06);
    transition: all .4s var(--ease)
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139, 111, 71, .06);
    border-color: rgba(139, 111, 71, .15)
}

.benefit-card .b-icon {
    font-size: 40px;
    margin-bottom: 16px
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px
}

.benefit-card p {
    font-size: 14px;
    color: var(--tx2);
    line-height: 1.7
}

.benefit-card .b-detail {
    margin-top: 12px;
    font-size: 13px;
    color: var(--tx3);
    padding-top: 12px;
    border-top: 1px solid rgba(139, 111, 71, .08);
    line-height: 1.6
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .work-grid {
        grid-template-columns: 1fr
    }

    .career-path {
        flex-direction: column
    }

    .career-step:first-child {
        border-radius: var(--radius) var(--radius) 0 0
    }

    .career-step:last-child {
        border-radius: 0 0 var(--radius) var(--radius)
    }

    .career-arrow {
        justify-content: center;
        transform: rotate(90deg);
        padding: 8px 0
    }

    .benefit-grid {
        grid-template-columns: 1fr 1fr
    }

    .interview-card {
        padding: 32px 24px
    }
}

@media (max-width: 600px) {
    .benefit-grid {
        grid-template-columns: 1fr
    }
}