:root {
    --font-serif-sc: 'Noto Serif SC', serif;
}

body {
    font-family: var(--font-serif-sc);
}

.prose {
    font-family: var(--font-serif-sc);
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    font-family: var(--font-serif-sc);
    font-weight: 700;
    color: #44403c; /* stone-700 */
}

.prose p {
    line-height: 1.8;
    text-align: justify;
}

.prose a {
    color: #a16207; /* amber-700 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.prose a:hover {
    color: #c2410c; /* orange-600 */
}

.cta-link {
    display: inline-flex;
    align-items: center;
    margin: 1.5rem 0;
    padding: 0.75rem 1.5rem;
    background-color: #f5f5f41a; /* stone-200 with alpha */
    border: 1px solid #e7e5e4; /* stone-200 */
    color: #78716c; /* stone-500 */
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.cta-link:hover {
    background-color: #e7e5e4; /* stone-200 */
    color: #44403c; /* stone-700 */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
