/* diefresse.com — Archiv | Laura Design System */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #0a0a0f;
    color: #e2e6ed;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    line-height: 1.6;
    font-size: 0.82rem;
    -webkit-font-smoothing: antialiased;
}

header {
    background: #12131a;
    border-bottom: 1px solid #1e2233;
    padding: 1rem 2rem;
}
.header-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.site-title {
    color: #FF3333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.15s;
}
.site-title:hover { color: #ff6666; }
.site-subtitle {
    color: #636d83;
    font-size: 0.72rem;
    font-style: italic;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.hero-image {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid #1e2233;
}

h2 {
    color: #FF3333;
    font-size: 0.88rem;
    margin: 1.5rem 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info-box {
    background: #12131a;
    border: 1px solid #1e2233;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 0.5rem;
}

.label {
    color: #636d83;
}

.accent {
    color: #FF3333;
}

a {
    color: #FF3333;
    text-decoration: none;
    transition: color 0.15s;
}
a:hover {
    color: #ff6666;
    text-decoration: underline;
}

.teaser-img {
    background: #f7f6f6;
    border-radius: 4px;
    padding: 4px 8px;
    display: inline-block;
    margin: 0.5rem 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
    margin: 0.8rem 0;
}

.gallery img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #1e2233;
    transition: border-color 0.2s;
}
.gallery img:hover {
    border-color: #FF3333;
}

.section-divider {
    border: none;
    border-top: 1px solid #1e2233;
    margin: 1.5rem 0;
}

.meta {
    color: #636d83;
    font-size: 0.72rem;
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    background: #1a1b26;
    border: 1px solid #1e2233;
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    color: #636d83;
    margin-right: 0.3rem;
}

footer {
    background: #12131a;
    border-top: 1px solid #1e2233;
    padding: 1rem 2rem;
    text-align: center;
    color: #636d83;
    font-size: 0.68rem;
    margin-top: 2rem;
}
footer a { color: #FF3333; }
