/* ==========================================================================
   Section 00 - Hero
   Scope: .aioffice-page
   ========================================================================== */

.aioffice-page .section-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 30px;
    background-image: url(/menu/course-detail/k-digital/aioffice/assets/images/hero-bg02.jpg);
    background-repeat: no-repeat;
    background-color: #f1f2f6;
    background-position: center top;
}

.aioffice-page .section-hero .container {
    gap: 60px;
    align-items: center;
}

.aioffice-page .section-hero .text-container {
    position: relative;
    z-index: 2;
}

.aioffice-page .section-hero .hero-title {
    margin-top: 20px;
    font-size: var(--font-size-h1);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
}

.aioffice-page .section-hero .hero-eyebrow {
    display: block;
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: 15px;
}

.section-hero .text-primary {
    font-weight: var(--font-weight-bold);
}

.aioffice-page .section-hero .hero-img {
    display: none;
}

.aioffice-page .section-hero .hero-title strong {
    color: var(--color-primary);
}

.aioffice-page .section-hero .hero-copy {
    margin-top: 10px;
    font-size: var(--font-size-body-lg);
}

.aioffice-page .section-hero .hero-copy strong {
    color: var(--color-text);
    font-weight: var(--font-weight-semibold);
}

.aioffice-page .section-hero .hero-cta {
    margin-top: 20px;
}

/* ===== 우측 비주얼 ===== */

.aioffice-page .section-hero .contents-container {
    position: relative;
    z-index: 1;
}

.aioffice-page .section-hero .hero-visual {
    position: relative;
}

.aioffice-page .section-hero .hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.aioffice-page .section-hero .hero-stat-badge {
    position: absolute;
    top: -20px;
    right: -12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 14px 18px;
    background: var(--color-surface);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.aioffice-page .section-hero .hero-stat-badge-icon {
    display: flex;
    color: var(--color-success);
}

.aioffice-page .section-hero .hero-stat-badge strong {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1;
}

.aioffice-page .section-hero .hero-stat-badge strong span {
    display: block;
    font-size: var(--font-size-caption);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
}

/* ===== 하단 도구 바 ===== */

.aioffice-page .section-hero .hero-tools-bar {
    margin-top: 56px;
    border-top: 1px solid var(--color-border);
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 20px;
    padding-left: 24px;
}

.aioffice-page .section-hero .hero-tools-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 20px 24px;
    max-width: 1080px;
    margin-inline: auto;
    background: #fff;
    border-radius: 10px;
}

.aioffice-page .section-hero .hero-tool-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.aioffice-page .section-hero .hero-tool-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 20px;
    color: var(--color-primary);
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
    .aioffice-page .section-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aioffice-page .section-hero .contents-container {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .aioffice-page .section-hero {
        padding: 48px 0 0;
    }

    .aioffice-page .section-hero .hero-title {
        font-size: var(--font-size-h1);
    }

    .aioffice-page .section-hero .hero-cta {
        width: 100%;
    }

    .aioffice-page .section-hero .hero-tools-list {
        gap: 20px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }

    .aioffice-page .section-hero .hero-tool-item {
        white-space: nowrap;
    }
}
