

.page-title {
    font-size: 26px;
    font-weight: 700;
   margin: 0 16px 20px 0px;
}

.intro-text {
    font-size: 15px;
    line-height: 30px;
    margin: 0 16px 20px 0px;
    color: #333;
}

/* Cards */
.gold-cards {
    display: flex;
    justify-content: center;   /* Centers the cards horizontally */
    align-items: center;        /* Centers vertically (if needed) */
    gap: 86px;                  /* Space between cards */
    margin: 0 auto;             /* Centers the whole container */
    width: 100%;
    
}

.gold-card {
    background: #f5f5f5;    
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 243px;
    height: 140px;
}

.gold-card h2 {
    font-size: 16px;
    background: #ab8b08;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
}

.gold-price {
    font-size: 25px;
    font-weight: 700;
    margin: 10px 0;
    text-align: center;
}

.price-up {
    color: #0a9f29;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.price-down {
    color: #ff0000;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

/* Tables */
.gold-table-section {
    margin-top: 50px;
}

.gold-table-section h2 {
    font-size: 16px;
    margin-bottom: 15px;
}

.gold-table {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 15px;
}

.table-header {
    background: #ab8b08;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.table-row {
    background: #f8f8f8;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

.table-row:nth-child(even) {
    background: #efefef;
}

.pos {
    color: #0a9f29;
    font-weight: 600;
}

.neg {
    color: #ff0000;
    font-weight: 600;
}

.gold-desc p {
    font-size: 15px;
    line-height: 30px;
    color: #333;
    margin: 0 16px 20px 0px;
}

.gold-desc h2 {
    padding: 10px 0 10px 0;
}

.gold-container ul,
.gold-containert ol {
    padding-left: 20px;
    margin-left: 0;
    list-style-position: inside; /* ensures bullets stay inside */
}