/* =========================================
   NEWS PUBLIC STYLES v2 - HUBIONIS DARK THEME
   Professional News Listing + Article Detail
   ========================================= */

/* ===================================================
   PART 1 — NEWS LISTING PAGE (nl- prefix)
   =================================================== */

/* ---------- Hero Section ---------- */
.nl-hero {
    position: relative;
    padding: 100px 20px 80px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1a1a 0%, #0F2A2A 50%, #1a4d4d 100%);
}

.nl-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nl-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(127,255,0,0.03) 0px, transparent 1px, transparent 60px, rgba(127,255,0,0.03) 61px),
        repeating-linear-gradient(90deg, rgba(127,255,0,0.03) 0px, transparent 1px, transparent 60px, rgba(127,255,0,0.03) 61px);
    opacity: 0.5;
}

.nl-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(127,255,0,0.08) 0%, transparent 60%);
}

.nl-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.nl-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    color: rgba(127,255,0,0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nl-eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(127,255,0,0.6));
}

.nl-eyebrow-line:last-child {
    background: linear-gradient(90deg, rgba(127,255,0,0.6), transparent);
}

.nl-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 16px;
    background: linear-gradient(135deg, #7fff00 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.nl-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Action Buttons */
.nl-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.nl-hero-action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(127,255,0,0.15);
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(8px);
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    position: relative;
    overflow: hidden;
}

.nl-hero-action::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(127,255,0,0.06));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nl-hero-action:hover::before {
    opacity: 1;
}

