* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #202124;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: all 0.25s ease;
}

::selection {
    background: rgba(26, 115, 232, 0.20);
    color: #202124;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F1F3F4;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1A73E8, #34A853);
    border-radius: 6px;
    border: 2px solid #F1F3F4;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4285F4, #1557B0);
}

/* ===== Site Header (clean white Google News style) ===== */
.gn-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 24px;
    background: #FFFFFF;
    opacity: 0;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
    border-bottom: 1px solid #E8EAED;
}
.gn-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.gn-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.gn-brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}
.gn-brand-name {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #202124;
    letter-spacing: -0.3px;
}
.gn-search-wrap {
    position: relative;
    flex: 1;
    max-width: 480px;
    min-width: 200px;
}
.gn-search-icon {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: #5F6368;
    pointer-events: none;
}
.gn-search-input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border: 1px solid #DADCE0;
    border-radius: 999px;
    background: #F8F9FA;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #202124;
    outline: none;
    transition: all 0.25s ease;
}
.gn-search-input:focus {
    background: #FFFFFF;
    border-color: #1A73E8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}
.gn-search-input::placeholder {
    color: #5F6368;
}
.gn-main-nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.gn-main-nav a {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #3C4043;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    letter-spacing: 0.1px;
    transition: all 0.25s ease;
}
.gn-main-nav a:hover {
    color: #1A73E8;
    background: #E8F0FE;
}

/* ===== Main Layout ===== */
.gn-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    position: relative;
    z-index: 1;
}

.gn-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    padding-bottom: 12px;
    border-bottom: 3px solid #202124;
    position: relative;
}
.gn-section-head::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 60px; height: 3px;
    background: #1A73E8;
}
.gn-section-title {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #202124;
    letter-spacing: -0.3px;
    opacity: 0;
}
.gn-section-sub {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #5F6368;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Category Pill ===== */
.gn-cat-pill {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    display: inline-block;
    padding: 4px 11px;
    background: #1A73E8;
    color: #FFFFFF;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: 999px;
}
.gn-cat-pill-sm {
    padding: 3px 8px;
    font-size: 10px;
    top: 8px; left: 8px;
}
.gn-cat-pill-inline {
    position: static;
    margin-bottom: 14px;
    background: #1A73E8;
}

/* ===== Badge ===== */
.gn-badge {
    position: absolute;
    top: 10px; right: 10px;
    z-index: 2;
    display: inline-block;
    padding: 4px 10px;
    background: #EA4335;
    color: #FFFFFF;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(234, 67, 53, 0.35);
}
.gn-badge-inline {
    position: static;
    margin-bottom: 14px;
    margin-left: 8px;
}

/* ===== Bookmark Button ===== */
.gn-bookmark-btn {
    position: absolute;
    bottom: 10px; right: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: rgba(255, 255, 255, 0.92);
    color: #1A73E8;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(60, 64, 67, 0.20);
    transition: all 0.25s ease;
    opacity: 0;
}
.gn-bookmark-btn:hover {
    background: #1A73E8;
    color: #FFFFFF;
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.40);
}
.gn-bookmark-btn.gn-bookmark-active {
    background: #1A73E8;
    color: #FFFFFF;
}
.gn-bookmark-btn.gn-bookmark-active svg {
    fill: #FFFFFF;
}
.gn-bookmark-btn-sm {
    width: 28px; height: 28px;
    top: 8px; right: 8px;
    bottom: auto;
}

/* ===== News Source Row ===== */
.gn-news-source {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.gn-news-source-sm {
    margin-bottom: 6px;
}
.gn-source-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    color: #FFFFFF;
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.gn-source-icon-lg {
    width: 40px; height: 40px;
    font-size: 20px;
}
.gn-source-name {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #202124;
}
.gn-source-dot {
    color: #5F6368;
    font-size: 12px;
}
.gn-news-time {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #5F6368;
}

/* ===== Card Meta ===== */
.gn-meta-dot {
    color: #E8EAED;
}
.gn-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #5F6368;
}

/* ===== Ratings & Trending ===== */
.gn-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.gn-rating {
    color: #FBBC04;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
}
.gn-star-half {
    color: #FBBC04;
    opacity: 0.4;
}
.gn-star-empty {
    color: #E8EAED;
}
.gn-rating-count {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #1A73E8;
    font-weight: 500;
    white-space: nowrap;
}
.gn-rating-sm .gn-rating { font-size: 12px; }
.gn-rating-sm .gn-rating-count { font-size: 11px; }
.gn-rating-lg .gn-rating { font-size: 19px; }
.gn-rating-lg .gn-rating-count { font-size: 14px; }

