/* ============================================
   NOORUU OFFICIAL — News & Stories Page
   ============================================ */

.nav-active {
    color: var(--gold) !important;
}

.news-page {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    min-height: 100vh;
}

/* ---------- Hero ---------- */
.news-page-hero {
    padding: 40px 60px 0;
    margin-bottom: 50px;
}

/* Force hero title visible (above fold, no scroll needed) */
.news-page-hero .section-title .line {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.news-page-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
    margin-top: 20px;
    max-width: 500px;
}

/* ---------- News List ---------- */
.news-list {
    padding: 0 60px 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ---------- News Card ---------- */
.news-list-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.9) 0%, rgba(14, 12, 8, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.news-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(212, 160, 23, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.news-list-card:hover {
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.news-list-card:hover::before {
    opacity: 1;
}

/* Featured card */
.news-list-card.featured {
    padding: 40px;
    border-color: rgba(212, 160, 23, 0.1);
}

.news-list-card.featured .nlc-title {
    font-size: 28px;
}

/* Icon */
.nlc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.news-list-card:hover .nlc-icon {
    background: rgba(212, 160, 23, 0.12);
    border-color: rgba(212, 160, 23, 0.3);
}

.nlc-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
}

/* Content */
.nlc-content {
    flex: 1;
    min-width: 0;
}

.nlc-category {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.nlc-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.news-list-card:hover .nlc-title {
    color: var(--gold-light);
}

.nlc-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 16px;
}

.nlc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.nlc-date {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
}

.nlc-read {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.news-list-card:hover .nlc-read {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Article Detail ---------- */
.article-page {
    padding: 20px 60px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 32px;
    transition: color 0.2s;
}

.article-back:hover {
    color: var(--gold);
}

.article-back svg {
    width: 18px;
    height: 18px;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--dark-border);
}

.article-category {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.article-date {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Article Body */
.article-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-light);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.article-body li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.article-body ol {
    counter-reset: article-counter;
}

.article-body ol li {
    counter-increment: article-counter;
}

.article-body ol li::before {
    content: counter(article-counter) '.';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.article-body strong {
    color: var(--white);
    font-weight: 600;
}

/* Article Footer */
.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--dark-border);
    text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .news-page-hero {
        padding: 20px 20px 0;
    }

    .news-list {
        padding: 0 20px 60px;
    }

    .news-list-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .news-list-card.featured {
        padding: 24px;
    }

    .news-list-card.featured .nlc-title {
        font-size: 20px;
    }

    .article-page {
        padding: 20px 20px 60px;
    }

    .article-body {
        font-size: 15px;
    }
}
