/* Linglow Official Page - Base Styles */

@import url('/fonts/SpoqaHanSansNeo.css');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2084F7;
    --color-primary-light: #7FB6F5;
    --color-text-dark: #111111;
    --color-text-gray: #666666;
    --color-text-light: #AAAAAA;
    --color-bg: #FFFFFF;
    --color-bg-light: #F6F7F8;
    --color-footer-bg: #333333;
    --color-border: #666666;
    --font-family: 'Spoqa Han Sans Neo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --content-width: 1240px;
    --side-padding: 340px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-dark);
    background-color: var(--color-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.025em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1920px) {
    .container {
        padding: 0;
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-bg);
    height: 80px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    height: 36px;
    width: auto;
}

.header__nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 30px;
}

.header__nav a.header__nav-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text-dark);
    text-align: center;
}

.header__nav a.header__nav-link.active {
    color: var(--color-primary);
    font-weight: 500;
}

.header__nav a.header__nav-link:hover {
    color: var(--color-primary);
}

/* Language Selector */
.lang-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 10px;
    position: relative;
}

.lang-selector__current {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text-dark);
    letter-spacing: -0.025em;
    text-align: center;
}

.lang-selector__current svg {
    width: 10px;
    height: 6px;
    flex: none;
    transition: transform 0.2s ease;
}

.lang-selector__current svg path {
    transition: fill 0.2s ease;
}

.lang-selector.open .lang-selector__current {
    color: var(--color-primary);
}

.lang-selector.open .lang-selector__current svg {
    transform: rotate(180deg);
}

.lang-selector.open .lang-selector__current svg path {
    fill: var(--color-primary);
}

.lang-selector__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--color-bg);
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 200;
}

.lang-selector.open .lang-selector__dropdown {
    display: block;
}

.lang-selector__dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--color-text-dark);
    font-size: 14px;
}

.lang-selector__dropdown a:hover {
    background-color: var(--color-bg-light);
}

.lang-selector__dropdown a.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Hamburger Button - hidden on desktop */
.header__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.mobile-menu__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #FFFFFF;
    border-left: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
}

.mobile-menu__drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 60px;
    padding: 0 20px;
}

.mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mobile-menu__body {
    padding: 20px 24px;
    flex: 1;
    overflow-y: auto;
}

.mobile-menu__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -0.025em;
    color: #111111;
    margin-bottom: 30px;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu__link {
    display: flex;
    align-items: flex-end;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #111111;
}

.mobile-menu__link.active {
    color: var(--color-primary);
    font-weight: 500;
}

.mobile-menu__lang {
    margin-top: 26px;
}

.mobile-menu__lang .lang-selector {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu__lang .lang-selector__current {
    font-size: 16px;
    gap: 6px;
}

.mobile-menu__lang .lang-selector.open .lang-selector__current {
    color: var(--color-primary);
}

.mobile-menu__lang .lang-selector.open .lang-selector__current svg path {
    fill: var(--color-primary);
}

.mobile-menu__lang .lang-selector__dropdown {
    position: static;
    display: none;
    margin-top: 12px;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    max-height: none;
    overflow-y: visible;
}

.mobile-menu__lang .lang-selector.open .lang-selector__dropdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__lang .lang-selector__dropdown a {
    display: flex;
    align-items: flex-end;
    padding: 0 0 0 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #111111;
}

.mobile-menu__lang .lang-selector__dropdown a:hover {
    background: none;
    color: var(--color-primary);
}

.mobile-menu__lang .lang-selector__dropdown a.active {
    color: var(--color-primary);
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 59, 128, 0) -0.97%, #002753 100.97%);
    transform: scaleX(-1);
}

.hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 340px;
    padding-right: 20px;
}

@media (max-width: 1440px) {
    .hero__content {
        padding-left: 80px;
    }
}

@media (max-width: 768px) {
    .hero__content {
        padding-left: 20px;
    }
}

.hero__title {
    width: 404px;
    font-family: 'Spoqa Han Sans Neo', var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 44px;
    line-height: 140%;
    display: flex;
    align-items: flex-end;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: #FFFFFF;
    max-width: 371px;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 0;
    gap: 20px;
    width: 360px;
}

.hero__button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
}

.hero__button:hover {
    opacity: 1;
    text-decoration: none;
}

.hero__button-icon {
    height: 56px;
    width: auto;
    flex: none;
}

.hero__button-text {
    font-family: 'Spoqa Han Sans Neo', var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: flex-end;
    text-align: center;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    flex: none;
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 140%;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text-gray);
}

/* Life Section - 3 cards */
.life-section {
    padding: 120px 0 0;
}

.life-section .section-header {
    margin-bottom: 60px;
}

