/* concepts.news */
/* Colors: #3b2f20, #ede8d8, #a0522d, #1a1a1a, #f5f0e6, #6b5b48, #d4c8b0, #c8b898, #e8e0d0, #2a2018 */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    background: #f5f0e6;
    color: #1a1a1a;
}

.masthead {
    padding: 60px 40px 40px;
    text-align: center;
    border-bottom: 1px solid #d4c8b0;
    background: #ede8d8;
}

.masthead-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #3b2f20;
}

.masthead-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #6b5b48;
    margin-top: 8px;
}

.news-layout {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.article {
    padding: 32px 0;
    border-bottom: 1px solid #d4c8b0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.article.visible { opacity: 1; transform: translateY(0); }

.article.featured { padding: 40px 0; }

.article-cat {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a0522d;
    display: block;
    margin-bottom: 8px;
}

.article-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 26px;
    color: #3b2f20;
    line-height: 1.3;
    margin-bottom: 12px;
}

.featured .article-title { font-size: 34px; }

.article-excerpt {
    font-size: 16px;
    color: #6b5b48;
    margin-bottom: 12px;
    max-width: 650px;
}

.article-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #c8b898;
}

.site-footer {
    text-align: center;
    padding: 40px;
    color: #d4c8b0;
    font-size: 13px;
    background: #2a2018;
}

@media (max-width: 768px) {
    .featured .article-title { font-size: 26px; }
}
