:root {
    --gold-light: #FFD700;
    --gold-dark: #FFB300;
    --silver-light: #E0E0E0;
    --silver-dark: #C0C0C0;
    --bg-light: #FAFAFA;
    --text: #000;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text);
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 25px 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .logo img {
        height: 28px;
    }
}
    
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color .3s, background .3s;
    cursor: pointer;
}

.nav-links a:hover {
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HAMBURGER MENU */
/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 10px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}



/* RESPONSIVE NAVBAR */
@media (max-width: 768px) {
    .navbar {
        padding: 20px 30px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 80px;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 20px;
        font-size: 18px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a:hover {
        background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo img {
        height: 26px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 2.5px 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 5px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -5px);
    }
}

/* HERO */
/* HERO */
.hero {
    padding: 20px 60px;
    margin-bottom: 0;
}

.hero-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    padding: 60px;
}

.hero-container+.hero-container {
    margin-top: 40px;
}

.hero h1 {
    text-align: center;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #FFD700 25%, #FFB300 90%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.subtext {
    color: #777;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 30px;
    }

    .hero-container {
        padding: 40px 30px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .subtext {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 15px 20px;
    }

    .hero-container {
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        word-spacing: 0.05em;
    }
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.section-header h2 {
    margin: 0;
    font-family: 'Poppins';
    font-weight: 600;
}

.label {
    font-size: .8rem;
    color: #888;
    text-transform: uppercase;
}

.metal-icon {
    width: 60px;
    height: 60px;
}

@media (max-width: 480px) {
    .metal-icon {
        width: 40px;
        height: 40px;
    }

    .section-header h2 {
        font-size: 18px;
    }
}

.rate-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .rate-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .rate-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.rate-card {
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, .1);
    padding: 20px;
}

@media (max-width: 480px) {
    .rate-card {
        padding: 12px 15px;
    }
}

.rate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rate-header h3 {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
}

@media (max-width: 480px) {
    .rate-header h3 {
        font-size: 14px;
        font-weight: 400;
    }
}

.subtitle {
    color: #777;
    font-size: .77rem;
    margin: 6px 0;
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 0.7rem;
    }
}

.rate {
    font-size: 1.4rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .rate {
        font-size: 1rem;
        font-weight: 400;
    }
}

.change {
    font-weight: 600;
}

@media (max-width: 480px) {
    .change {
        font-weight: 400;
        font-size: 0.85rem;
    }
}

.positive {
    color: green;
}

.negative {
    color: red;
}

.gold-summary, .silver-summary {
    text-align: right;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.summary-price {
    font-weight: 700;
    font-size: 1.6rem;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 480px) {
    .summary-price {
        font-size: 1.1rem;
        font-weight: 400;
    }
}

.summary-info {
    font-size: .85rem;
    color: #777;
}

@media (max-width: 480px) {
    .summary-info {
        font-size: 0.7rem;
    }
}

/* ========== TABLE SECTIONS ========== */
.data-section {
    padding: 80px 60px 40px;
    display: grid;
    gap: 40px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .data-section {
        padding: 40px 30px 30px;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .data-section {
        padding: 30px 20px 20px;
        gap: 20px;
    }
}

/* ========== DEFAULT TABLE CARD (FOR HISTORICAL TABLES) ========== */
.table-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    padding: 60px;
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .table-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .table-card {
        padding: 15px;
        border-radius: 12px;
        overflow-x: visible;
        overflow: visible;
    }
}

/* ========== PURITY TABLE ONLY - WITH HORIZONTAL SCROLL ========== */
.table-card:first-child {
    overflow-x: scroll; /* ✅ Changed from auto to scroll - always show scrollbar */
    overflow-y: visible;
    -webkit-overflow-scrolling: touch; /* ✅ Smooth scrolling on iOS */
}

@media (max-width: 768px) {
    .table-card:first-child {
        overflow-x: scroll; /* ✅ Changed from auto to scroll */
    }
}

@media (max-width: 480px) {
    .table-card:first-child {
        overflow-x: scroll; /* ✅ Changed from auto to scroll */
        overflow-y: visible;
    }
}

/* ========== STICKY HEADER FOR PURITY TABLE ========== */
.table-card:first-child thead {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.table-card:first-child thead th {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
}

/* ========== CUSTOM GOLD SCROLLBAR (PURITY TABLE ONLY) ========== */

/* Webkit browsers (Chrome, Safari, Edge) */
.table-card:first-child::-webkit-scrollbar {
    height: 8px;
    -webkit-appearance: none; /* ✅ Always show scrollbar */
}

.table-card:first-child::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table-card:first-child::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 10px;
}

.table-card:first-child::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #FFA500, #FF8C00);
}

