@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #F9F9F9;
    color: #222222;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
}

.text-accent {
    color: #9A2A2A;
}

.bg-accent {
    background-color: #9A2A2A;
}

.border-accent {
    border-color: #9A2A2A;
}

.nav-link {
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #9A2A2A;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9A2A2A;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

.article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.prose h2 {
    font-size: 1.875rem; /* 30px */
    margin-top: 2em;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #e5e5e5;
}

.prose h3 {
    font-size: 1.5rem; /* 24px */
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.prose p {
    line-height: 1.75;
}

.prose a {
    color: #9A2A2A;
    text-decoration: underline;
    transition: color 0.2s;
}

.prose a:hover {
    color: #333;
}