.nl-hero-action:hover {
    border-color: rgba(127,255,0,0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(127,255,0,0.15);
}

/* PRO variant */
.nl-action-pro {
    border-color: rgba(255,215,0,0.2);
}

.nl-action-pro::before {
    background: linear-gradient(135deg, transparent, rgba(255,215,0,0.06)) !important;
}

.nl-action-pro:hover {
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 12px 32px rgba(255,215,0,0.15);
}

.nl-action-pro .nl-action-icon {
    background: rgba(255,215,0,0.12);
    border-color: rgba(255,215,0,0.3);
}

.nl-action-pro .nl-action-icon svg {
    stroke: #ffd700;
}

.nl-action-pro:hover .nl-action-icon {
    background: rgba(255,215,0,0.2);
    box-shadow: 0 0 20px rgba(255,215,0,0.25);
}

/* AI variant */
.nl-action-ai {
    border-color: rgba(0,217,255,0.2);
}

.nl-action-ai::before {
    background: linear-gradient(135deg, transparent, rgba(0,217,255,0.06)) !important;
}

.nl-action-ai:hover {
    border-color: rgba(0,217,255,0.5);
    box-shadow: 0 12px 32px rgba(0,217,255,0.15);
}

.nl-action-ai .nl-action-icon {
    background: rgba(0,217,255,0.12);
    border-color: rgba(0,217,255,0.3);
}

.nl-action-ai .nl-action-icon svg {
    stroke: #00d9ff;
}

.nl-action-ai:hover .nl-action-icon {
    background: rgba(0,217,255,0.2);
    box-shadow: 0 0 20px rgba(0,217,255,0.25);
}

/* Icon circle */
.nl-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(127,255,0,0.1);
    border: 1px solid rgba(127,255,0,0.25);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.nl-action-icon svg {
    stroke: #7fff00;
    transition: transform 0.3s ease;
}

.nl-hero-action:hover .nl-action-icon {
    background: rgba(127,255,0,0.18);
    box-shadow: 0 0 20px rgba(127,255,0,0.2);
}

.nl-hero-action:hover .nl-action-icon svg {
    transform: scale(1.1);
}

/* Text block */
.nl-action-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.nl-action-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.nl-action-text small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

/* Arrow */
.nl-action-arrow {
    flex-shrink: 0;
    stroke: rgba(255,255,255,0.25);
    transition: all 0.3s ease;
}

.nl-hero-action:hover .nl-action-arrow {
    stroke: #7fff00;
    transform: translateX(3px);
}

.nl-action-pro:hover .nl-action-arrow {
    stroke: #ffd700;
}

.nl-action-ai:hover .nl-action-arrow {
    stroke: #00d9ff;
}

/* ---------- Filter Bar ---------- */
.nl-filter-bar {
    background: rgba(15,42,42,0.97);
    padding: 24px 0;
    border-bottom: 1px solid rgba(127,255,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease;
}

.nl-filter-bar.scrolled {
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nl-filters-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Category Pills */
.nl-category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.nl-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid rgba(127,255,0,0.2);
    border-radius: 100px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nl-pill svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
    flex-shrink: 0;
}

.nl-pill:hover {
    border-color: rgba(127,255,0,0.5);
    color: #fff;
    background: rgba(127,255,0,0.08);
}

.nl-pill.active {
    background: rgba(127,255,0,0.15);
    border-color: #7fff00;
    color: #7fff00;
    box-shadow: 0 0 16px rgba(127,255,0,0.15);
}

.nl-pill.active svg {
    opacity: 1;
    stroke: #7fff00;
}

/* Search & Sort */
.nl-search-sort {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.nl-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.nl-search-box svg {
    position: absolute;
    left: 14px;
    stroke: rgba(127,255,0,0.5);
    pointer-events: none;
}

.nl-search-box input {
    padding: 10px 16px 10px 42px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(127,255,0,0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    width: 220px;
    transition: all 0.3s ease;
}

.nl-search-box input::placeholder {
    color: rgba(255,255,255,0.35);
}

.nl-search-box input:focus {
    outline: none;
    border-color: #7fff00;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 20px rgba(127,255,0,0.15);
    width: 280px;
}

.nl-sort-box select {
    padding: 10px 36px 10px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(127,255,0,0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237fff00' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: all 0.3s ease;
}

.nl-sort-box select:hover {
    border-color: rgba(127,255,0,0.4);
}

.nl-sort-box select:focus {
    outline: none;
    border-color: #7fff00;
}

.nl-sort-box select option {
    background: #0F2A2A;
    color: #fff;
}

/* Filter Info */
.nl-filter-info {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nl-results-count {
    font-size: 0.85rem;
    color: rgba(127,255,0,0.7);
    font-weight: 600;
}

/* ---------- Trending Tags ---------- */
.nl-trending-tags {
    background: rgba(10,26,26,0.8);
    padding: 16px 0;
    border-bottom: 1px solid rgba(127,255,0,0.06);
}

.nl-tags-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nl-tags-inner::-webkit-scrollbar {
    display: none;
}

.nl-tags-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nl-tags-label svg {
    stroke: #7fff00;
}

.nl-tags-list {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.nl-tag {
    padding: 5px 14px;
    background: rgba(127,255,0,0.06);
    border: 1px solid rgba(127,255,0,0.15);
    border-radius: 100px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nl-tag:hover {
    background: rgba(127,255,0,0.12);
    border-color: rgba(127,255,0,0.4);
    color: #7fff00;
    transform: translateY(-1px);
}

/* ---------- Main Content ---------- */
.nl-main {
    background: #0a1a1a;
    padding: 48px 0 80px;
    min-height: 60vh;
}

/* ---------- Spotlight Featured ---------- */
.nl-spotlight {
    margin-bottom: 56px;
}

.nl-spotlight-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.nl-spotlight-label svg {
    stroke: #ffd700;
}

.nl-spotlight-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    background: linear-gradient(135deg, rgba(31,85,85,0.4), rgba(10,31,31,0.7));
    border: 2px solid rgba(127,255,0,0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.nl-spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(127,255,0,0.04));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.nl-spotlight-card:hover::before {
    opacity: 1;
}

.nl-spotlight-card:hover {
    border-color: rgba(127,255,0,0.4);
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(127,255,0,0.12);
}

.nl-spotlight-image {
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.nl-spotlight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(10,26,26,0.95) 100%);
}

.nl-spotlight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0F2A2A;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.nl-spotlight-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.nl-spotlight-category {
    display: inline-block;
    background: rgba(127,255,0,0.15);
    border: 1px solid rgba(127,255,0,0.3);
    color: #7fff00;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.nl-spotlight-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 14px;
}

.nl-spotlight-excerpt {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0 0 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nl-spotlight-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nl-spotlight-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nl-spotlight-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(127,255,0,0.3);
}

.nl-spotlight-author-info {
    display: flex;
    flex-direction: column;
}

.nl-spotlight-author-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.nl-spotlight-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.nl-spotlight-stats {
    display: flex;
    gap: 16px;
    margin-left: auto;
}

.nl-spotlight-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.nl-spotlight-stat svg {
    width: 14px;
    height: 14px;
    stroke: rgba(127,255,0,0.6);
}

/* ---------- Section Title ---------- */
.nl-section-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nl-section-title svg {
    stroke: #7fff00;
}

.nl-articles-header {
    margin-bottom: 32px;
}

/* ---------- Articles Grid ---------- */
.nl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Article Card */
.nl-card {
    background: linear-gradient(135deg, rgba(31,85,85,0.35), rgba(10,31,31,0.65));
    border: 1px solid rgba(127,255,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    opacity: 0;
    transform: translateY(24px);
}

.nl-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.nl-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, transparent, rgba(127,255,0,0.04));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nl-card:hover::after {
    opacity: 1;
}

.nl-card:hover {
    transform: translateY(-8px);
    border-color: rgba(127,255,0,0.35);
    box-shadow: 0 20px 48px rgba(127,255,0,0.12);
}

.nl-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Card Image */
.nl-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.nl-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,26,26,0.9) 100%);
}

.nl-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.nl-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nl-badge-featured {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #0F2A2A;
    box-shadow: 0 2px 10px rgba(255,215,0,0.3);
}

.nl-badge-sponsored {
    background: rgba(0,217,255,0.2);
    color: #00d9ff;
    border: 1px solid rgba(0,217,255,0.4);
    backdrop-filter: blur(6px);
}

.nl-badge-pro {
    background: rgba(255,165,0,0.2);
    color: #ffa500;
    border: 1px solid rgba(255,165,0,0.4);
    backdrop-filter: blur(6px);
}

/* Card Content */
.nl-card-content {
    padding: 22px 22px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nl-card-category {
    display: inline-block;
    background: rgba(127,255,0,0.12);
    color: #7fff00;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
    border: 1px solid rgba(127,255,0,0.25);
}

.nl-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nl-card-excerpt {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Card Tags */
.nl-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.nl-card-tag {
    padding: 3px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s ease;
}

.nl-card:hover .nl-card-tag {
    border-color: rgba(127,255,0,0.15);
    color: rgba(255,255,255,0.65);
}

/* Card Footer */
.nl-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    border-top: 1px solid rgba(127,255,0,0.06);
}

.nl-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nl-card-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(127,255,0,0.2);
}

.nl-card-avatar-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(127,255,0,0.15), rgba(0,217,255,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #7fff00;
    border: 1px solid rgba(127,255,0,0.2);
}

.nl-card-author-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.nl-card-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nl-card-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.nl-card-stat svg {
    width: 13px;
    height: 13px;
    stroke: rgba(127,255,0,0.4);
}

/* Progress bar on hover */
.nl-card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7fff00, #00d9ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-radius: 0 0 20px 20px;
    z-index: 5;
}

.nl-card:hover .nl-card-link::after {
    transform: scaleX(1);
}

/* ---------- Loading ---------- */
.nl-loading {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255,255,255,0.6);
}

.nl-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(127,255,0,0.1);
    border-top: 3px solid #7fff00;
    border-radius: 50%;
    animation: nl-spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes nl-spin {
    to { transform: rotate(360deg); }
}

.nl-loading p {
    font-size: 1rem;
    font-weight: 600;
}

/* ---------- Empty State ---------- */
.nl-empty {
    text-align: center;
    padding: 100px 20px;
    color: rgba(255,255,255,0.5);
}

.nl-empty svg {
    stroke: rgba(127,255,0,0.3);
    margin-bottom: 20px;
}

.nl-empty h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 8px;
}

.nl-empty p {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
}

/* ---------- Pagination ---------- */
.nl-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.nl-page-btn {
    padding: 10px 18px;
    border: 1px solid rgba(127,255,0,0.2);
    background: rgba(255,255,255,0.03);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 42px;
    text-align: center;
}

.nl-page-btn:hover:not(:disabled) {
    border-color: #7fff00;
    background: rgba(127,255,0,0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(127,255,0,0.15);
}

.nl-page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nl-page-btn.active {
    background: #7fff00;
    border-color: #7fff00;
    color: #0F2A2A;
    box-shadow: 0 4px 12px rgba(127,255,0,0.3);
}

.nl-page-info {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin: 0 8px;
}

.nl-page-ellipsis {
    color: rgba(255,255,255,0.3);
    padding: 0 4px;
    font-weight: 700;
}

/* ---------- Newsletter CTA ---------- */
.nl-newsletter {
    background: linear-gradient(135deg, #0F2A2A 0%, #1a4d4d 100%);
    border-top: 1px solid rgba(127,255,0,0.1);
    padding: 80px 0;
}

.nl-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.nl-newsletter-eyebrow {
    display: block;
    font-size: 0.8rem;
    color: #7fff00;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.nl-newsletter-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.nl-newsletter-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.nl-newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #7fff00;
    color: #0F2A2A;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nl-newsletter-btn:hover {
    background: #6edb00;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(127,255,0,0.3);
}

.nl-newsletter-btn svg {
    stroke: #0F2A2A;
}

/* ===================================================
   PART 1b — LISTING RESPONSIVE
   =================================================== */

@media (max-width: 1200px) {
    .nl-hero-title { font-size: 3.2rem; }
    .nl-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .nl-spotlight-card { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 968px) {
    .nl-hero { padding: 80px 20px 60px; }
    .nl-hero-title { font-size: 2.8rem; letter-spacing: 2px; }
    .nl-hero-subtitle { font-size: 1rem; }

    .nl-filters-inner { flex-direction: column; align-items: stretch; }
    .nl-category-pills { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .nl-search-sort { width: 100%; }
    .nl-search-box input { width: 100%; }
    .nl-search-box input:focus { width: 100%; }
    .nl-sort-box { flex: 0; }
    .nl-sort-box select { width: 100%; }

    .nl-grid { grid-template-columns: 1fr; gap: 22px; }
    .nl-spotlight-card { grid-template-columns: 1fr; }
    .nl-spotlight-image { min-height: 260px; }
    .nl-spotlight-image::after {
        background: linear-gradient(to bottom, transparent 40%, rgba(10,26,26,0.95) 100%);
    }
    .nl-spotlight-title { font-size: 1.6rem; }
    .nl-spotlight-body { padding: 28px 24px; }

    .nl-newsletter-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    .nl-hero { padding: 70px 15px 50px; }
    .nl-hero-title { font-size: 2.2rem; letter-spacing: 1px; }
    .nl-hero-actions { flex-direction: column; align-items: center; }
    .nl-hero-action { max-width: 100%; min-width: 0; width: 100%; }

    .nl-filter-bar { padding: 16px 0; }
    .nl-pill { padding: 6px 14px; font-size: 0.78rem; }

    .nl-card-image { height: 180px; }
    .nl-card-title { font-size: 1.1rem; }

    .nl-section-title { font-size: 1.3rem; }

    .nl-newsletter-content h2 { font-size: 1.5rem; }
    .nl-newsletter-btn { padding: 14px 28px; font-size: 0.95rem; }
}


/* ===================================================
   PART 2 — ARTICLE DETAIL PAGE (preserved from v1)
   =================================================== */

/* -------------------- Article Detail Page -------------------- */

.article-header {
    background: linear-gradient(135deg, #0F2A2A 0%, #1a4d4d 100%);
    color: white;
    padding: 80px 20px 40px;
}

.article-header .container {
    max-width: 900px;
    margin: 0 auto;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    background: #7FFF00;
    color: #0F2A2A;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.article-date,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
}

.article-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-excerpt {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Author & Sponsor Info */
.article-author-section,
.article-sponsor-section {
    display: none;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
}

.author-avatar,
.sponsor-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.sponsor-logo {
    background: white;
    padding: 5px;
}

.author-info,
.sponsor-info {
    flex: 1;
}

.author-name,
.sponsor-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-bio {
    opacity: 0.9;
    font-size: 0.95rem;
}

.sponsored-label {
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Article Body */
.article-body {
    background: white;
    padding: 40px 0;
}

.article-body .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-cover {
    display: none;
    margin-bottom: 40px;
}

.cover-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    color: #0F2A2A;
    margin: 30px 0 15px;
    font-weight: 700;
}

.article-content h1 {
    font-size: 2.2rem;
}

.article-content h2 {
    font-size: 1.8rem;
}

.article-content h3 {
    font-size: 1.4rem;
}

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

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

.article-content em {
    font-style: italic;
}

.article-content a {
    color: #7FFF00;
    text-decoration: underline;
}

.article-content a:hover {
    color: #6edb00;
}

/* Tags */
.article-tags {
    margin: 40px 0;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.article-tags h4 {
    color: #0F2A2A;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Share Buttons */
.article-share {
    margin: 40px 0;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
    text-align: center;
}

.article-share h4 {
    color: #0F2A2A;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.share-btn.facebook {
    background: #4267B2;
    color: white;
}

.share-btn.linkedin {
    background: #0077B5;
    color: white;
}

.share-btn.copy {
    background: #7FFF00;
    color: #0F2A2A;
}

/* Related Articles */
.related-articles {
    display: none;
    background: #f8f8f8;
    padding: 60px 0;
}

.related-articles h2 {
    text-align: center;
    color: #0F2A2A;
    margin-bottom: 40px;
    font-size: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------- Article Detail Responsive -------------------- */

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-excerpt {
        font-size: 1.1rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h1 {
        font-size: 1.8rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-layout {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .article-sidebar-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 60px 15px 30px;
    }

    .article-body .container {
        padding: 0 15px;
    }
    
    .article-hero-title {
        font-size: 1.8rem !important;
    }
}

/* ===============================================
   PROFESSIONAL ARTICLE DETAIL DESIGN
   Dark theme with neon accents - Premium look
   =============================================== */

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(15, 42, 42, 0.3);
    z-index: 9999;
}

.reading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7fff00, #00d9ff);
    width: 0%;
    transition: width 0.2s ease;
}

/* Article Hero Section */
.article-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #0F2A2A 0%, #1a4d4d 100%);
    overflow: hidden;
    border-bottom: 3px solid rgba(127, 255, 0, 0.3);
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: brightness(0.6) saturate(1.2);
}

.article-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 20px 80px;
    background: linear-gradient(to top, 
        rgba(15, 42, 42, 0.98) 0%,
        rgba(15, 42, 42, 0.95) 40%, 
        rgba(15, 42, 42, 0.8) 70%,
        rgba(15, 42, 42, 0.4) 90%,
        transparent 100%);
}

.article-meta-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(127, 255, 0, 0.15);
    border: 1px solid rgba(127, 255, 0, 0.4);
    border-radius: 20px;
    color: #7fff00;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 24px 0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6),
                 0 2px 8px rgba(127, 255, 0, 0.1);
    letter-spacing: -0.02em;
}

.article-hero-excerpt {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    margin: 0 0 36px 0;
    max-width: 850px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.article-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.meta-item svg {
    color: #7fff00;
}

/* Main Content Layout */
.article-main {
    background: #0F2A2A;
    padding-bottom: 40px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    padding: 60px 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Sidebar - REMOVED (redundant with bottom share) */
.article-sidebar-left {
    display: none;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.share-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 255, 0, 0.08);
    border: 2px solid rgba(127, 255, 0, 0.25);
    border-radius: 14px;
    color: rgba(127, 255, 0, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn:hover {
    background: rgba(127, 255, 0, 0.2);
    border-color: #7fff00;
    color: #7fff00;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(127, 255, 0, 0.3);
}

.share-btn svg {
    width: 22px;
    height: 22px;
}

/* Article Content */
.article-content {
    max-width: 900px;
}

.sponsor-banner {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sponsor-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 1px;
}

.sponsor-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sponsor-logo {
    height: 40px;
    width: auto;
}

#sponsor-name {
    color: #fff;
    font-weight: 600;
}

.article-body {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.8;
    background: transparent !important;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    background: transparent !important;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
    color: #fff;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body h2 {
    font-size: 2rem;
    border-left: 4px solid #7fff00;
    padding-left: 20px;
    margin-left: -24px;
}

.article-body h3 {
    font-size: 1.5rem;
    color: #7fff00;
}

.article-body a {
    color: #00d9ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.article-body a:hover {
    color: #7fff00;
    border-bottom-color: #7fff00;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article-body blockquote {
    border-left: 4px solid #00d9ff;
    padding: 20px 30px;
    margin: 2rem 0;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.article-body code {
    background: rgba(127, 255, 0, 0.1);
    color: #7fff00;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.article-body pre {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
    margin: 2rem 0;
}

.article-body ul,
.article-body ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* Tags Section */
.article-tags {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tags h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    padding: 6px 14px;
    background: rgba(127, 255, 0, 0.1);
    border: 1px solid rgba(127, 255, 0, 0.3);
    border-radius: 16px;
    color: #7fff00;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background: rgba(127, 255, 0, 0.2);
    transform: translateY(-2px);
}

/* Share Footer - REMOVED (keep only inline share buttons) */
.article-share-footer {
    display: none;
}

/* Modern Share Section */
.article-share-section {
    margin-top: 60px;
}

.share-divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(127, 255, 0, 0.3) 20%, 
        rgba(127, 255, 0, 0.6) 50%, 
        rgba(127, 255, 0, 0.3) 80%, 
        transparent 100%);
    margin-bottom: 40px;
}

.share-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.share-text h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #7fff00, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.share-text p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.share-btn-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.share-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.share-btn-modern:hover::before {
    opacity: 1;
}

.share-btn-modern svg {
    width: 28px;
    height: 28px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-btn-modern span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.share-btn-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.share-btn-modern:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.share-btn-modern.twitter:hover {
    background: rgba(29, 161, 242, 0.15);
    border-color: #1DA1F2;
    color: #1DA1F2;
    box-shadow: 0 12px 32px rgba(29, 161, 242, 0.3);
}

.share-btn-modern.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877F2;
    color: #1877F2;
    box-shadow: 0 12px 32px rgba(24, 119, 242, 0.3);
}

.share-btn-modern.linkedin:hover {
    background: rgba(0, 119, 181, 0.15);
    border-color: #0077B5;
    color: #0077B5;
    box-shadow: 0 12px 32px rgba(0, 119, 181, 0.3);
}

.share-btn-modern.copy:hover {
    background: rgba(127, 255, 0, 0.15);
    border-color: #7fff00;
    color: #7fff00;
    box-shadow: 0 12px 32px rgba(127, 255, 0, 0.3);
}

@media (max-width: 768px) {
    .share-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .share-text {
        text-align: center;
    }
    
    .share-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .share-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .share-btn-modern {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        padding: 16px;
    }
}

.article-share-footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.share-buttons-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.share-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn-large.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1DA1F2;
    color: #1DA1F2;
}

.share-btn-large.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
    color: #1877F2;
}

.share-btn-large.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077B5;
    color: #0077B5;
}

.share-btn-large.copy:hover {
    background: rgba(127, 255, 0, 0.2);
    border-color: #7fff00;
    color: #7fff00;
}

/* Right Sidebar - Related Articles */
.article-sidebar-right {
    position: relative;
}

.related-articles {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.related-articles h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-article-card {
    display: block;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-article-card:hover {
    background: rgba(127, 255, 0, 0.05);
    border-color: rgba(127, 255, 0, 0.3);
    transform: translateY(-2px);
}

.related-article-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.related-article-card h4 {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.related-article-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.container-narrow {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}