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

body {
    font-family: "Avenir", "Trebuchet MS", "Century Gothic", Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    border-bottom: 1px solid #eee;
}
header nav a { color: #555; text-decoration: none; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
header nav a:hover { color: #c0392b; }
.site-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

main { padding: 2rem 0; }

article { margin-bottom: 3rem; }
article h1 { font-size: 2.2rem; margin-bottom: 0.5rem; line-height: 1.25; color: #1a1a1a; font-weight: 900; }
article h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; font-weight: 700; color: #1a1a1a; }
article h2::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background: #c0392b;
    margin-top: 6px;
}
article h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: #c0392b; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
article p { margin-bottom: 1rem; color: #333; }
article a { color: #c0392b; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(192, 57, 43, 0.3); }
article a:hover { border-bottom-color: #c0392b; }
article img { max-width: 100%; height: auto; border-radius: 12px; }

.hero {
    margin: 0 -1.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.hero img {
    width: 100vw;
    max-width: calc(100vw);
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
.hero figcaption { font-size: 0.8rem; color: #aaa; margin-top: 0.5rem; padding: 0 1.5rem; }

.article-body { margin: 1.5rem 0; }

time { display: block; font-size: 0.8rem; color: #aaa; margin-top: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }

.articles-list { display: grid; gap: 2.5rem; }
.card { position: relative; }
.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}
.card:hover img { transform: scale(1.02); }
.card-image-wrap { overflow: hidden; border-radius: 12px; }
.card h2 { font-size: 1.2rem; margin: 0.9rem 0 0.4rem; font-weight: 800; }
.card h2 a { color: #1a1a1a; text-decoration: none; }
.card h2 a:hover { color: #c0392b; }
.card p { font-size: 0.9rem; color: #666; }

footer {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #bbb;
    border-top: none;
}
footer a { color: #bbb; text-decoration: none; }
footer a:hover { color: #c0392b; }

@media (max-width: 600px) {
    body { padding: 0 1rem; }
    article h1 { font-size: 1.6rem; }
    .hero { margin: 0 -1rem 1.5rem; }
    .hero img { height: 240px; }
    .card img { height: 180px; }
}
