/* =========================
   ARTICLE PAGE (IMPROVED)
========================= */

.article-page {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;

    color: #111827;
}

/* TITLE */

.article-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 12px;

    color: #0f172a;
    line-height: 1.2;
}

/* META */

.article-meta {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

/* IMAGE */

.article-image-main {
    width: 100%;
    height: 620px;
    border-radius: 14px;

    background-size: cover;
    background-position: center;

    margin-bottom: 35px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* CONTENT */

.article-content-full {
    font-size: 17px;
    line-height: 1.7;

    color: #1f2937;
}

/* PARAGRAPHS */

.article-content-full p {
    color: #1f2937;
}

/* HEADINGS */

.article-content-full h2 {
    font-size: 24px;
    margin: 35px 0 15px;

    color: #0f172a;
    font-weight: 700;
    position: relative;
}

/* underline accent */

.article-content-full h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #2563eb;
    margin-top: 6px;
    border-radius: 3px;
}

/* LIST */

.article-content-full ul {
    margin: 15px 0 25px 20px;
}

.article-content-full li {
    color: #1f2937;
    margin-bottom: 6px;
}

/* STRONG */

.article-content-full strong {
    color: #0f172a;
    font-weight: 700;
}

/* LINKS */

.article-content-full a {
    color: #2563eb;
    text-decoration: none;
}

.article-content-full a:hover {
    text-decoration: underline;
}

/* =========================
   SHARE BUTTONS
========================= */

.share-section-1,
.share-section-2 {
    margin-top: 25px;
    margin-bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #374151;
}

/* BUTTON */

.share-btn {
    padding: 8px 16px;
    border-radius: 10px;

    font-size: 14px;
    text-decoration: none;
    color: white;

    transition: 0.2s ease;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* COLORS */

.share-btn.facebook {
    background: #1877f2;
}

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

.share-btn.linkedin {
    background: #0a66c2;
}

/* hover */

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

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

    .article-image-main {
        height: 240px;
    }

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

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

}