/* ===== Trending Tag ===== */
.gn-trending-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #0D652D;
    padding: 3px 10px;
    background: rgba(52, 168, 83, 0.12);
    border-radius: 999px;
    letter-spacing: 0.2px;
    opacity: 0;
}
.gn-trending-tag-sm {
    font-size: 11px;
    padding: 2px 8px;
}
.gn-trending-tag-lead {
    color: #FFFFFF;
    background: rgba(52, 168, 83, 0.85);
    padding: 4px 12px;
    font-size: 12px;
}
.gn-trending-tag-inline {
    background: rgba(52, 168, 83, 0.12);
    color: #0D652D;
    margin-bottom: 14px;
    margin-left: 8px;
    padding: 4px 12px;
    font-size: 12px;
    position: static;
    display: inline-flex;
    opacity: 0;
}

/* ===== CTA ===== */
.gn-cta {
    display: inline-block;
    padding: 10px 24px;
    background: #1A73E8;
    color: #FFFFFF;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(26, 115, 232, 0.30);
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}
.gn-cta:hover {
    background: #1557B0;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.45);
}
.gn-cta-read {
    padding: 12px 28px;
    font-size: 15px;
}

/* ===== Top Stories Section ===== */
.gn-top-stories-section {
    margin-bottom: 36px;
}
.gn-top-stories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.gn-top-stories-main {
    min-height: 320px;
}
.gn-lead-story {
    opacity: 0;
    height: 100%;
}
.gn-lead-story-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #DADCE0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12), 0 1px 2px rgba(60, 64, 67, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
}
.gn-lead-story-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.20), 0 2px 6px rgba(60, 64, 67, 0.10);
    border-color: #1A73E8;
}
.gn-lead-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #F1F3F4;
}
.gn-lead-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gn-lead-story-link:hover .gn-lead-thumb img {
    transform: scale(1.05);
}
.gn-lead-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(32, 33, 36, 0.15) 100%);
}
.gn-lead-content {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.gn-lead-title {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #202124;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.gn-lead-story-link:hover .gn-lead-title {
    color: #1A73E8;
}
.gn-lead-snippet {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #3C4043;
    line-height: 1.65;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}
.gn-lead-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid #E8EAED;
}
.gn-lead-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #5F6368;
}
.gn-lead-read {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #5F6368;
    margin-left: auto;
}

/* ===== Secondary Stories ===== */
.gn-top-stories-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gn-secondary-story {
    opacity: 0;
    flex: 1;
}
.gn-secondary-link {
    display: flex;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid #DADCE0;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
}
.gn-secondary-link:hover {
    border-color: #1A73E8;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.20), 0 2px 6px rgba(60, 64, 67, 0.10);
    transform: translateX(4px);
}
.gn-secondary-thumb {
    width: 110px;
    min-height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F1F3F4;
}
.gn-secondary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gn-secondary-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
}
.gn-secondary-title {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #202124;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.gn-secondary-link:hover .gn-secondary-title {
    color: #1A73E8;
}
.gn-secondary-body .gn-cat-pill-sm {
    position: static;
    align-self: flex-start;
}

/* ===== Category Bar ===== */
.gn-cat-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 16px;
    margin-bottom: 20px;
    scrollbar-width: thin;
}
.gn-cat-bar::-webkit-scrollbar {
    height: 4px;
}
.gn-cat-bar::-webkit-scrollbar-thumb {
    background: #4285F4;
    border-radius: 4px;
}
.gn-cat-bar-item {
    display: inline-block;
    white-space: nowrap;
    padding: 8px 18px;
    background: #FFFFFF;
    color: #3C4043;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid #DADCE0;
    transition: all 0.25s ease;
    opacity: 0;
}
.gn-cat-bar-item:hover {
    background: #1A73E8;
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(26, 115, 232, 0.30);
}
.gn-cat-bar-item:first-child {
    background: #1A73E8;
    color: #FFFFFF;
    border-color: transparent;
}

