/* ── extract to news.css ── */
:root {
    --g: #c9a84c;
    --gl: #e8c76a;
    --gp: rgba(201, 168, 76, 0.11);
    --gd: #9a7a30;
    --s0: #0f0f0e;
    --s1: #161614;
    --s2: #1c1c1a;
    --s3: #232320;
    --s4: #2b2b28;
    --b0: rgba(255, 255, 255, 0.06);
    --b1: rgba(255, 255, 255, 0.11);
    --b2: rgba(255, 255, 255, 0.18);
    --t0: rgba(255, 255, 255, 0.03);
    --t1: rgba(255, 255, 255, 0.07);
    --font: "Plus Jakarta Sans", sans-serif;
    --r: 14px;
    --rp: 999px;
    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --spring: 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
    --shg: 0 8px 28px rgba(201, 168, 76, 0.22);
}
* {
    box-sizing: border-box;
}
body {
    background: var(--s0);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
}
a {
    text-decoration: none;
    color: inherit;
}

/* nav */
.ju-nav {
    background: var(--s1) !important;
    border-bottom: 1px solid var(--b0);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.ju-brand {
    font-size: 17px;
    font-weight: 800;
    color: #fff !important;
}
.ju-brand span {
    color: var(--g);
}
.ju-lm {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--g), var(--gl));
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    box-shadow: var(--shg);
}
.nl {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5) !important;
    padding: 6px 13px !important;
    border-radius: var(--rp);
    transition: all var(--ease);
}
.nl:hover,
.nl.cur {
    color: #fff !important;
    background: var(--t1) !important;
}
.lp {
    display: flex;
    background: var(--t1);
    border: 1px solid var(--b1);
    border-radius: var(--rp);
    padding: 3px;
    gap: 2px;
}
.lp button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px 13px;
    border-radius: var(--rp);
    font-size: 12px;
    font-weight: 600;
    transition: all var(--ease);
    cursor: pointer;
}
.lp button.on {
    background: var(--g);
    color: #fff;
    box-shadow: var(--shg);
}
.ncta {
    background: var(--g);
    color: #fff !important;
    border-radius: var(--rp) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    transition: all var(--ease) !important;
}
.ncta:hover {
    background: var(--gd) !important;
    transform: translateY(-1px);
}

/* HERO */
.news-hero {
    background: var(--s1);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}
.news-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 700px 500px at 5% 50%,
            rgba(201, 168, 76, 0.09) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 400px 400px at 92% 20%,
            rgba(122, 140, 110, 0.06) 0%,
            transparent 60%
        );
}
.news-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.023) 1px,
        transparent 1px
    );
    background-size: 40px 40px;
}
.hi {
    position: relative;
    z-index: 1;
}
.npill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gp);
    color: var(--gl);
    padding: 5px 14px 5px 8px;
    border-radius: var(--rp);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.npill-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--g);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-h1 {
    font-size: clamp(40px, 6vw, 80px);
    letter-spacing: -0.04em;
    line-height: 0.93;
    margin-bottom: 16px;
}
.hero-h1 .gstroke {
    -webkit-text-stroke: 2px var(--g);
    color: transparent;
}
.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 420px;
    line-height: 1.8;
}

/* category bar */
.cat-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 24px 0 0;
}
.cpill {
    padding: 7px 18px;
    border-radius: var(--rp);
    border: 1.5px solid var(--b1);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    background: none;
    cursor: pointer;
    transition: all var(--ease);
}
.cpill:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gl);
}
.cpill.on {
    background: var(--g);
    color: #fff;
    border-color: var(--g);
    box-shadow: var(--shg);
}

/* search */
.search-wrap {
    display: flex;
    gap: 10px;
    max-width: 460px;
}
.search-box {
    flex: 1;
    background: var(--s2);
    border: 1.5px solid var(--b1);
    border-radius: var(--rp);
    padding: 11px 18px;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    transition: border-color var(--ease);
}
.search-box::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.search-box:focus {
    border-color: var(--g);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.search-btn {
    background: var(--g);
    color: #fff;
    border: none;
    border-radius: var(--rp);
    padding: 0 20px;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--ease);
    box-shadow: var(--shg);
}
.search-btn:hover {
    background: var(--gd);
}

/* FEATURED article */
.feat-card {
    background: var(--s2);
    border: 1px solid var(--b0);
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition:
        transform var(--spring),
        box-shadow var(--ease),
        border-color var(--ease);
}
@media (max-width: 768px) {
    .feat-card {
        grid-template-columns: 1fr;
    }
}
.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
    border-color: rgba(201, 168, 76, 0.18);
}
.feat-img {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}
.feat-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition:
        transform 0.7s ease,
        filter 0.4s ease;
    filter: brightness(0.65);
}
.feat-card:hover .feat-img-bg {
    transform: scale(1.06);
    filter: brightness(0.8);
}
.feat-img-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 40%, var(--s2));
}
@media (max-width: 768px) {
    .feat-img-scrim {
        background: linear-gradient(to bottom, transparent 40%, var(--s2));
    }
}
.feat-img-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 60%,
        rgba(201, 168, 76, 0.14) 0%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.4s;
}
.feat-card:hover .feat-img-glow {
    opacity: 1;
}
.feat-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: var(--rp);
    backdrop-filter: blur(6px);
}
.feat-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) {
    .feat-body {
        padding: 28px 24px;
    }
}
.art-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 10px;
}
.feat-title {
    font-size: clamp(22px, 2.5vw, 34px);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 14px;
    transition: color var(--ease);
}
.feat-card:hover .feat-title {
    color: var(--gl);
}
.feat-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.82;
    margin-bottom: 24px;
}
.feat-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.32);
    font-weight: 500;
}
.feat-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--g);
    transition: all var(--ease);
    margin-top: 16px;
}
.read-link i {
    transition: transform var(--ease);
}
.feat-card:hover .read-link i,
.n-card:hover .read-link i {
    transform: translateX(4px);
}
.read-link:hover {
    color: var(--gl);
}