.life-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.life-cards::-webkit-scrollbar {
    display: none;
}

.life-card {
    position: relative;
    width: 400px;
    height: 660px;
    border-radius: 30px;
    overflow: hidden;
}

.life-card>picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.life-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.life-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(59, 69, 99, 0) 66.15%, #4C4C4C 100%);
    border-radius: 30px;
}

.life-card__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.life-card__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.025em;
    color: #FFFFFF;
}

/* Job Section - 2 large cards */
.job-section {
    padding: 120px 0 0;
}

.job-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.job-card {
    position: relative;
    height: 512px;
    border-radius: 30px;
    overflow: hidden;
}

.job-card>picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.job-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 35%);
}

.job-card__content {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
}

.job-card__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    color: #FFFFFF;
    max-width: 434px;
}

/* Community Section */
.community-section {
    padding: 120px 0 120px;
}

.community-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.community-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background-color: var(--color-bg-light);
    border: 1px solid transparent;
    outline: 0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.community-tag:focus {
    outline: 0;
}

.community-tag:hover {
    border-color: var(--color-text-dark);
}

.community-tag.active {
    background-color: var(--color-text-dark);
    color: #FFFFFF;
    border-color: var(--color-text-dark);
}

.community-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    color: var(--color-primary);
    margin-top: 20px;
}

.community-more svg {
    width: 16px;
    height: 16px;
}

.community-image {
    margin-top: 60px;
    text-align: center;
}

.community-image__img {
    max-width: 100%;
    border-radius: 20px;
}

/* Video/Image Placeholder */
.media-placeholder {
    width: 100%;
    height: 620px;
    background-color: #C4C4C4;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
    font-size: 18px;
}

/* Footer */
.footer {
    padding: 41px 0;
    background-color: var(--color-footer-bg);
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.footer__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--color-text-light);
}

.footer__divider {
    width: 1px;
    height: 12px;
    background-color: var(--color-text-light);
}

.footer__line {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__email {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: var(--color-text-light);
    text-decoration: underline;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: var(--color-text-light);
}

.footer__link:hover {
    color: #FFFFFF;
}

/* FAQ / Guide Page */
.faq-page {
    padding-top: 120px;
    padding-bottom: 60px;
}

.faq-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 140%;
    letter-spacing: -0.025em;
    color: #111111;
    margin-bottom: 0;
    align-self: flex-start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

@media (min-width: 1920px) {
    .faq-list {
        padding: 0;
    }
}

.faq-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    font-family: var(--font-family);
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    flex: none;
}

.faq-item__icon .icon-minus {
    display: none;
}

.faq-item.open .faq-item__icon .icon-plus {
    display: none;
}

.faq-item.open .faq-item__icon .icon-minus {
    display: block;
}

.faq-item__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.faq-item__question {
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.025em;
    color: #111111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.faq-item.open .faq-item__question {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.faq-item__date {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #666666;
}

.faq-item__answer {
    display: none;
    padding: 0 0 0 40px;
}

.faq-item.open .faq-item__answer {
    display: block;
}

.faq-item__answer-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #333333;
}

.faq-item__answer-text p {
    margin-bottom: 16px;
}

.faq-item__answer-text p:last-child {
    margin-bottom: 0;
}

.faq-item__answer-text strong {
    font-weight: 700;
}

.faq-item__divider {
    width: 100%;
    height: 1px;
    background: #E5E5E5;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .faq-item__question {
        font-size: 18px;
    }

    .faq-item__date {
        font-size: 14px;
    }

    .faq-item__answer-text {
        font-size: 16px;
    }

    .faq-item__answer {
        padding-left: 40px;
    }
}

/* Echo Story Page */
.story-page {
    padding-top: 120px;
    padding-bottom: 60px;
}

.story-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1920px) {
    .story-list {
        padding: 0;
    }
}

.story-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 140%;
    letter-spacing: -0.025em;
    color: #111111;
    align-self: flex-start;
}

.story-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.story-item__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.story-item__tag-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.story-item__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    gap: 6px;
    background: #F6F7F8;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #111111;
}

.story-item__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.025em;
    color: #111111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.story-item__date {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #666666;
}

.story-item__divider {
    width: 100%;
    height: 1px;
    background: #E5E5E5;
}

.story-item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

/* Pagination */
.pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.pagination__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.2;
}

.pagination__arrow.active {
    opacity: 1;
}

.pagination__page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: #F6F7F8;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #333333;
    text-align: center;
}

.pagination__page.active {
    background: var(--color-text-dark);
    color: #FFFFFF;
}

/* Echo Story Detail Page */
.story-detail {
    padding-top: 120px;
    padding-bottom: 60px;
}