/* ===== Featured Grid ===== */
.gn-featured-section {
    margin-bottom: 44px;
}
.gn-featured-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}
.gn-featured-card {
    opacity: 0;
    height: 100%;
}
.gn-featured-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #DADCE0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12), 0 1px 2px rgba(60, 64, 67, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease, border-color 0.25s ease;
}
.gn-featured-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.20), 0 2px 6px rgba(60, 64, 67, 0.10);
    border-color: #1A73E8;
}
.gn-featured-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #F1F3F4;
}
.gn-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gn-featured-card-link:hover .gn-featured-media img {
    transform: scale(1.08);
}
.gn-featured-body {
    padding: 14px 14px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.gn-featured-title {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #202124;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.gn-featured-card-link:hover .gn-featured-title {
    color: #1A73E8;
}
.gn-featured-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #E8EAED;
}

/* ===== News Grid ===== */
.gn-news-section {
    margin-bottom: 20px;
}
.gn-news-stream {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.gn-news-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

/* ===== News Card (Horizontal: content left, thumb right) ===== */
.gn-news-card {
    opacity: 0;
    height: 100%;
}
.gn-news-card-link {
    display: flex;
    gap: 0;
    background: #FFFFFF;
    border: 1px solid #DADCE0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12), 0 1px 2px rgba(60, 64, 67, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}
.gn-news-card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.20), 0 2px 6px rgba(60, 64, 67, 0.10);
    border-color: #1A73E8;
}
.gn-news-card-content {
    padding: 16px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}
.gn-news-title {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.gn-news-card-link:hover .gn-news-title {
    color: #1A73E8;
}
.gn-news-snippet {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #5F6368;
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}
.gn-news-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid #E8EAED;
}
.gn-news-read {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #5F6368;
}
.gn-news-card-thumb {
    position: relative;
    width: 140px;
    min-width: 140px;
    overflow: hidden;
    background: #F1F3F4;
}
.gn-news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gn-news-card-link:hover .gn-news-card-thumb img {
    transform: scale(1.08);
}

/* ===== Ad Slots ===== */
.gn-ad-slot {
    width: 100%;
    margin: 8px auto;
    display: flex;
    justify-content: center;
}
.gn-first-ad {
    max-width: 1280px;
    margin: 14px auto 28px;
    padding: 0 24px;
}

/* ===== Article Detail Page ===== */
.gn-article-main {
    max-width: 840px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    position: relative;
    z-index: 1;
}
.gn-back-btn {
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 20px;
    background: #FFFFFF;
    color: #1A73E8;
    border: 1px solid #DADCE0;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12), 0 1px 2px rgba(60, 64, 67, 0.08);
    opacity: 0;
    transition: all 0.25s ease;
}
.gn-back-btn:hover {
    background: #1A73E8;
    color: #FFFFFF;
    border-color: transparent;
    transform: translateX(-3px);
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.30);
}
.gn-article-hero {
    position: relative;
    opacity: 0;
    background: #FFFFFF;
    border: 1px solid #DADCE0;
    border-radius: 16px;
    padding: 30px 30px 26px;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12), 0 1px 2px rgba(60, 64, 67, 0.08);
}
.gn-article-hero-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.gn-article-title {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #202124;
    line-height: 1.22;
    letter-spacing: -0.4px;
    margin-bottom: 18px;
}
.gn-article-source-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E8EAED;
}
.gn-article-source-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gn-article-source-name {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #202124;
}
.gn-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #5F6368;
}
.gn-article-cover {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(60, 64, 67, 0.15);
    margin-bottom: 22px;
    aspect-ratio: 16 / 9;
    background: #F1F3F4;
}
.gn-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gn-action-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 20px;
    background: #F1F3F4;
    border: 1px solid #E8EAED;
    border-radius: 12px;
}
.gn-action-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-right: auto;
}
.gn-views-lg {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A73E8;
}
.gn-action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.gn-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #FFFFFF;
    color: #1A73E8;
    border: 1px solid #DADCE0;
    border-radius: 999px;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.gn-action-btn:hover {
    background: #1A73E8;
    color: #FFFFFF;
    border-color: #1A73E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(26, 115, 232, 0.30);
}
.gn-action-btn.gn-bookmark-active {
    background: #1A73E8;
    color: #FFFFFF;
    border-color: #1A73E8;
}
.gn-action-btn.gn-bookmark-active svg {
    fill: #FFFFFF;
}
.gn-article-body {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #3C4043;
    background: #FFFFFF;
    padding: 34px 34px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12), 0 1px 2px rgba(60, 64, 67, 0.08);
    border: 1px solid #DADCE0;
    opacity: 0;
    margin-top: 22px;
}
.gn-article-body p {
    margin-bottom: 20px;
}
.gn-article-body p:first-child::first-letter {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: #1A73E8;
    float: left;
    line-height: 0.9;
    margin: 6px 12px 0 0;
}
.gn-article-body a {
    color: #1A73E8;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gn-article-body a:hover {
    color: #1557B0;
}
.gn-article-body strong {
    color: #202124;
    font-weight: 600;
}

