/* =====================================================
   NEWS PAGE — content-only stylesheet.
   Scoped under .ps-news; see property-sp.css for the
   rationale. Header/footer-only rules from the source
   design (.top-header, .news-nav-*, .news-footer-*) are
   intentionally not ported — Vendor's own header/footer
   stay in place.
===================================================== */

.ps-news {
    --ns-black: #151515;
    --ns-black-soft: #262626;

    --ns-green: #3a966d;
    --ns-green-dark: #287752;

    --ns-light-green: #e8f6ee;

    --ns-yellow: #f3d452;
    --ns-yellow-soft: #fff2a8;
    --ns-yellow-pale: #fff8cf;
    --ns-yellow-strong: #ffe56b;

    --ns-text: #3f3f3f;
    --ns-muted: #626262;

    --ns-border: #d8c96d;

    color: var(--ns-black);
    background: var(--ns-yellow-pale);
    overflow-x: hidden;
}

.ps-news * { box-sizing: border-box; }
.ps-news a { text-decoration: none; }
.ps-news button, .ps-news input { font-family: inherit; }
.ps-news button { cursor: pointer; }


/* HERO */

.ps-news .news-hero {
    position: relative; padding: 44px 0 30px; overflow: hidden;
    background:
        radial-gradient(circle at 88% 15%, rgba(58, 150, 109, 0.12), transparent 21%),
        radial-gradient(circle at 6% 86%, rgba(255, 255, 255, 0.28), transparent 24%),
        linear-gradient(125deg, #ffe875, #fff0a2 45%, #fff8cc 72%, #ffe46a);
}

.ps-news .news-hero-row { min-height: 420px; }
.ps-news .news-hero-content { position: relative; z-index: 4; }

.ps-news .news-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; color: var(--ns-green-dark); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; }
.ps-news .news-eyebrow span { width: 30px; height: 3px; background: var(--ns-black); }

