/* =========================================================================
   NEWS ARTICLE (news_article.html) — page-scoped styles, loaded only on
   single.php (standard `post` singular template).
   ========================================================================= */

.article-hero {
    position: relative;
    width: 100%;
    height: 62vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    background-image: url('https://images.unsplash.com/photo-1598899134739-24c46f58b8c0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.article-hero .container { position: relative; z-index: 2; }

.article-category-badge {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 20px;
    display: inline-block;
}

.article-title {
    font-size: clamp(28px, 4vw, 56px);
    text-transform: none;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: #fff;
    max-width: 900px;
}

.article-wrapper { background-color: #ffffff; color: #1a1a1a; position: relative; z-index: 2; }

.article-grid { display: grid; grid-template-columns: 1fr 380px; gap: 80px; padding: 80px 0 120px 0; }

.breadcrumbs { font-size: 13px; font-weight: 600; color: #888; margin-bottom: 40px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.breadcrumbs a { color: #1a1a1a; text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { opacity: 0.5; }

.article-content { font-size: 18px; line-height: 1.8; color: #333333; }
.article-content p { margin-bottom: 24px; }
.article-content h2 { font-size: 32px; font-weight: 900; color: #000; margin: 60px 0 24px 0; letter-spacing: -0.02em; }
.article-content h3 { font-size: 24px; font-weight: 800; color: #000; margin: 40px 0 20px 0; }
.article-content img { width: 100%; border-radius: var(--radius-sm); margin: 40px 0; }
.article-content ul { margin: 0 0 24px 24px; }
.article-content li { margin-bottom: 12px; padding-left: 8px; }
.article-content blockquote {
    border-left: 4px solid var(--accent); padding-left: 24px; margin: 40px 0;
    font-size: 24px; font-weight: 600; font-style: italic; color: #000; line-height: 1.4;
}

.article-tags {
    margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; color: #000;
}
.article-tags a {
    background: rgba(0,0,0,0.05); color: #555; padding: 8px 16px; border-radius: 100px;
    text-decoration: none; font-size: 13px; transition: all 0.2s;
}
.article-tags a:hover { background: var(--accent); color: #fff; }

.article-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 40px; }

.sidebar-title { font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: #000; margin-bottom: 24px; font-style: italic; }

.widget-card {
    background: #ffffff; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.widget-card:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,0.08); border-color: var(--accent); }

.widget-card-img { width: 100%; height: 200px; object-fit: cover; }
.widget-card-content { padding: 32px; }
.widget-card-title { font-size: 20px; font-weight: 900; line-height: 1.2; color: #000; margin-bottom: 12px; }
.widget-card-text { font-size: 14px; color: #666; margin-bottom: 24px; line-height: 1.6; }

.btn-outline-dark {
    display: inline-block; padding: 12px 28px; border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.2); color: #000; text-decoration: none; font-size: 13px; font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); background: transparent; text-align: center;
}
.btn-outline-dark:hover { border-color: #000; color: #fff; background: #000; transform: translateY(-3px); }

.widget-promo {
    background: var(--bg-dark); border: 1px solid rgba(255,255,255,0.05); padding: 40px 32px;
    border-radius: var(--radius-lg); text-align: left;
}
.widget-promo-title { font-size: 24px; font-weight: 900; line-height: 1.1; color: var(--text-main); margin-bottom: 16px; }
.widget-promo-text { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; }

.btn-solid-dark {
    display: inline-block; padding: 14px 32px; border-radius: 100px;
    background: var(--accent); color: #fff; text-decoration: none;
    font-size: 14px; font-weight: 700; transition: all 0.3s ease; border: 1px solid var(--accent);
}
.btn-solid-dark:hover { background: transparent; color: var(--accent); transform: translateY(-3px); }

@media (max-width: 1100px) {
    .article-grid { grid-template-columns: 1fr 320px; gap: 40px; }
}

@media (max-width: 900px) {
    .article-hero { height: auto; padding: 140px 0 80px; }
    .article-grid { grid-template-columns: 1fr; }
    .article-sidebar { position: relative; top: 0; }
}
