/* 상단 히어로 이미지 영역 */
.post-hero {
    position: relative;
    width: 100%;
    background: #000;
}

/* 썸네일 배경 */
.post-thumb {
    width: 100%;
    overflow: hidden;
    background: #111;
    border-bottom: 1px solid rgba(127, 127, 127, 0.25);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 중앙 정사각형 로고 박스 */
.post-logo-box {
    position: absolute;
    left: 20%;
    bottom: 0;
    transform: translate(-50%, 50%);

    width: 180px;
    aspect-ratio: 1 / 1;

    background: #050505;
    border: 1px solid rgba(98, 98, 98, 0.45);
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 22px;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 18px 45px rgba(0,0,0,0.65),
        0 0 32px rgba(86,215,232,0.16);

    z-index: 5;
}

.post-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* 뉴스 포스트 페이지 */
.post-section {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 160px 0 110px;
}

.post-inner {
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
}

/* 상단 경로 + 목록 버튼 */
.post-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
}

.post-breadcrumb {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    letter-spacing: 0.5px;
}

.post-breadcrumb span {
    margin: 0 10px;
    color: rgba(255,255,255,0.25);
}

.back-list-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 44px;
    padding: 0 20px;

    color: #56d7e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 350;
    white-space: nowrap;

    background: #0d0d10;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;

    transition: 0.28s ease;
}

.back-list-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(86,215,232,0.55);
    background: rgba(255,255,255,0.03);
}

/* 제목 영역 */
.section-label {
    text-align: left;
    display: block;
    color: #56d7e8;
    font-size: 15px;
    font-weight: 350;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.post-title {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: -1px;
    font-weight: 350;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
    word-break: keep-all;
}

.post-summary {
    max-width: 720px;
    margin: 0 0 28px;
    color: rgba(154,154,154,0.7);
    font-size: 15px;
    font-weight: 350;
    line-height: 1.8;
    word-break: keep-all;
}

/* 날짜 / 태그 */
.post-info {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.post-info li {
    position: relative;
}

.post-info li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.18);
    transform: translateY(-50%);
}

.post-info .active {
    color: #56d7e8;
    padding: 6px 13px;
    border: 1px solid rgba(86,215,232,0.55);
    border-radius: 5px;
}


/* 본문 */
.post-content {
    max-width: 850px;
}

.post-content h2 {
    margin: 0 0 18px;
    color: #56d7e8;
    font-size: 22px;
    font-weight: 350;
    letter-spacing: -0.5px;
}

.post-content p {
    margin: 0;
    color: rgba(255,255,255,0.62);
    font-size: 15px;
    font-weight: 350;
    line-height: 1.9;
    word-break: keep-all;
}

.post-content ul {
    margin: 18px 0 0;
    padding-left: 22px;
    color: rgba(255,255,255,0.62);
    font-size: 15px;
    line-height: 2;
}

.post-content li {
    padding-left: 4px;
}

.post-content hr {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 38px 0;
}


/* 스토어 바로가기 */

.store-link-section {
    margin-top: 56px;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.store-link-section h2 {
    margin: 0 0 22px;
    color: #56d7e8;
    font-size: 24px;
    font-weight: 350;
    letter-spacing: -0.5px;
    text-shadow: 0 0 12px rgba(86, 215, 232, 0.35);
}

.store-link-section p {
    margin: 0 0 22px;
    color: rgba(180, 180, 180, 0.75);
    font-size: 15px;
    font-weight: 350;
    line-height: 1.8;
    word-break: keep-all;
}

.store-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.store-link {
    min-width: 170px;
    padding: 13px 16px;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: #ffffff;
    text-decoration: none;

    background: #0d0d10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);

    transition: 0.28s ease;
}

.store-link:hover {
    transform: translateY(-3px);
    border-color: rgba(86, 215, 232, 0.55);
    background: rgba(255, 255, 255, 0.035);
}

.store-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.store-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-text small {
    color: rgba(160, 160, 160, 0.7);
    font-size: 11px;
    font-weight: 350;
    line-height: 1;
}

.store-text strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 450;
    line-height: 1.2;
}

.store-link:hover .store-text strong {
    color: #56d7e8;
}




/* 모바일 */
@media (max-width: 768px) {
    .post-thumb {
        aspect-ratio: 1.5 / 1;
    }

    .post-logo-box {
        width: 120px;
        border-radius: 14px;
        padding: 16px;
    }

    .post-section {
        padding: 110px 0 80px;
    }

    .post-inner {
        width: min(100%, calc(100% - 32px));
    }

    .post-topbar {
        align-items: flex-start;
        margin-bottom: 44px;
    }

    .post-title {
        font-size: 30px;
    }

    .post-info {
        flex-wrap: wrap;
        gap: 14px;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .post-nav-item:first-child {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .post-nav-item.right {
        text-align: left;
    }
}