/* ========================================
   Minimal Mono Design Pattern
   이수미팜베리 - 거창 농장 체험
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

/* === Content Wrapper === */
.premium-content-wrapper {
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
    background-color: #ffffff;
    color: #222222;
    line-height: 1.85;
    word-break: keep-all;
    padding: 48px;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    border: none;
    max-width: 780px;
    margin: 0 auto;
}

/* === Title === */
.premium-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 2.2em;
    font-weight: 900;
    color: #111111;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #111111;
    background-clip: unset;
    text-align: left;
    margin-bottom: 40px;
    text-shadow: none;
    letter-spacing: -0.5px;
    line-height: 1.3;
    border-bottom: 3px solid #111111;
    padding-bottom: 20px;
}

/* === Headings === */
.premium-content-wrapper h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    color: #111111;
    text-align: left;
    padding-bottom: 12px;
    margin: 48px 0 24px 0;
    border-bottom: 1px solid #dddddd;
    position: relative;
    letter-spacing: -0.3px;
}

.premium-content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #111111;
}

.premium-content-wrapper h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
    color: #222222;
    margin: 36px 0 16px 0;
    letter-spacing: -0.2px;
}

/* === Paragraphs === */
.premium-content-wrapper p {
    font-size: 1em;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.9;
    font-weight: 400;
}

/* === Links === */
.premium-content-wrapper a {
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.premium-content-wrapper a:hover {
    opacity: 0.6;
}

/* === Lists === */
.premium-content-wrapper ul,
.premium-content-wrapper ol {
    padding-left: 24px;
    margin: 20px 0;
}

.premium-content-wrapper li {
    margin-bottom: 10px;
    color: #333333;
    font-size: 0.95em;
    line-height: 1.8;
}

.premium-content-wrapper ul li::marker {
    color: #999999;
}

/* === Images === */
.premium-image-wrapper {
    margin: 36px 0;
}

.premium-image-wrapper .image-container {
    position: relative;
    overflow: hidden;
}

.premium-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s ease;
}

.premium-image-wrapper img:hover {
    filter: grayscale(0%);
}

.premium-image-wrapper .ai-disclaimer {
    display: none;
}

/* === Info Highlight === */
.info-highlight {
    background: #f5f5f5;
    padding: 28px 32px;
    margin: 32px 0;
    border-left: 3px solid #111111;
    border-radius: 0;
}

.info-highlight p {
    color: #444444;
    font-size: 0.95em;
    margin: 0;
    font-style: normal;
}

/* === Purchase / CTA Section === */
.premium-purchase-section {
    margin: 48px 0;
    padding: 0;
}

.purchase-content {
    background: #111111;
    padding: 40px;
    text-align: center;
}

.purchase-content h3 {
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 16px;
}

.purchase-content p {
    color: #cccccc;
    font-size: 0.9em;
}

.premium-purchase-button {
    display: inline-block;
    background: #ffffff;
    color: #111111 !important;
    padding: 14px 40px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
    border: 2px solid #ffffff;
}

.premium-purchase-button:hover {
    background: transparent;
    color: #ffffff !important;
}

/* === Blockquote === */
.premium-content-wrapper blockquote {
    border-left: 3px solid #111111;
    padding: 16px 24px;
    margin: 24px 0;
    background: #fafafa;
    font-style: normal;
}

.premium-content-wrapper blockquote p {
    color: #555555;
    font-size: 0.95em;
}

/* === Table === */
.premium-content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.premium-content-wrapper th {
    background: #111111;
    color: #ffffff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 500;
    font-size: 0.9em;
}

.premium-content-wrapper td {
    padding: 12px 16px;
    border-bottom: 1px solid #eeeeee;
    font-size: 0.9em;
    color: #444444;
}

.premium-content-wrapper tr:hover td {
    background: #f9f9f9;
}

/* === Strong / Bold === */
.premium-content-wrapper strong {
    font-weight: 700;
    color: #111111;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
    .premium-content-wrapper {
        padding: 24px 16px;
    }

    .premium-title {
        font-size: 1.6em;
    }

    .premium-content-wrapper h2 {
        font-size: 1.3em;
    }

    .info-highlight {
        padding: 20px;
    }

    .purchase-content {
        padding: 28px 20px;
    }
}