@media (max-width: 480px) {
    .table-card:first-child::-webkit-scrollbar {
        height: 6px;
        -webkit-appearance: none; /* ✅ Always show scrollbar on mobile */
    }
}

/* Firefox scrollbar (Purity table only) */
.table-card:first-child {
    scrollbar-width: thin;
    scrollbar-color: #FFD700 #f1f1f1;
}

/* ========== HEADINGS ========== */
.gradient-heading {
    background: #000;
    -webkit-background-clip: text;
    color: transparent;
    font-family: 'Inter';
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .gradient-heading {
        font-weight: 500;
        font-size: 18px !important;
        line-height: 1.4;
    }
}

/* Target all h2 headings in table cards */
.table-card h2 {
    font-family: 'Inter';
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .table-card h2 {
        font-size: 18px !important;
        font-weight: 500;
        line-height: 1.4;
    }
}

/* Target data section headings */
.data-section h2 {
    font-family: 'Inter';
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .data-section h2 {
        font-size: 18px !important;
        font-weight: 500;
        line-height: 1.4;
    }
}

/* Mobile line break for headings */
.mobile-break {
    display: none;
}

@media (max-width: 480px) {
    .mobile-break {
        display: block;
    }
}

/* ========== TABLE STYLES ========== */

/* DEFAULT TABLE (HISTORICAL TABLES) */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
    min-width: 500px;
}

@media (max-width: 480px) {
    table {
        font-size: 0.7rem;
        min-width: 100%;
        table-layout: fixed;
    }
}

/* PURITY TABLE ONLY - SCROLLABLE */
.table-card:first-child table {
    min-width: 600px; /* ✅ Force scroll for 5 columns */
}

@media (max-width: 768px) {
    .table-card:first-child table {
        min-width: 550px;
    }
}

@media (max-width: 480px) {
    .table-card:first-child table {
        font-size: 0.7rem;
        min-width: 400px; /* ✅ Force scroll on mobile */
      /*  table-layout: auto;*/
    }
}

/* ========== TABLE CELLS ========== */
th, td {
    padding: 12px 16px;
    text-align: left;
}

@media (max-width: 480px) {
    th, td {
        padding: 8px 4px;
        word-wrap: break-word;
    }
}

/* PURITY TABLE ONLY - NO STICKY, JUST NORMAL CELLS */
@media (max-width: 480px) {
    .table-card:first-child th,
    .table-card:first-child td {
        white-space: nowrap; /* ✅ Prevent text wrapping */
        padding: 8px 10px;
    }
    
    /* ✅ All columns equal minimum width */
    .table-card:first-child th,
    .table-card:first-child td {
        min-width: 90px;
    }
}

th {
    color: #555;
    font-weight: 500;
}

@media (max-width: 480px) {
    th {
        font-weight: 400;
        font-size: 0.7rem;
    }
}

tbody tr:nth-child(even) {
    background: #F9F9F9;
}

td {
    color: #222;
    font-weight: 600;
}

@media (max-width: 480px) {
    td {
        font-weight: 400;
        font-size: 0.69rem;
    }
}

/* ========== SUBTEXT ========== */
.subtext.small {
    text-align: left;
    margin-bottom: 20px;
    font-size: .9rem;
}

@media (max-width: 480px) {
    .subtext.small {
        font-size: 0.75rem;
    }
}

/* ========== SEE MORE BUTTON ========== */
.see-more-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    color: #000;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 480px) {
    .see-more-btn {
        width: 100%;
        padding: 14px 20px;
        font-weight: 500;
    }
}

