
.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.article-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.article-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tag {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: #2980b9;
    color: white;
}

.article-content {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.article-content code {
    background: var(--bg-light);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
}

.article-content pre {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-content pre code {
    background: none;
    color: white;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .object-container {
        padding: 15px;
    }

    .article-hero-image {
        height: 250px;
    }

    .article-header {
        padding: 1.5rem;
    }

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

    .article-content {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}

.share-section {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: white;
}

.share-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn.default {
    background: grey;
    border: 0px;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white;
    opacity: 0.9;
}





.related-articles-header {
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.related-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.related-articles-grid {
    padding: 2rem;
}

.related-articles-grid h3{
  font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .related-articles-header {
        padding: 1rem;
    }

    .related-title {
        font-size: 1.3rem;
    }

    .related-articles-grid {
        padding: 1rem;
    }
}