

.separator {
    margin: 0 10px;
    color: var(--light-text);
}

.current {
    color: var(--light-text);
}

/* Article Main */
.article-main {
    padding: 40px 0;
}

.article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    overflow: hidden;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

/* Article Header */
.article-header {
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, var(--dark-background) 0%, var(--card-background) 100%);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.category {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.article-meta time,
.read-time {
    color: var(--light-text);
}

.article-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
    line-height: 1.4;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.author-title {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Article Image */
.article-image {
    margin-bottom: 40px;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-caption {
    padding: 15px 40px;
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
    text-align: center;
    background: var(--dark-background);
}

/* Article Content */
.article-content {
    padding: 0 40px 40px;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
}

.article-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-color);
}

.article-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
}

    .article-quote::before {
        content: '"';
        font-size: 4rem;
        position: absolute;
        top: -10px;
        left: 20px;
        opacity: 0.3;
    }

    .article-quote cite {
        display: block;
        margin-top: 15px;
        font-size: 0.9rem;
        opacity: 0.9;
        font-style: normal;
    }

.article-list {
    margin: 20px 0;
    padding-left: 20px;
}

    .article-list li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: var(--text-color);
    }

    .article-list strong {
        color: var(--primary-color);
    }

.article-image-inline {
    margin: 30px 0;
    text-align: center;
}

.inline-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.article-tips {
    background: var(--dark-background);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

    .article-tips h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-family: "Playfair Display", serif;
    }

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip {
    background: var(--card-background);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-color);
    border: 1px solid var(--border-color);
}

    .tip h4 {
        color: var(--primary-color);
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .tip p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-color);
    }

/* Article Footer */
.article-footer {
    padding: 30px 40px;
    background: var(--dark-background);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags,
.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tag-label,
.share-label {
    font-weight: 600;
    color: var(--text-color);
}

.tag {
    background: var(--input-background);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

    .tag:hover {
        background: var(--primary-color);
        color: white;
    }

.share-btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .share-btn.facebook {
        background: #1877f2;
        color: white;
    }

    .share-btn.twitter {
        background: #1da1f2;
        color: white;
    }

    .share-btn.linkedin {
        background: #0077b5;
        color: white;
    }

    .share-btn.email {
        background: var(--light-text);
        color: white;
    }

    .share-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px var(--shadow-color);
    }

/* Author Bio */
.author-bio {
    max-width: 800px;
    margin: 40px auto;
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    overflow: hidden;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.author-bio-content {
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

.author-bio-text p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: var(--accent-color);
    }

/* Related Articles */
.related-articles {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

    .related-articles h2 {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 30px;
        text-align: center;
    }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

    .related-card:hover {
        transform: translateY(-5px);
    }

.related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-category {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.related-content h3 {
    margin: 15px 0 10px;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
}

    .related-content h3 a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .related-content h3 a:hover {
            color: var(--primary-color);
        }

.related-content p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.related-content time {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 60px 0;
    margin: 60px 0 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

    .newsletter-content h2 {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        margin-bottom: 15px;
        color: white;
    }

    .newsletter-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        opacity: 0.9;
    }

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    background: white;
    color: var(--background-color);
}

.newsletter-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .newsletter-btn:hover {
        background: #9a7a1e;
        transform: translateY(-2px);
    }

/* Footer */
.footer {
    background: var(--darker-background);
    color: var(--text-color);
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--light-text);
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 10px;
    }

        .footer-section ul li a {
            color: var(--light-text);
            transition: color 0.3s ease;
        }

            .footer-section ul li a:hover {
                color: var(--secondary-color);
            }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links .social-link {
        color: var(--light-text);
        transition: color 0.3s ease;
    }

        .social-links .social-link:hover {
            color: var(--secondary-color);
        }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        gap: 20px;
    }

    .header-actions {
        flex-direction: column;
        gap: 15px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-header,
    .article-content,
    .article-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .author-bio-content {
        flex-direction: column;
        text-align: center;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        margin-top: 120px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .featured-image,
    .inline-image {
        height: 250px;
    }

    .article-quote {
        padding: 20px;
    }

    .article-tips {
        padding: 20px;
    }
}

















/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb ul li {
    display: flex;
    align-items: center;
    color: var(--light-text);
    font-size: 0.9rem;
}

.breadcrumb ul li:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: var(--light-text);
}

.breadcrumb ul li:last-child {
    color: var(--primary-color);
}

.breadcrumb a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}
