body {
    background: var(--dark-2);
    color: var(--text-inv);
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
}

.articles-main {
    padding: 5rem 0 6rem;
}

.articles-header {
    margin-bottom: 4rem;
}

.articles-tag {
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.articles-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--text-inv);
    margin-bottom: 1rem;
}

.articles-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.2rem auto;
}

.articles-sub {
    color: rgba(240, 236, 255, .6);
    font-size: .95rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.article-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.article-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(167, 139, 250, .15);
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: border-color .2s, transform .2s;
}

.article-card:hover {
    border-color: rgba(167, 139, 250, .45);
    transform: translateY(-3px);
}

.article-card-date {
    font-size: .72rem;
    letter-spacing: .1em;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
}

.article-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-inv);
    margin: 0;
    line-height: 1.4;
}

.article-card-excerpt {
    font-size: .88rem;
    color: rgba(240, 236, 255, .6);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.article-card-read {
    font-size: .8rem;
    font-family: 'Cinzel', serif;
    letter-spacing: .08em;
    color: rgba(167, 139, 250, .8);
    margin-top: auto;
}

.article-card:hover .article-card-read {
    color: rgba(167, 139, 250, 1);
}
