/* 게시글 상세 페이지 스타일 */
/* Pretendard Variable (가변 폰트 - 용량 작음) */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css');

/* Noto Sans KR (필요한 두께만) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');

.post-detail-section {
    padding: 148px 30px 85px;
    background: #fff;
    min-height: 100vh;
}

.post-container {
    max-width: 891px;
    margin: 0 auto;
}

/* 카테고리 배지 */
.post-badge {
    display: inline-block;
    margin-bottom: 31px;
}

.badge-text {
    background: #006FFF;
    color: white;
    padding: 8px 10px;
    border-radius: 21px;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

/* 제목 */
.post-title {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #011;
    margin-bottom: 41px;
    word-break: keep-all;
}

/* 메타 정보 */
.post-meta {
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    padding: 41px;
    border-radius: 21px;
    margin-bottom: 61px;
    gap: 41px;
}

.post-meta-left {
    width: 100%;
}

.meta-item {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #8b8b8b;
    margin: 0;
    line-height: 1.4;
}

.post-meta-right {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.meta-date {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* 본문 내용 */
.post-content {
    max-width: 1240px;
    margin: 0 auto;
}

.content-box {
    background: #fff;
    border-radius: 10px;
    padding: 51px;
    text-align: center;
}

.content-text {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* 이미지 영역 */
.content-image-area {
    margin: 60px 0;
    text-align: center;
}

.content-image {
    width: 70%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    border: 3px solid #e0e0e0;
    object-fit: cover;
}

/* 본문 제목 */
.content-heading {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin: 80px 0 40px 0;
    line-height: 1.3;
}

.content-subheading {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 60px 0 30px 0;
    line-height: 1.3;
    padding-left: 20px;
    border-left: 5px solid #006FFF;
}

/* 본문 텍스트 */
.content-body {
    margin: 40px 0;
}

.body-text {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin: 10px 0;
}

.body-highlight {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #006FFF;
    line-height: 1.8;
    margin: 10px 0;
}

.body-semibold {
    font-weight: 600;
}

/* 반응형 스타일 */
@media (max-width: 1280px) {
    .post-container {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .post-detail-section {
        padding: 100px 15px 60px;
    }

    .post-title {
        font-size: 36px;
    }

    .post-meta {
        gap: 31px;
        padding: 31px;
    }

    .meta-item {
        font-size: 16px;
    }

    .content-text {
        font-size: 18px;
    }

    .content-heading {
        font-size: 32px;
        margin: 40px 0 20px 0;
    }

    .content-subheading {
        font-size: 26px;
        margin: 30px 0 15px 0;
        padding-left: 12px;
        border-left: 3px solid #006FFF;
    }

    .body-text,
    .body-highlight {
        font-size: 16px;
    }

    .content-image {
        width: 90%;
    }

    .content-box {
        padding: 25px;
    }
}