/* ==========================================================================
   캠페인 전용 CSS (중년 리커버리 런 등)
   ========================================================================== */

/* Hero Section */
.campaign-hero {
    min-height: 80vh;
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f0f7f4 0%, #ffffff 100%);
    display: flex;
    align-items: center;
}

.campaign-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: var(--accent-green);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.campaign-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 20px;
}

.campaign-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Lead Magnet Form */
.lead-magnet-box {
    background: white;
    border: 2px solid var(--accent-green);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(124, 145, 112, 0.1);
}

.lead-magnet-box h3 {
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.lead-magnet-box p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    gap: 10px;
}

.email-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}
.email-form input:focus {
    border-color: var(--accent-green);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-green);
    color: white;
    border: none;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}
.btn-primary:hover {
    background-color: #657a5a;
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Curriculum Section */
.curriculum-section {
    padding: 100px 0;
    background-color: white;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.curr-card {
    background: var(--bg-sub);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.curr-step {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-green);
}

.curr-list {
    list-style: none;
}

.curr-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}
.curr-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.highlight-text {
    font-weight: 700;
    color: var(--text-main);
    background-color: #fef08a; /* 연한 노란색 형광펜 효과 */
    padding: 2px 6px;
    border-radius: 4px;
}

/* Gear Section */
.gear-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.gear-content-wrapper {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.gear-image-side {
    flex: 1;
}

.gear-image-side img {
    height: 100%;
    object-fit: cover;
}

.gear-text-side {
    flex: 1;
}

.gear-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.gear-item {
    display: block;
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gear-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--accent-green);
}

.gear-item h4 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.gear-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* 반응형 */
@media (max-width: 900px) {
    .campaign-hero-content, .gear-content-wrapper {
        flex-direction: column;
    }
}
