/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fff;
}

a { color: #7b2d2d; }
a:hover { color: #a03030; }
img { max-width: 100%; height: auto; }

/* === Layout === */
.site-header__inner,
.main-content,
.site-footer__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Header === */
.site-header {
    border-bottom: 2px solid #2c2c2c;
    padding: 1.25rem 0;
}

.site-header__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-header__title {
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.site-header__title:hover { color: #7b2d2d; }

/* === Navigation === */
.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-nav__list a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.875rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
}
.site-nav__list a:hover { color: #7b2d2d; }

/* === Main content === */
.main-content {
    min-height: 60vh;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

/* === Footer === */
.site-footer {
    border-top: 1px solid #ddd;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: #888;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* === Typography === */
h1 { font-size: 2rem; margin: 0 0 1rem; }
h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

/* === Homepage sections === */
.home-intro { margin-bottom: 2.5rem; }

.home-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.home-section {
    border: 1px solid #ddd;
    padding: 1.5rem;
}
.home-section h2 { font-size: 1.15rem; margin-top: 0; }
.home-section h2 a { color: #2c2c2c; text-decoration: none; }
.home-section h2 a:hover { color: #7b2d2d; }
.home-section p { font-size: 0.9rem; font-family: 'Helvetica Neue', Arial, sans-serif; color: #555; margin: 0; }

/* === News list === */
.news-list { list-style: none; padding: 0; margin: 0; }

.news-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.news-item__meta {
    font-size: 0.85rem;
    color: #888;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0 0 0.25rem;
}

.news-item__title { font-size: 1.3rem; margin: 0 0 0.5rem; }
.news-item__excerpt { color: #555; margin: 0; }

/* === Category filter === */
.filter-form {
    background: #f8f8f8;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
}

.filter-form input[type="text"],
.filter-form select {
    padding: 0.4rem 0.75rem;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    font-family: inherit;
}

.filter-form button {
    padding: 0.4rem 1rem;
    background: #7b2d2d;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
}
.filter-form button:hover { background: #a03030; }

.filter-form a {
    font-size: 0.85rem;
    color: #555;
}

/* === Victim table === */
.victim-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.victim-table th {
    text-align: left;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
    border-bottom: 2px solid #2c2c2c;
    padding: 0.5rem 2rem 0.5rem 0;
}

.victim-table td {
    padding: 0.6rem 2rem 0.6rem 0;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.victim-table td:last-child { width: 1%; white-space: nowrap; }

.victim-item__name { font-weight: bold; }

.victim-item__badge {
    font-size: 0.75rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #7b2d2d;
    color: #fff;
    padding: 0.2em 0.6em;
    border-radius: 2px;
    white-space: nowrap;
}

/* === Victim profile === */
.victim-profile {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.victim-profile__photo img { width: 200px; display: block; }

.victim-profile__info { flex: 1; min-width: 220px; }
.victim-profile__info h1 { margin-bottom: 0.5rem; }

.victim-profile__data { margin: 1rem 0 0; }
.victim-profile__data dt {
    font-weight: bold;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.victim-profile__data dd { margin: 0 0 0.75rem 0; }

/* === Document list === */
.document-list { list-style: none; padding: 0; margin: 0; }

.document-item {
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}

.document-item__title { font-weight: bold; margin: 0 0 0.25rem; }
.document-item__desc { font-size: 0.9rem; color: #555; margin: 0; }

/* === Links list === */
.links-list { list-style: none; padding: 0; margin: 0; }
.links-list li { padding: 0.5rem 0; border-bottom: 1px solid #eee; }

/* === Contact info === */
.contact-info { margin: 0; }
.contact-info dt {
    font-weight: bold;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.contact-info dd { margin: 0 0 0.75rem 0; }

/* === Article tags === */
.article-tags {
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #555;
    margin-top: 2rem;
}

/* === Placeholder/coming soon === */
.placeholder-notice {
    background: #fff9e6;
    border-left: 4px solid #c9a83c;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* === Back link === */
.back-link {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* === Rich text content === */
.rich-text img { margin: 1rem 0; }
.rich-text blockquote {
    border-left: 3px solid #7b2d2d;
    margin: 1.5rem 0;
    padding: 0.5rem 1.5rem;
    color: #555;
    font-style: italic;
}
