/* Modern Article Styles */
.modern-article {
    max-width: 1290px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-page-header h1 {
    font-family: 'Noto Sans', 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Hero Image */
.article-hero-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 40px;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 500px;
}

/* Container */
.article-container {
    max-width: 860px;
    margin: 0 auto;
}
/* Container */
.modern-article-full .article-container {
    max-width: 1290px;
    margin: 0 auto;
}

/* Status Badges */
.article-status-badge {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 30px;
    font-family: "Rubik", sans-serif;
}

.badge.unpublished {
    background: #FF6B6B;
    color: #fff;
}

.badge.scheduled {
    background: #FFD700;
    color: #1a1a1a;
}

.badge.expired {
    background: #999;
    color: #fff;
}



/* Article Title */
.article-title, .ph-header {
    font-size: 36px;
    font-weight: 600;
    font-family: "Rubik", sans-serif;
    color: #322614;
    margin: 0;
    position: relative;
    display: flex;
    
    margin-bottom: 20px;

}

.modern-article-full .article-title {
    justify-content: center;
}

.article-title::after, .ph-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    /* left: 25%; */
    width: 70px;
    height: 2px;
    background: #C09D5C;
}

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.modern-article-full .article-meta {
    border-bottom: none;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    color: #666;
}

.meta-item svg {
    width: 16px;
    height: 16px;
}

.meta-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-item a:hover {
    color: #C09D5C;
}

/* Tags */
.article-tags {
    margin-bottom: 30px;
}

.article-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-tags .tag {
    display: inline-block;
    padding: 6px 14px;
    background: #F0EDE8;
    border-radius: 30px;
    font-size: 12px;
    font-family: "Rubik", sans-serif;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tags .tag:hover {
    background: #C09D5C;
    color: #fff;
}

/* Article Content */
.article-content {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

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

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: 'Noto Sans', 'Sora', sans-serif;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
}

.article-content blockquote {
    border-left: 4px solid #C09D5C;
    padding-left: 20px;
    margin: 20px 0;
    color: #666;
    font-style: italic;
}

/* Intro text for guests */
.article-intro {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.article-readmore {
    margin-top: 30px;
}

.readmore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.readmore-link:hover {
    background: #C09D5C;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Edit Button */
.article-edit {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-article {
        padding: 20px 15px;
    }
    
    .article-page-header h1,
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-hero-image {
        border-radius: 16px;
        margin-bottom: 25px;
    }
    
    .article-meta {
        gap: 12px;
    }
    
    .meta-item {
        font-size: 12px;
    }
    
    .article-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-meta {
        gap: 10px;
    }
    
    .badge {
        font-size: 10px;
        padding: 4px 10px;
    }
}