/* NEWS GRID */
.n-card {
    background: var(--s2);
    border: 1px solid var(--b0);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        transform var(--spring),
        box-shadow var(--ease),
        border-color var(--ease);
    position: relative;
}
.n-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--g), var(--gl));
    transform: scaleX(0);
    transition: transform var(--ease);
    transform-origin: left;
    z-index: 2;
}
.n-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
    border-color: rgba(201, 168, 76, 0.16);
}
.n-card:hover::before {
    transform: scaleX(1);
}
.n-img {
    height: 196px;
    position: relative;
    overflow: hidden;
    background: var(--s3);
}
.n-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition:
        transform 0.6s ease,
        filter 0.4s ease;
    filter: brightness(0.6);
}
.n-card:hover .n-img-bg {
    transform: scale(1.07);
    filter: brightness(0.78);
}
.n-img-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 40% 60%,
        rgba(201, 168, 76, 0.13) 0%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.35s;
}
.n-card:hover .n-img-glow {
    opacity: 1;
}
.n-img-scrim {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(28, 28, 26, 0.7), transparent);
}
.n-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: var(--rp);
    backdrop-filter: blur(6px);
}
.t-fleet {
    background: rgba(201, 168, 76, 0.85);
    color: #fff;
}
.t-tips {
    background: rgba(122, 140, 110, 0.85);
    color: #fff;
}
.t-market {
    background: rgba(122, 140, 200, 0.8);
    color: #fff;
}
.t-tech {
    background: rgba(180, 100, 120, 0.8);
    color: #fff;
}
.t-ops {
    background: rgba(180, 140, 80, 0.85);
    color: #fff;
}
.n-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.n-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.n-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 10px;
    flex: 1;
    transition: color var(--ease);
}
.n-card:hover .n-title {
    color: var(--gl);
}
.n-excerpt {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}
.n-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--b0);
}
.n-read-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    font-weight: 500;
}
.n-read-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--g);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all var(--ease);
}
.n-read-link:hover {
    color: var(--gl);
    gap: 8px;
}

/* SIDEBAR */
.sidebar-card {
    background: var(--s2);
    border: 1px solid var(--b0);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}
.sc-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--b0);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sc-head i {
    color: var(--g);
}
.trending-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--b0);
    cursor: pointer;
    transition: background var(--ease);
}
.trending-item:last-child {
    border-bottom: none;
}
.trending-item:hover {
    background: var(--t0);
}
.ti-num {
    font-size: 20px;
    font-weight: 800;
    color: rgba(201, 168, 76, 0.25);
    letter-spacing: -0.04em;
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
}
.ti-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    transition: color var(--ease);
}
.trending-item:hover .ti-title {
    color: var(--gl);
}
.ti-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 3px;
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 16px 20px;
}
.tag {
    padding: 5px 13px;
    border-radius: var(--rp);
    background: var(--t0);
    border: 1px solid var(--b1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all var(--ease);
    font-weight: 500;
}
.tag:hover {
    background: var(--gp);
    border-color: rgba(201, 168, 76, 0.25);
    color: var(--gl);
}
.newsletter-card {
    background: linear-gradient(135deg, var(--s2), var(--s3));
    border: 1px solid var(--b1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        var(--gp) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.nl-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gp);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--g);
    margin: 0 auto 14px;
}
.nl-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.nl-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
    line-height: 1.6;
}
.nl-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nl-input {
    background: var(--s3);
    border: 1.5px solid var(--b1);
    border-radius: var(--rp);
    padding: 10px 16px;
    color: #fff;
    font-family: var(--font);
    font-size: 13px;
    outline: none;
    transition: border-color var(--ease);
}
.nl-input::placeholder {
    color: rgba(255, 255, 255, 0.18);
}
.nl-input:focus {
    border-color: var(--g);
}
.nl-btn {
    background: var(--g);
    color: #fff;
    border: none;
    border-radius: var(--rp);
    padding: 11px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--ease);
    box-shadow: var(--shg);
}
.nl-btn:hover {
    background: var(--gd);
    transform: translateY(-1px);
}

/* LOAD MORE */
.lm-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--s2);
    border: 1.5px solid var(--b1);
    color: rgba(255, 255, 255, 0.6);
    padding: 13px 32px;
    border-radius: var(--rp);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--ease);
    margin: 40px auto 0;
}
.lm-btn:hover {
    border-color: var(--g);
    color: var(--gl);
}

/* OUTRO BAND */
.outro-band {
    background: var(--g);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.outro-band::before {
    content: "JADEER UNITED";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: -0.05em;
    white-space: nowrap;
    pointer-events: none;
}
.ob-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.ob-text h3 {
    font-size: clamp(20px, 2.5vw, 30px);
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.ob-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}
.ob-btn {
    background: #fff;
    color: var(--gd);
    padding: 13px 28px;
    border-radius: var(--rp);
    font-size: 14px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all var(--spring);
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.ob-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    color: var(--gd);
}