.see-more-btn.silver-btn {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.see-more-btn:hover {
    transform: translateY(-2px);
}

.see-more-btn:active {
    transform: translateY(0);
}

/* CALCULATOR */
.calculator {
    background: #fff;
    margin: 60px;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    text-align: center;
}

@media (max-width: 768px) {
    .calculator {
        margin: 30px;
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .calculator {
        margin: 20px;
        padding: 30px 20px;
        border-radius: 12px;
    }
}

.calculator h2 {
    font-family: 'Poppins';
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .calculator h2 {
        font-size: 22px;
    }
}

.calculator-sub-card {
    background: #FAFAFA;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    padding: 40px;
    max-width: 500px;
    margin: 30px auto 0;
    width: 100%;
}

@media (max-width: 768px) {
    .calculator-sub-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .calculator-sub-card {
        padding: 25px 20px;
    }
}

.calc-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    background: #fff;
    padding: 6px;
    border-radius: 12px;
}

@media (max-width: 480px) {
    .calc-tabs {
        gap: 8px;
        padding: 4px;
    }
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

@media (max-width: 470px) {
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

.tab-btn.active {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000;
    font-weight: bold;
}

.tab-btn:hover:not(.active) {
    background: #F5F5F5;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
    text-align: left;
}

.form-group select,
.form-group input[type="number"],
.form-group input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DDD;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: border 0.3s;
}

@media (max-width: 480px) {
    .form-group select,
    .form-group input[type="number"],
    .form-group input[type="text"] {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #FFD700;
}

.purity-group {
    display: block;
}

.purity-group.hidden {
    display: none;
}

.weight-input-group {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 10px;
}

@media (max-width: 480px) {
    .weight-input-group {
        grid-template-columns: 1fr 100px;
        gap: 8px;
    }
}

.calc-btn {
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
    color: #000;
}

.calc-btn:hover {
    transform: translateY(-2px);
}

.divider {
    height: 1px;
    background: #E5E5E5;
    margin: 30px 0;
}

.result-section {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.result-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

@media (max-width: 480px) {
    .result-value {
        font-size: 1.6rem;
    }
}

.result-info {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* PREDICTION */
.prediction {
    padding: 40px 60px;
    text-align: center;
    background: #FAFAFA;
}

@media (max-width: 768px) {
    .prediction {
        padding: 30px 30px;
    }
}

@media (max-width: 480px) {
    .prediction {
        padding: 20px 20px;
    }
}

.prediction h2 {
    font-family: 'Poppins';
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .prediction h2 {
        font-size: 22px;
    }
}

.prediction-main-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    padding: 60px 60px 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .prediction-main-card {
        padding: 40px 30px 20px;
    }
}

@media (max-width: 480px) {
    .prediction-main-card {
        padding: 30px 20px 15px;
        border-radius: 12px;
    }
}

.prediction-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .prediction-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.predict-card {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0px 7px 0px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: .2s;
    border-top: 4px solid;
}

@media (max-width: 480px) {
    .predict-card {
        padding: 20px;
    }
}

.predict-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
}

.predict-card.gold-accent {
    border-top-color: var(--gold-dark);
}

.predict-card.silver-accent {
    border-top-color: var(--gold-dark);
}

.top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.big {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .big {
        font-size: 1.1rem;
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.grid div {
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .grid div {
        font-size: 0.75rem;
    }
}

.grid b {
    font-weight: 700;
}

.footer {
    margin-top: 14px;
    padding-top: 8px;
    border-top: 1px solid #EEE;
    color: #777;
    font-size: .9rem;
}

@media (max-width: 480px) {
    .footer {
        font-size: 0.8rem;
    }
}

.icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 6px;
}

.icon-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 480px) {
    .icon-badge {
        width: 32px;
        height: 32px;
        padding: 5px;
    }
}

/* NEWS */
.news {
    padding: 40px 60px;
    background: #FAFAFA;
    text-align: center;
}

@media (max-width: 768px) {
    .news {
        padding: 30px 30px;
    }
}

@media (max-width: 480px) {
    .news {
        padding: 20px 20px;
    }
}

.news h2 {
    font-family: 'Poppins';
    font-weight: 700;
}

@media (max-width: 480px) {
    .news h2 {
        font-size: 22px;
    }
}

.news-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1400px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
        gap: 15px;
    }
}

.news-card {
    background: #fff;
    border: 1px solid #EEE;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(43, 43, 43, 0.2);
}

.news-card.active {
    border: 2px solid var(--gold-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.news-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

@media (max-width: 480px) {
    .news-content {
        padding: 15px;
    }
}

.tag {
    display: inline-block;
    background: rgba(255, 215, 0, .15);
    color: var(--gold-dark);
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.news-content h3 {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0 10px 0;
    line-height: 1.4;
    color: #222;
}

@media (max-width: 480px) {
    .news-content h3 {
        font-size: 0.95rem;
    }
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.6;
    flex-grow: 1;
}

@media (max-width: 480px) {
    .news-content p {
        font-size: 0.85rem;
    }
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #EEE;
    font-size: 0.8rem;
    color: #999;
}

@media (max-width: 480px) {
    .news-meta {
        font-size: 0.75rem;
        flex-wrap: wrap;
        gap: 8px;
    }
}

.read-more-btn {
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    cursor: pointer;
}

.read-more-btn:hover {
    text-decoration: underline;
}