.ps-news .news-hero h1 { max-width: 700px; margin-bottom: 18px; font-size: 52px; line-height: 1.08; font-weight: 800; }
.ps-news .news-hero h1 span { display: block; color: var(--ns-green-dark); }
.ps-news .news-hero-content > p { max-width: 600px; margin-bottom: 22px; color: #3f3f3f; font-size: 16px; line-height: 1.72; }

.ps-news .news-hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ps-news .hero-dark-btn { padding: 13px 20px; border: none; border-radius: 8px; background: var(--ns-black); color: #ffffff; font-size: 14px; font-weight: 700; }
.ps-news .hero-dark-btn:hover { background: var(--ns-green-dark); }
.ps-news .hero-light-btn { padding: 12px 18px; border: 1px solid #c5b457; border-radius: 8px; background: #fff8ce; color: var(--ns-black); font-size: 14px; font-weight: 700; display: inline-block; }
.ps-news .hero-light-btn:hover { background: var(--ns-yellow); }

.ps-news .news-hero-meta { display: flex; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.ps-news .news-hero-meta > div { padding-left: 12px; border-left: 3px solid var(--ns-black); }
.ps-news .news-hero-meta strong { display: block; font-size: 14px; }
.ps-news .news-hero-meta span { display: block; margin-top: 4px; color: #505050; font-size: 11px; }


/* HERO FEATURE */

.ps-news .news-hero-visual { position: relative; max-width: 620px; margin-left: auto; }
.ps-news .news-feature-panel { padding: 10px; border: 1px solid #d1c268; border-radius: 22px; background: #fff1a1; box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12); }
.ps-news .feature-image-wrap { position: relative; height: 250px; overflow: hidden; border-radius: 16px; }
.ps-news .feature-image { width: 100%; height: 100%; display: block; object-fit: cover; }
.ps-news .feature-tag { position: absolute; top: 14px; left: 14px; padding: 7px 11px; border-radius: 6px; background: var(--ns-black); color: var(--ns-yellow); font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.ps-news .feature-content { padding: 18px 14px 11px; }
.ps-news .feature-date { color: var(--ns-green-dark); font-size: 11px; font-weight: 800; letter-spacing: 1px; }
.ps-news .feature-content h3 { margin: 8px 0; font-size: 23px; line-height: 1.35; font-weight: 700; }
.ps-news .feature-content p { margin-bottom: 12px; color: #4d4d4d; font-size: 13px; line-height: 1.65; }
.ps-news .feature-content button { padding: 0; border: none; background: none; color: var(--ns-green-dark); font-size: 12px; font-weight: 700; }


/* HERO DECOR */

.ps-news .hero-shape { position: absolute; border-radius: 50%; }
.ps-news .hero-shape-one { width: 250px; height: 250px; top: -150px; right: 5%; background: rgba(58, 150, 109, 0.1); }
.ps-news .hero-shape-two { width: 170px; height: 170px; left: 2%; bottom: -100px; background: rgba(255, 255, 255, 0.2); }
.ps-news .hero-dot-pattern { position: absolute; width: 115px; height: 115px; bottom: 25px; right: 1%; opacity: 0.2; background-image: radial-gradient(var(--ns-black) 1px, transparent 1px); background-size: 11px 11px; }


/* SECTION HEADING (shared) */

.ps-news .section-heading { max-width: 720px; margin: 0 auto 24px; text-align: center; }
.ps-news .section-heading > span { color: var(--ns-green-dark); font-size: 11px; font-weight: 800; letter-spacing: 1.4px; }
.ps-news .section-heading h2 { margin: 6px 0 8px; font-size: 36px; font-weight: 700; }
.ps-news .section-heading h2 strong { color: var(--ns-green-dark); }
.ps-news .section-heading p { max-width: 630px; margin: auto; color: #494949; font-size: 15px; line-height: 1.7; }


/* LATEST NEWS */

.ps-news .latest-news-section { padding: 36px 0 46px; background: linear-gradient(180deg, #fff3a6, #fff8ce); }
.ps-news .news-filter-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.ps-news .news-filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.ps-news .news-filter { padding: 9px 14px; border: 1px solid #cbbb5a; border-radius: 999px; background: #fff7c5; color: #343434; font-size: 12px; font-weight: 700; }
.ps-news .news-filter:hover, .ps-news .news-filter.active { background: var(--ns-black); border-color: var(--ns-black); color: #ffffff; }
.ps-news .view-all-btn { padding: 0; border: none; background: none; color: var(--ns-green-dark); font-size: 12px; font-weight: 700; }

.ps-news .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ps-news .news-card { overflow: hidden; border: 1px solid #d0bf64; border-radius: 14px; background: #fff0a0; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.ps-news .news-card:hover { transform: translateY(-4px); border-color: var(--ns-green-dark); box-shadow: 0 14px 28px rgba(0, 0, 0, 0.09); }
.ps-news .large-card { grid-column: span 2; }
.ps-news .news-card-image { position: relative; height: 185px; overflow: hidden; }
.ps-news .large-card .news-card-image { height: 270px; }
.ps-news .news-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.35s ease; }
.ps-news .news-card:hover .news-card-image img { transform: scale(1.04); }
.ps-news .news-card-image span { position: absolute; top: 12px; left: 12px; padding: 6px 10px; border-radius: 5px; background: var(--ns-black); color: var(--ns-yellow); font-size: 10px; font-weight: 800; }
.ps-news .news-card-content { padding: 18px; }
.ps-news .news-card-content small { display: block; margin-bottom: 7px; color: var(--ns-green-dark); font-size: 10px; font-weight: 800; letter-spacing: 0.8px; }
.ps-news .news-card-content h3 { margin-bottom: 8px; font-size: 19px; line-height: 1.4; font-weight: 700; }
.ps-news .large-card .news-card-content h3 { font-size: 24px; }
.ps-news .news-card-content p { margin-bottom: 12px; color: #4f4f4f; font-size: 13px; line-height: 1.65; }
.ps-news .news-card-content button { padding: 0; border: none; background: none; color: var(--ns-green-dark); font-size: 12px; font-weight: 700; }
.ps-news .news-card.hidden { display: none; }


/* COMPANY UPDATES */

.ps-news .company-updates-section { padding: 40px 0; background: linear-gradient(135deg, #ffe873, #fff3a7 50%, #fff8cf); }
.ps-news .company-update-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 24px; flex-wrap: wrap; }
.ps-news .company-update-head > div > span { color: var(--ns-green-dark); font-size: 11px; font-weight: 800; letter-spacing: 1.4px; }
.ps-news .company-update-head h2 { margin: 6px 0 0; font-size: 36px; font-weight: 700; }
.ps-news .company-update-head h2 strong { color: var(--ns-green-dark); }
.ps-news .company-update-head > p { max-width: 430px; margin: 0; color: #474747; font-size: 14px; line-height: 1.65; }

.ps-news .update-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ps-news .update-card { min-height: 225px; padding: 21px; border: 1px solid #d6c66a; border-radius: 14px; background: #fff4b2; transition: 0.25s ease; }
.ps-news .update-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07); }
.ps-news .yellow-update { background: linear-gradient(145deg, #ffe56a, #fff1a3); }
.ps-news .update-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border-radius: 11px; background: var(--ns-black); color: var(--ns-yellow); font-size: 20px; }
.ps-news .yellow-update .update-icon { background: var(--ns-green-dark); color: #ffffff; }
.ps-news .update-card > span { color: var(--ns-green-dark); font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.ps-news .update-card h3 { margin: 7px 0; font-size: 19px; font-weight: 700; }
.ps-news .update-card p { margin-bottom: 14px; color: #4d4d4d; font-size: 13px; line-height: 1.65; }
.ps-news .update-card a { color: var(--ns-green-dark); font-size: 12px; font-weight: 700; }


/* STORY STRIP */

.ps-news .news-story-strip { padding: 40px 0; background: var(--ns-black); }
.ps-news .story-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.ps-news .story-strip-copy > span { color: var(--ns-yellow); font-size: 11px; font-weight: 800; letter-spacing: 1.4px; }
.ps-news .story-strip-copy h2 { margin: 8px 0 11px; color: #ffffff; font-size: 36px; line-height: 1.25; }
.ps-news .story-strip-copy p { max-width: 580px; margin-bottom: 16px; color: #d0d0d0; font-size: 14px; line-height: 1.7; }
.ps-news .story-strip-copy button { padding: 11px 16px; border: none; border-radius: 7px; background: var(--ns-yellow); color: var(--ns-black); font-size: 12px; font-weight: 700; }
.ps-news .story-strip-copy button:hover { background: var(--ns-green); color: #ffffff; }
.ps-news .story-strip-visual { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.ps-news .story-stat { min-height: 135px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 15px; border: 1px solid #504a25; border-radius: 13px; background: #211f12; text-align: center; }
.ps-news .yellow-stat-block { background: #3b3517; }
.ps-news .story-stat strong { color: var(--ns-yellow); font-size: 30px; }
.ps-news .story-stat span { max-width: 110px; margin-top: 5px; color: #d2d2d2; font-size: 11px; line-height: 1.45; }


/* MEDIA CENTRE */

.ps-news .media-centre-section { padding: 40px 0 46px; background: linear-gradient(180deg, #fff4ad, #ffe77a); }
.ps-news .media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ps-news .media-card { padding: 24px; border: 1px solid #d1c168; border-radius: 14px; background: #fff3a7; transition: 0.25s ease; }
.ps-news .media-card:hover { transform: translateY(-4px); border-color: var(--ns-green-dark); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08); }
.ps-news .media-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; border-radius: 12px; background: var(--ns-black); color: var(--ns-yellow); font-size: 22px; }
.ps-news .yellow-media-icon { background: var(--ns-green-dark); color: #ffffff; }
.ps-news .media-card h3 { margin-bottom: 7px; font-size: 20px; font-weight: 700; }
.ps-news .media-card p { margin-bottom: 13px; color: #4d4d4d; font-size: 13px; line-height: 1.65; }
.ps-news .media-card button { padding: 0; border: none; background: none; color: var(--ns-green-dark); font-size: 12px; font-weight: 700; }


/* SUBSCRIBE */

.ps-news .news-subscribe-section { padding: 36px 0; background: linear-gradient(135deg, #ffe66c, #fff1a1 55%, #ffd94d); }
.ps-news .subscribe-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 27px 32px; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 18px; background: rgba(255, 255, 255, 0.18); flex-wrap: wrap; }
.ps-news .subscribe-inner > div > span { color: var(--ns-green-dark); font-size: 11px; font-weight: 800; letter-spacing: 1.2px; }
.ps-news .subscribe-inner h2 { margin: 7px 0; font-size: 30px; }
.ps-news .subscribe-inner p { margin: 0; color: #444444; font-size: 13px; }
.ps-news .subscribe-form { width: min(470px, 100%); display: flex; gap: 8px; }
.ps-news .subscribe-form input { flex: 1; min-width: 0; padding: 13px 14px; border: 1px solid #caba57; border-radius: 8px; outline: none; background: #fff9d5; color: var(--ns-black); font-size: 13px; }
.ps-news .subscribe-form input:focus { border-color: var(--ns-green-dark); }
.ps-news .subscribe-form button { padding: 13px 17px; border: none; border-radius: 8px; background: var(--ns-black); color: #ffffff; font-size: 12px; font-weight: 700; }
.ps-news .subscribe-form button:hover { background: var(--ns-green-dark); }


/* RESPONSIVE */

@media (max-width: 991px) {
    .ps-news .news-hero-content { margin-bottom: 25px; }
    .ps-news .news-hero h1 { font-size: 44px; }
    .ps-news .news-hero-visual { margin: auto; }
    .ps-news .news-grid { grid-template-columns: repeat(2, 1fr); }
    .ps-news .large-card { grid-column: span 2; }
    .ps-news .update-grid { grid-template-columns: repeat(2, 1fr); }
    .ps-news .story-strip-inner { grid-template-columns: 1fr; gap: 25px; }
    .ps-news .media-grid { grid-template-columns: repeat(2, 1fr); }
    .ps-news .subscribe-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
    .ps-news .news-hero { padding: 30px 0 22px; }
    .ps-news .news-hero h1 { font-size: 36px; }
    .ps-news .news-hero-content > p { font-size: 14px; }
    .ps-news .news-hero-meta { flex-direction: column; gap: 10px; }
    .ps-news .feature-image-wrap { height: 220px; }
    .ps-news .latest-news-section { padding: 28px 0 34px; }
    .ps-news .news-filter-row { align-items: flex-start; flex-direction: column; }
    .ps-news .news-grid { grid-template-columns: 1fr; }
    .ps-news .large-card { grid-column: span 1; }
    .ps-news .large-card .news-card-image { height: 220px; }
    .ps-news .news-card-image { height: 210px; }
    .ps-news .company-update-head { flex-direction: column; align-items: flex-start; }
    .ps-news .update-grid { grid-template-columns: 1fr; }
    .ps-news .story-strip-visual { grid-template-columns: 1fr; }
    .ps-news .media-grid { grid-template-columns: 1fr; }
    .ps-news .subscribe-form { flex-direction: column; }
}

@media (max-width: 500px) {
    .ps-news .news-hero h1 { font-size: 32px; }
    .ps-news .news-hero-actions { align-items: stretch; flex-direction: column; }
    .ps-news .hero-dark-btn, .ps-news .hero-light-btn { text-align: center; }
    .ps-news .feature-image-wrap { height: 190px; }
    .ps-news .section-heading h2, .ps-news .company-update-head h2 { font-size: 30px; }
    .ps-news .story-strip-copy h2 { font-size: 29px; }
}
