/* ABOUT — 페이지 톤은 통일, 블록은 ‘히어로 / 본문 / 위키 CTA’만 나눔 */

html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

.about-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 32px;
}

.page-header h0 {
    color: #F29FA4;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
}

.page-header p {
    color: #B98A8A;
    font-size: 1.1em;
    margin: 0;
}

/* 히어로: 로고·마스코트·영문 슬로건 — 카드보다 가벼운 띠 */
.about-hero {
    text-align: center;
    margin-bottom: 24px;
    padding: 28px 24px 32px;
    background: linear-gradient(135deg, #fff7f7 0%, #ffeef0 100%);
    border: 1px solid #fceff0;
    border-radius: 16px;
}

.about-hero .logoinabout {
    display: block;
    margin: 0 auto 12px;
}

.about-mascot-caption {
    margin: 0 0 16px;
    color: #8a5f5f;
    line-height: 1.6;
    font-size: 0.98em;
}

.about-stella {
    font-size: 1.45em;
    font-weight: 800;
    color: #F29FA4;
    font-family: 'Nexa Bold', 'NanumSquareEB', 'Apple SD Gothic Neo', Arial, sans-serif;
}

.about-tagline-en {
    margin: 0;
    color: #A17272;
    font-size: 1.15em;
    font-weight: 700;
    font-style: italic;
    line-height: 1.55;
    font-family: 'Nexa Bold', 'NanumSquareEB', 'Apple SD Gothic Neo', Arial, sans-serif;
}

/* 본문 스토리: 단일 카드 */
.about-card.about-story {
    margin-bottom: 20px;
}

.about-card {
    background-color: #fff;
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(242, 159, 164, 0.08);
    border: 1px solid #fceff0;
}

.about-story-lead {
    margin: 0 0 8px;
}

.about-story p {
    color: #8a5f5f;
    line-height: 1.75;
    margin: 0 0 18px;
    text-align: left;
    font-size: 0.98em;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-section-title {
    color: #F29FA4;
    font-size: 1.2em;
    font-weight: bold;
    margin: 28px 0 12px;
    padding-left: 12px;
    border-left: 4px solid #F29FA4;
    letter-spacing: 0.02em;
    font-family: 'Nexa Bold', 'NanumSquareEB', 'Apple SD Gothic Neo', Arial, sans-serif;
    text-align: left;
}

.about-section-title:first-of-type {
    margin-top: 22px;
}

.about-wiki-hint {
    margin-top: 28px !important;
    padding-top: 22px;
    border-top: 1px solid #f5e6e8;
    text-align: center;
}

.about-wiki-hint .bold {
    color: #5a3f3f;
    font-size: 1.02em;
}

.about-wiki-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #fff7f7 0%, #ffe9ec 100%);
    border-radius: 16px;
    border: 1px solid #f5d8dc;
    margin-bottom: 32px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-wiki-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 159, 164, 0.2);
}

.about-wiki-card-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.about-wiki-card-text {
    flex: 1;
    min-width: 0;
}

.about-wiki-card-title {
    color: #5a3f3f;
    font-size: 1.1em;
    font-weight: 800;
    font-family: 'Nexa Bold', 'NanumSquareEB', 'Apple SD Gothic Neo', Arial, sans-serif;
}

.about-wiki-card-arrow {
    color: #F29FA4;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.about-wiki-card:hover .about-wiki-card-arrow {
    transform: translateX(4px);
}

@media (max-width: 720px) {
    .about-page {
        padding: 12px;
        margin: 20px auto;
    }

    .page-header h0 {
        font-size: 2em;
    }

    .about-hero {
        padding: 22px 16px 26px;
    }

    .about-card {
        padding: 20px 18px;
    }

    .about-section-title {
        font-size: 1.08em;
        margin-top: 22px;
    }

    .about-wiki-card {
        padding: 14px 16px;
    }
}
