        .news-hero {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            background: var(--gp-surface);
            border: 1px solid var(--gp-border);
            display: none;
            margin-bottom: 24px;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            transition: box-shadow 0.2s;
        }
        .news-hero:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
        .news-hero__img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }
        .news-hero__img--placeholder {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, #E0F2FE 0%, #fce7f3 100%);
        }
        .news-hero__body {
            padding: 24px 28px 28px;
        }
        .news-hero__label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gp-accent);
            background: var(--gp-accent-light);
            padding: 3px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
        }
        .news-hero__title {
            font-size: 22px;
            font-weight: 800;
            color: var(--gp-text);
            line-height: 1.35;
            margin: 0 0 10px;
        }
        .news-hero__summary {
            font-size: 14px;
            color: var(--gp-text-secondary);
            line-height: 1.6;
            margin: 0 0 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-hero__meta {
            font-size: 12px;
            color: var(--gp-text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }
        .news-card {
            background: var(--gp-surface);
            border: 1px solid var(--gp-border);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
            transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
        }
        .news-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border-color: var(--gp-accent-border);
        }
        .news-card__thumb {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            display: block;
        }
        .news-card__thumb--placeholder {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #E0F2FE 0%, #fce7f3 100%);
        }
        .news-card__body {
            padding: 14px 16px 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .news-card__date {
            font-size: 11px;
            font-weight: 600;
            color: var(--gp-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 7px;
        }
        .news-card__title {
            font-size: 14px;
            font-weight: 700;
            color: var(--gp-text);
            line-height: 1.45;
            margin: 0 0 8px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        .news-card__cta {
            font-size: 12px;
            font-weight: 600;
            color: var(--gp-accent);
            display: flex;
            align-items: center;
            gap: 4px;
            margin-top: 10px;
        }

        .news-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }
        .news-section-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--gp-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .news-controls {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }
        .news-search-wrap {
            position: relative;
        }
        .news-search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gp-text-muted);
            pointer-events: none;
        }
        #newsSearch {
            width: 100%;
            padding: 10px 14px 10px 36px;
            border: 1px solid var(--gp-border);
            border-radius: 10px;
            background: var(--gp-surface);
            color: var(--gp-text);
            font-size: 14px;
            font-family: inherit;
            box-sizing: border-box;
            outline: none;
            transition: border-color 0.15s;
        }
        #newsSearch:focus { border-color: var(--gp-accent); }
        #newsSearch::placeholder { color: var(--gp-text-muted); }
        .news-source-pills {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .news-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 32px;
            flex-wrap: wrap;
        }
        .news-page-btn {
            min-width: 36px;
            height: 36px;
            padding: 0 10px;
            border: 1px solid var(--gp-border);
            border-radius: 8px;
            background: var(--gp-surface);
            color: var(--gp-text-secondary);
            font-size: 13px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.15s;
        }
        .news-page-btn:hover:not(:disabled) {
            border-color: var(--gp-accent);
            color: var(--gp-accent);
        }
        .news-page-btn.active {
            background: var(--gp-accent);
            border-color: var(--gp-accent);
            color: #fff;
        }
        .news-page-btn:disabled {
            opacity: 0.35;
            cursor: default;
        }
        .news-page-ellipsis {
            font-size: 13px;
            color: var(--gp-text-muted);
            padding: 0 4px;
        }

        @media (max-width: 600px) {
            .news-hero__title { font-size: 18px; }
            .news-hero__img, .news-hero__img--placeholder { height: 200px; }
            .news-grid { grid-template-columns: 1fr; }
        }
        .article-back {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--gp-text-muted);
            text-decoration: none;
            margin-bottom: 24px;
            width: fit-content;
            transition: color 0.15s;
        }
        .article-back:hover { color: var(--gp-text); }

        .article-wrap {
            max-width: 760px;
        }

        .article-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--gp-accent);
            background: var(--gp-accent-light);
            padding: 3px 10px;
            border-radius: 4px;
            margin-bottom: 14px;
        }

        .article-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--gp-text);
            line-height: 1.3;
            margin: 0 0 14px;
            letter-spacing: -0.02em;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: var(--gp-text-muted);
            margin-bottom: 24px;
        }

        .article-img {
            width: 100%;
            border-radius: 12px;
            object-fit: cover;
            display: block;
            margin-bottom: 28px;
            max-height: 420px;
        }
        .article-img--placeholder {
            width: 100%;
            height: 320px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--gp-accent-light) 0%, var(--gp-wag-light) 100%);
            margin-bottom: 28px;
        }
        .article-caption {
            font-size: 13px;
            color: var(--gp-text-muted);
            margin-top: -20px;
            margin-bottom: 24px;
            font-style: italic;
            text-align: right;
            padding-right: 8px;
        }

        .article-body {
            font-size: 16px;
            line-height: 1.75;
            color: var(--gp-text);
        }
        .article-body p {
            margin: 0 0 18px;
        }
        .article-body img {
            max-width: 100% !important;
            height: auto !important;
            border-radius: 8px;
            margin: 8px 0 16px;
            display: block;
        }
        .article-body * {
            max-width: 100% !important;
        }
        .article-body a {
            color: var(--gp-accent);
        }

        .article-source {
            margin-top: 36px;
            padding-top: 24px;
            border-top: 1px solid var(--gp-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .article-source__text {
            font-size: 12px;
            color: var(--gp-text-muted);
        }
        .article-source__link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--gp-accent);
            text-decoration: none;
            border: 1px solid var(--gp-accent-border);
            padding: 7px 14px;
            border-radius: 8px;
            transition: background 0.15s;
        }
        .article-source__link:hover {
            background: var(--gp-accent-light);
        }

        @media (max-width: 640px) {
            .article-title { font-size: 20px; }
            .article-body { font-size: 15px; }
        }
