/* ===========================================
   Notice / PR Detail Page Styles (Premium Editorial)
   =========================================== */

/* News Detail Section */
.news-detail-section {
    padding: 120px 0;
    background: #ffffff;
}

/* Article */
.news-article {
    max-width: 800px;
    margin: 0 auto;
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #1a1a1a;
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: transparent;
    color: var(--s-color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--s-color-primary);
    border-radius: 40px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-title {
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 24px;
    word-break: keep-all;
    letter-spacing: -0.01em;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: #999999;
    font-size: 0.95rem;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-meta svg {
    color: #cccccc;
}

/* Article Thumbnail */
.article-thumbnail {
    margin-bottom: 60px;
    border-radius: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.article-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333333;
    margin-bottom: 80px;
}

.article-content p {
    margin-bottom: 1.8em;
}

.article-content h2 {
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5em 0 1em;
    color: #1a1a1a;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 2em 0 1em;
    color: #1a1a1a;
}

.article-content ul,
.article-content ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.article-content li {
    margin-bottom: 0.8em;
}

.article-content blockquote {
    margin: 2.5em 0;
    padding: 32px 40px;
    background: #f5f5f5;
    border-left: 2px solid var(--s-color-primary);
    border-radius: 0;
    font-style: italic;
    color: #555555;
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 1.25rem;
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin: 2.5em 0;
}

.article-content a {
    color: var(--s-color-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-content a:hover {
    text-decoration: none;
}

/* Source Link */
.article-source-link {
    margin-bottom: 40px;
    text-align: center;
}

.article-source-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
}

/* Share Section */
.article-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px 0;
    margin-bottom: 60px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: transparent;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--s-color-primary);
    color: #ffffff;
    background: var(--s-color-primary);
}

/* Navigation */
.article-navigation {
    text-align: center;
    margin-bottom: 80px;
}

.article-navigation .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 0;
    padding: 16px 40px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Related News */
.related-news {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 2px solid #1a1a1a;
}

.related-title {
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.related-card {
    display: block;
    text-decoration: none;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease;
}

.related-card:hover {
    transform: translateY(-4px);
}

.related-card-image {
    position: relative;
    padding-top: 75%;
    background: #f4f4f4;
    margin-bottom: 20px;
    overflow: hidden;
}

.related-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-image .img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 14px;
}

.related-card-content {
    padding: 0;
}

.related-card-date {
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 12px;
    display: block;
    letter-spacing: 0.05em;
}

.related-card-title {
    font-family: var(--s-font-display, 'Playfair Display', serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: color 0.3s ease;
}

.related-card:hover .related-card-title {
    color: var(--s-color-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .news-detail-section {
        padding: 80px 0;
    }

    .article-header {
        margin-bottom: 40px;
        padding-bottom: 32px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-meta {
        gap: 16px;
    }

    .article-content {
        font-size: 1.05rem;
        margin-bottom: 60px;
    }

    .article-content blockquote {
        padding: 24px;
        font-size: 1.1rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.75rem;
    }

    .article-share {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }
}