/* Article Header */
.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-title {
    font-size: 2.5rem;
    color: #6a4c93;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    margin-bottom: 30px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.article-details {
    font-size: 0.9rem;
    color: #888;
}

.article-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Article Content */
.article-content {
    margin-bottom: 40px;
}

.article-content h2 {
    font-size: 1.8rem;
    color: #6a4c93;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3c178;
    font-weight: bold;
}
.article-content h3{
    font-size: 17px;
    font-weight: 600;
}
.article-content p {
    margin-bottom: 20px;
}

.article-content ul, 
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    line-height: 2;
}

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

/* Related Articles */
.related-articles {
    border-top: 1px solid #eaeaea;
    padding-top: 40px;
    margin-top: 40px;
}

.related-title {
    text-align: center;
    margin-bottom: 30px;
    color: #6a4c93;
}

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

.related-card {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.related-card-date {
    font-size: 0.85rem;
    color: #888;
}

/* Social Share */
.social-share {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eaeaea;
}

.social-share a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6a4c93;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-share a:hover {
    background-color: #6a4c93;
    color: white;
}

/* Tags */
.article-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    padding: 5px 15px;
    background-color: #f5f5f5;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 20px 15px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
}

.blog-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.sidebar {
    flex: 1;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
}
.sidebar-section {
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
}
.sidebar h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
}
.social-follow {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.social-button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;
}
.social-button:hover {
    opacity: 0.9;
}
.facebook {
    background-color: #4267B2;
}
.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}
.social-button svg {
    margin-right: 10px;
}
article{
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
}
.sidebar-section h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
}