/* Article Page Specific Styles */
.article-page {
    background: var(--zasti-black);
}

.article-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--zasti-black), #1a1a2e);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.article-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.article-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.article-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.article-hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--zasti-blue), var(--zasti-green));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.article-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--zasti-white);
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--zasti-blue);
}

/* Article Content */
.article-content-section {
    padding: 4rem 0 6rem;
    background: var(--zasti-dark-gray);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-body {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.article-body p:last-of-type {
    margin-bottom: 0;
}

.article-body h2 {
    color: var(--zasti-white);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body h2:first-of-type {
    margin-top: 1.5rem;
    padding-top: 0;
    border-top: none;
}

.article-body strong {
    color: var(--zasti-white);
    font-weight: 600;
}

.article-body .highlight-text {
    background: linear-gradient(135deg, rgba(0, 87, 184, 0.1), rgba(32, 201, 151, 0.1));
    border-left: 4px solid var(--zasti-blue);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.article-body .highlight-text p {
    margin-bottom: 0;
    font-style: italic;
}

/* Back to Blogs Link */
.back-to-blogs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zasti-blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-to-blogs:hover {
    color: var(--zasti-green);
    transform: translateX(-5px);
}

.back-to-blogs i {
    transition: transform 0.3s ease;
}

.back-to-blogs:hover i {
    transform: translateX(-3px);
}

/* Share Section */
.article-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--zasti-blue);
    color: white;
    border-color: var(--zasti-blue);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .article-body {
        padding: 2rem 1.5rem;
    }

    .article-body p {
        font-size: 1rem;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}
