.entry-content a {
color: var(--gold);
text-decoration: none;
transition: color 0.3s ease;
}
.entry-content a:hover {
color: var(--gold-bright);
text-decoration: underline;
} .post-body {
background: #FFFFFF;
border-radius: 6px;
padding: 3rem 3.5rem;
box-shadow: 0 15px 40px rgba(201,146,42,0.14);
border-top: 3px solid var(--gold, #C9922A);
}
@media (max-width: 900px) {
.post-body {
padding: 2rem 1.5rem;
border-radius: 4px;
}
}