.market-updates-header {
    background:
        radial-gradient(circle at top left, rgba(241, 196, 15, 0.34), transparent 30%),
        linear-gradient(135deg, #17212b 0%, #2c3e50 100%);
}

.update-kicker,
.section-kicker {
    display: inline-block;
    color: #9a6a00;
    background: #fff4c2;
    border: 1px solid #f1c40f;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.market-updates-header .update-kicker {
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.12);
    border-color: rgba(241, 196, 15, 0.32);
}

.market-updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.golden-update-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7e0ca;
    border-radius: 16px;
    color: #2c3e50;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.golden-update-card:hover {
    transform: translateY(-3px);
    border-color: #f1c40f;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.golden-update-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: #f8f1d2;
}

.golden-update-card-body {
    padding: 18px;
}

.update-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: #9a6a00;
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.golden-update-card h3 {
    margin: 0 0 8px;
    color: #22313f;
    font-size: 1.15rem;
    line-height: 1.25;
}

.golden-update-card p {
    margin: 0 0 14px;
    color: #5d6873;
    font-size: 0.96rem;
}

.golden-update-card strong {
    color: #a97400;
}

.update-hero {
    display: block;
    margin-top: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.update-takeaway {
    border-left: 5px solid #f1c40f;
    background: linear-gradient(135deg, #fffaf0, #ffffff);
}

.listen-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid #eadfbf;
    background: #fffaf0;
}

.listen-panel h2 {
    margin: 0 0 6px;
}

.listen-panel p {
    margin: 0;
    color: #5d6873;
}

.listen-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.listen-button {
    min-height: 44px;
    border: 1px solid #d1b66b;
    border-radius: 8px;
    background: #fff;
    color: #2c3e50;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 10px 16px;
}

.listen-button:hover:not(:disabled),
.listen-button:focus-visible {
    border-color: #a97400;
    outline: 2px solid rgba(241, 196, 15, 0.35);
    outline-offset: 2px;
}

.listen-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.listen-primary {
    background: #2c3e50;
    border-color: #2c3e50;
    color: #f1c40f;
}

.listen-primary:hover:not(:disabled),
.listen-primary:focus-visible {
    color: #fff;
}

.source-box a {
    word-break: break-word;
}

.updates-home-cta {
    margin-top: 18px;
    text-align: center;
}

.updates-home-cta a {
    display: inline-block;
    background: #2c3e50;
    color: #f1c40f;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
}

.updates-home-cta a:hover {
    background: #34495e;
    color: #fff;
}

@media (max-width: 600px) {
    .golden-update-card img { height: 170px; }
    .update-meta { display: block; }
    .update-meta time { display: block; margin-top: 3px; }
    .listen-panel { align-items: stretch; flex-direction: column; }
    .listen-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .listen-primary { grid-column: 1 / -1; }
}