/* ===== Related Articles ===== */
.gn-related-section {
    margin-top: 44px;
}
.gn-related-title-heading {
    margin-bottom: 20px;
}
.gn-related-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}
.gn-related-card {
    opacity: 0;
    height: 100%;
}
.gn-related-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #DADCE0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12), 0 1px 2px rgba(60, 64, 67, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
}
.gn-related-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.20), 0 2px 6px rgba(60, 64, 67, 0.10);
    border-color: #1A73E8;
}
.gn-related-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #F1F3F4;
}
.gn-related-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gn-related-card-link:hover .gn-related-media img {
    transform: scale(1.06);
}
.gn-related-body {
    padding: 14px 16px 16px;
}
.gn-related-title {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #202124;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}
.gn-related-card-link:hover .gn-related-title {
    color: #1A73E8;
}
.gn-related-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #5F6368;
    margin-top: 4px;
}

/* ===== Static Pages ===== */
.gn-static-main {
    max-width: 840px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    position: relative;
    z-index: 1;
}
.gn-static-article {
    background: #FFFFFF;
    padding: 40px 40px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12), 0 1px 2px rgba(60, 64, 67, 0.08);
    border: 1px solid #DADCE0;
    opacity: 0;
}
.gn-static-title {
    font-family: 'Google Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #202124;
    line-height: 1.2;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 3px solid #202124;
    position: relative;
    letter-spacing: -0.4px;
}
.gn-static-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 60px; height: 3px;
    background: #1A73E8;
}
.gn-static-content {
    font-family: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: #3C4043;
}
.gn-static-content p {
    margin-bottom: 16px;
}
.gn-static-content strong {
    color: #202124;
    font-weight: 600;
}
.gn-static-content ul {
    margin: 12px 0 18px 4px;
}
.gn-static-content li {
    margin-bottom: 10px;
}
.gn-static-content a {
    color: #1A73E8;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gn-static-content a:hover {
    color: #1557B0;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .gn-section-title { font-size: 30px; }
    .gn-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gn-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gn-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gn-top-stories {
        grid-template-columns: 1.6fr 1fr;
    }
    .gn-article-title { font-size: 38px; }
    .gn-static-title { font-size: 36px; }
    .gn-lead-title { font-size: 30px; }
}

@media (min-width: 1024px) {
    .gn-site-header { padding: 14px 24px; }
    .gn-featured-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gn-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gn-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gn-lead-title { font-size: 34px; }
    .gn-article-title { font-size: 40px; }
}

@media (max-width: 600px) {
    .gn-site-header { padding: 10px 16px; }
    .gn-main { padding: 16px 16px 30px; }
    .gn-first-ad { padding: 0 16px; }
    .gn-article-main { padding: 16px 16px 30px; }
    .gn-static-main { padding: 16px 16px 30px; }
    .gn-header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .gn-search-wrap {
        max-width: 100%;
        order: 3;
    }
    .gn-main-nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }
    .gn-main-nav a {
        white-space: nowrap;
        padding: 7px 12px;
        font-size: 13px;
    }
    .gn-brand-name { font-size: 22px; }
    .gn-section-title { font-size: 22px; }
    .gn-top-stories {
        grid-template-columns: 1fr;
    }
    .gn-lead-content { padding: 20px 18px 18px; }
    .gn-lead-title { font-size: 22px; }
    .gn-lead-snippet { font-size: 13px; }
    .gn-news-card-content { padding: 14px 14px; }
    .gn-news-title { font-size: 15px; }
    .gn-news-card-thumb { width: 100px; min-width: 100px; }
    .gn-article-title { font-size: 24px; }
    .gn-article-hero { padding: 22px 18px; }
    .gn-article-body { padding: 26px 20px; font-size: 16px; }
    .gn-article-body p:first-child::first-letter { font-size: 44px; }
    .gn-action-bar { padding: 16px 16px; }
    .gn-cta-read { width: 100%; text-align: center; }
    .gn-action-btn { flex: 1; justify-content: center; }
    .gn-static-article { padding: 28px 22px; }
    .gn-static-title { font-size: 24px; }
    .gn-footer-nav { gap: 18px; }
    .gn-footer-logo { font-size: 24px; }
}
