/* ============================================
   EDITORIAL LUXURY - 워드프레스 글/페이지 커스텀 스타일
   거창 베리 농장 이수미팜베리
   ============================================ */

/* 글 전체 컨테이너 */
.editorial-post {
    font-family: 'Noto Sans KR', sans-serif;
    color: #3A3A3A;
    line-height: 1.9;
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* 글 헤더 */
.editorial-post-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(74, 14, 46, 0.1);
}

.editorial-post-header .post-category {
    display: inline-block;
    padding: 5px 18px;
    background: #FDE8EF;
    color: #C2185B;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.editorial-post-header h1 {
    font-family: 'Noto Serif KR', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.editorial-post-header .post-meta {
    font-size: 0.85rem;
    color: #7A7A7A;
}

/* 본문 제목 */
.editorial-post h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #4A0E2E;
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FDE8EF;
    letter-spacing: -0.01em;
}

.editorial-post h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 36px 0 16px;
}

/* 본문 텍스트 */
.editorial-post p {
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 2;
    color: #3A3A3A;
}

/* 이미지 스타일 */
.editorial-post .post-image {
    margin: 36px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(74, 14, 46, 0.1);
}

.editorial-post .post-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.editorial-post .post-image:hover img {
    transform: scale(1.02);
}

.editorial-post .post-image figcaption {
    padding: 12px 16px;
    background: #FFF8F0;
    font-size: 0.82rem;
    color: #7A7A7A;
    text-align: center;
    font-style: italic;
}

/* 하이라이트 박스 */
.editorial-post .highlight-box {
    background: linear-gradient(135deg, #FDE8EF 0%, #FFF8F0 100%);
    border-left: 4px solid #C2185B;
    padding: 24px 28px;
    margin: 32px 0;
    border-radius: 0 16px 16px 0;
}

.editorial-post .highlight-box p {
    margin-bottom: 0;
    color: #4A0E2E;
    font-weight: 500;
}

/* 정보 카드 그리드 */
.editorial-post .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.editorial-post .info-card {
    background: #FFFFFF;
    border: 1px solid rgba(74, 14, 46, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.editorial-post .info-card:hover {
    box-shadow: 0 8px 30px rgba(74, 14, 46, 0.1);
    transform: translateY(-2px);
}

.editorial-post .info-card h4 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.1rem;
    color: #4A0E2E;
    margin-bottom: 8px;
    font-weight: 600;
}

.editorial-post .info-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #7A7A7A;
    line-height: 1.7;
}

/* 리스트 스타일 */
.editorial-post ul.styled-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.editorial-post ul.styled-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
}

.editorial-post ul.styled-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C2185B;
    flex-shrink: 0;
    margin-top: 8px;
}

/* 비교 테이블 */
.editorial-post .compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.editorial-post .compare-table thead th {
    background: #4A0E2E;
    color: #FFFFFF;
    padding: 16px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: left;
}

.editorial-post .compare-table tbody td {
    padding: 14px 20px;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: #FFFFFF;
}

.editorial-post .compare-table tbody tr:hover td {
    background: #FFF8F0;
}

/* CTA 박스 */
.editorial-post .cta-box {
    background: linear-gradient(135deg, #4A0E2E 0%, #7B1E4A 100%);
    color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 48px 0;
}

.editorial-post .cta-box h3 {
    font-family: 'Noto Serif KR', serif;
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.editorial-post .cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.editorial-post .cta-box .cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #C4A35A;
    color: #4A0E2E;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.editorial-post .cta-box .cta-btn:hover {
    background: #D4B978;
    transform: translateY(-2px);
}

/* FAQ 인라인 */
.editorial-post .inline-faq {
    margin: 40px 0;
}

.editorial-post .inline-faq-item {
    border: 1px solid rgba(74, 14, 46, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.editorial-post .inline-faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    background: #FFF8F0;
    transition: background 0.3s ease;
    font-size: 0.98rem;
}

.editorial-post .inline-faq-item summary:hover {
    background: #FDE8EF;
}

.editorial-post .inline-faq-item .faq-body {
    padding: 16px 24px 20px;
    font-size: 0.94rem;
    color: #7A7A7A;
    line-height: 1.8;
}

/* 반응형 */
@media (max-width: 768px) {
    .editorial-post { padding: 24px 16px 40px; }
    .editorial-post-header h1 { font-size: 1.8rem; }
    .editorial-post h2 { font-size: 1.4rem; }
    .editorial-post .info-grid { grid-template-columns: 1fr; }
    .editorial-post .cta-box { padding: 28px 20px; }
}
