/* ==========================================
   ARTICLE PAGE SPECIFIC STYLES
   ========================================== */

/* Article Wrapper */
.article-wrapper {
    padding: 40px 0 0;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: var(--theme-2);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--theme-1);
}

.breadcrumbs span {
    margin: 0 10px;
    color: var(--theme-2);
}

/* Article Header */
.article-header {
    max-width: 900px;
    margin: 0 auto 30px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--theme-1);
}

.article-category {
    color: var(--theme-1);
    font-weight: 600;
}

.article-date {
    color: var(--theme-2);
}

.article-location {
    color: var(--theme-3);
}

.article-title {
    font-family: 'Noto Serif', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--theme-0);
    line-height: 1.3;
    margin: 0;
}

/* Article Image */
.article-image-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
}

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

/* Article Content */
.article-content {
    max-width: 900px;
    margin: 0 auto 60px;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.article-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--theme-2);
    margin-bottom: 25px;
}

.article-content h2 {
    font-family: 'Noto Serif', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--theme-0);
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-content h3 {
    font-family: 'Noto Serif', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--theme-0);
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Share Buttons */
.share-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding-top: 30px;
    border-top: 2px solid var(--theme-5);
}

.share-title {
    font-family: 'Shadows Into Light', cursive;
    font-size: 20px;
    color: var(--theme-0);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--theme-1);
    background: var(--white);
    color: var(--theme-1);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
}

.share-btn:hover {
    background: var(--theme-1);
    color: var(--white);
}

.share-btn svg {
    fill: currentColor;
}

/* WhatsApp Button */
.share-btn.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
}

.share-btn.whatsapp-btn:hover {
    background: #25D366;
    color: var(--white);
}

/* Copy Link Button */
.share-btn.copy-btn {
    border-color: var(--theme-2);
    color: var(--theme-2);
}

.share-btn.copy-btn:hover {
    background: var(--theme-2);
    color: var(--white);
}

.share-btn.copy-btn.copied {
    background: #28a745;
    border-color: #28a745;
    color: var(--white);
}

/* Back Button */
.back-to-news {
    max-width: 900px;
    margin: 0 auto 80px;
}

.back-btn {
    padding: 15px 30px;
    background: var(--theme-1);
    color: var(--white);
    text-decoration: none;
    font-family: 'Shadows Into Light', cursive;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    display: inline-block;
    transition: all 0.3s;
}

.back-btn:hover {
    background: var(--theme-0);
}

/* ==========================================
   ARTICLE PAGE RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .article-wrapper {
        padding: 30px 0 0;
    }

    .breadcrumbs {
        margin-bottom: 25px;
    }

    .article-title {
        font-size: 36px;
    }

    .article-content {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .article-wrapper {
        padding: 25px 0 0;
    }

    .breadcrumbs {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .article-header {
        margin-bottom: 20px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-image-wrapper {
        margin-bottom: 30px;
    }

    .article-content {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .article-content p {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .share-section {
        margin-bottom: 40px;
    }

    .share-buttons {
        justify-content: center;
    }

    .back-to-news {
        margin-bottom: 50px;
    }
}