.story-detail__container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1920px) {
    .story-detail__container {
        padding: 0;
    }
}

.story-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 44px;
    line-height: 140%;
    letter-spacing: -0.025em;
    color: #111111;
    text-decoration: none;
    margin-bottom: 60px;
}

.story-detail__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #F6F7F8;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #111111;
    margin-bottom: 10px;
}

.story-detail__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.025em;
    color: #111111;
    margin-bottom: 10px;
}

.story-detail__date {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #666666;
    margin-bottom: 24px;
}

.story-detail__divider {
    width: 100%;
    height: 1px;
    background: #E5E5E5;
    margin-bottom: 40px;
}

.story-detail__body {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #333333;
}

.story-detail__body p {
    margin-bottom: 20px;
}

.story-detail__image {
    margin-bottom: 32px;
}

.story-detail__category-img {
    width: 100%;
    border-radius: 12px;
}

.story-detail__content {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.story-detail__content h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.025em;
    color: #111111;
    margin-bottom: 20px;
}

.story-detail__content h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #111111;
    margin-top: 32px;
    margin-bottom: 12px;
}

.story-detail__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: -0.025em;
    color: #333333;
    margin-bottom: 16px;
}

.story-detail__tip {
    margin-top: 40px;
    padding: 24px;
    background: #F6F7F8;
    border-radius: 12px;
}

.story-detail__tip strong {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #111111;
    margin-bottom: 12px;
}

.story-detail__tip ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-detail__tip li {
    position: relative;
    padding-left: 16px;
    font-size: 15px;
    line-height: 180%;
    color: #333333;
}

.story-detail__tip li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.story-detail__content blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    background: #F6F7F8;
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.story-detail__content blockquote p {
    margin: 0;
    font-size: 15px;
    line-height: 170%;
    color: #333333;
    font-style: normal;
}

/* Story Prev/Next Navigation */
.story-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #E5E5E5;
}

.story-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.025em;
    color: #111111;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.2s ease;
}

.story-nav__link:hover {
    color: var(--color-primary);
}

.story-nav__link--placeholder {
    visibility: hidden;
}

.story-nav__link svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .story-title {
        font-size: 28px;
    }

    .story-item__tag {
        font-size: 14px;
    }

    .story-item__title {
        font-size: 18px;
    }

    .story-item__date {
        font-size: 14px;
    }

    .story-detail__back {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .story-detail__back svg {
        width: 24px;
        height: 24px;
    }

    .story-detail__title {
        font-size: 20px;
    }

    .story-nav__link {
        font-size: 14px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 36px;
        width: auto;
        max-width: 100%;
    }

    .section-title {
        font-size: 36px;
    }

    .life-cards {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
        cursor: grab;
    }

    .life-card {
        flex: 0 0 300px;
        height: 500px;
        scroll-snap-align: center;
    }

    .job-cards {
        grid-template-columns: 1fr;
    }

    .job-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --side-padding: 20px;
    }

    .header {
        height: 60px;
    }

    .header__nav {
        display: none;
    }

    .header>.container>.lang-selector {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .hero {
        height: 480px;
        background: url('/images/hero-bg-mobile.webp') center/cover no-repeat;
    }

    .hero__bg {
        display: none;
    }

    .hero__title {
        font-size: 28px;
        width: auto;
        max-width: 100%;
    }

    .hero__subtitle {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .hero__buttons {
        width: auto;
        gap: 12px;
        flex-direction: column;
    }

    .hero__button-icon {
        height: 50px;
    }

    .hero__button-text {
        font-size: 14px;
    }

    .section-header {
        text-align: left;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .community-more {
        justify-content: flex-start;
    }

    .community-tags {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .community-tags::-webkit-scrollbar {
        display: none;
    }

    .community-tag {
        flex-shrink: 0;
    }

    .life-section,
    .job-section,
    .community-section {
        padding: 48px 0;
    }

    .life-cards {
        gap: 12px;
        scroll-snap-type: x mandatory;
    }

    .life-card {
        flex: 0 0 calc(100vw - 60px);
        height: 528px;
    }

    .life-card__title,
    .job-card__title {
        font-size: 20px;
    }

    .job-card__title {
        font-size: 18px;
        font-weight: 700;
    }

    .job-card {
        height: 268px;
    }

    .job-card__content {
        top: 30px;
        left: 30px;
        right: 30px;
    }

    .job-card__title br {
        display: none;
    }

    .community-tags {
        gap: 10px;
    }

    .community-tag {
        font-size: 14px;
        padding: 10px 12px;
    }

    .media-placeholder {
        height: 300px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer__divider {
        display: none;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}