/**
 * ForgR Article Layout: CLASSIC
 * Centered content, optional sidebar, traditional blog post feel
 */

.layout-article-classic .single-post {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.layout-article-classic .single-post .entry-content {
    max-width: 720px;
}

/* Article Header */
.layout-article-classic .entry-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.layout-article-classic .entry-category {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--forgr-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.layout-article-classic .entry-title {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.layout-article-classic .entry-meta {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.layout-article-classic .entry-meta .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.layout-article-classic .entry-meta .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Featured Image */
.layout-article-classic .post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.layout-article-classic .post-thumbnail img {
    width: 100%;
    height: auto;
}

/* Content Typography */
.layout-article-classic .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.layout-article-classic .entry-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.layout-article-classic .entry-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.layout-article-classic .entry-content ul,
.layout-article-classic .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.layout-article-classic .entry-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.layout-article-classic .entry-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-left: 4px solid var(--forgr-primary);
    font-size: 1.15rem;
    font-style: italic;
}

.layout-article-classic .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* Sidebar */
.layout-article-classic .sidebar {
    position: sticky;
    top: 2rem;
}

.layout-article-classic .sidebar .widget {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.layout-article-classic .sidebar .widget-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--forgr-primary);
}

/* Tags */
.layout-article-classic .entry-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.layout-article-classic .entry-tags a {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #666;
    margin: 0.25rem;
    transition: background 0.2s ease;
}

.layout-article-classic .entry-tags a:hover {
    background: var(--forgr-primary);
    color: white;
}

/* Author Box */
.layout-article-classic .author-box {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.layout-article-classic .author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.layout-article-classic .author-box .author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.layout-article-classic .author-box .author-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Mobile responsive - no sidebar */
@media (max-width: 1023px) {
    .layout-article-classic .single-post {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .layout-article-classic .sidebar {
        position: relative;
        top: 0;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #eee;
    }

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