/* ─────────────────────────────────────────────
   Section 2 : Showcase Section
   Structure: Title → 2x Alternating Split Blocks
   Font: Pretendard (사이트 전체 통일)
   ───────────────────────────────────────────── */

/* ── Section Wrapper ── */
.showcase-section {
    padding: 100px 0 80px;
    background: #fff;
    width: 100%;
    position: relative;
}

/* ── Centered Title Area ── */
.showcase-header {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 24px;
}

.showcase-header__title {
    font-family: 'Pretendard', sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #111;
    margin: 0 0 16px 0;
    word-break: keep-all;
}

.showcase-header__sub {
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #999;
    margin: 0 auto;
    max-width: 480px;
    word-break: keep-all;
}

/* ── Split Block (Image + Text) ── */
.showcase-block {
    display: flex;
    align-items: stretch;
    width: 100%;
    /* 두 블록 동일한 높이 고정 */
    height: 420px;
}

/* 두 번째 블록: 좌우 반전 */
.showcase-block--reverse {
    flex-direction: row-reverse;
}

/* ── Image / Video Side ── */
.showcase-block__media {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.showcase-block__media img,
.showcase-block__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Text Side ── */
.showcase-block__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 64px;
    background: #f8f9fb;
}

.showcase-block--reverse .showcase-block__content {
    background: #f4f5f7;
}

.showcase-block__label {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    display: block;
}

.showcase-block__heading {
    font-family: 'Pretendard', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    word-break: keep-all;
}

.showcase-block__desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #777;
    margin: 0;
    word-break: keep-all;
}

/* ── "자세히 보기" 링크 ── */
.showcase-block__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.showcase-block__link:hover {
    gap: 10px;
    color: #111;
}

.showcase-block__link::after {
    content: '→';
    font-size: 15px;
    transition: transform 0.3s ease;
}

.showcase-block__link:hover::after {
    transform: translateX(3px);
}

/* ── Scroll-Reveal Animations ── */

/* Header Animation */
/* Removed custom opacity/transform to let scroll-reveal handle it */

/* Blocks */
/* Blocks Animation */
/* Removed custom opacity/transform to let scroll-reveal handle it */

/* Removed override blocking since scroll-reveal is now on children */

/* ── Responsive: Tablet (≤1200px) ── */
@media (max-width: 1200px) {
    .showcase-section {
        padding: 80px 0 60px;
    }

    .showcase-header__title {
        font-size: 28px;
    }

    .showcase-block {
        height: 360px;
    }

    .showcase-block__content {
        padding: 48px 40px;
    }

    .showcase-block__heading {
        font-size: 22px;
    }
}

/* ── Responsive: Mobile (≤768px) ── */
@media (max-width: 768px) {
    .showcase-section {
        padding: 64px 0 48px;
    }

    .showcase-header {
        margin-bottom: 40px;
    }

    .showcase-header__title {
        font-size: 24px;
    }

    .showcase-header__sub {
        font-size: 13px;
    }

    .showcase-block,
    .showcase-block--reverse {
        flex-direction: column;
        height: auto;
    }

    .showcase-block__media {
        flex: none;
        height: 240px;
    }

    .showcase-block__content {
        padding: 36px 24px;
    }

    .showcase-block__heading {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .showcase-block__label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .showcase-block__desc {
        font-size: 13px;
    }

    .showcase-block__link {
        margin-top: 20px;
    }
}