/* kunst-werk.org — 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;
}
.blog-title {
    color: #58C139;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.15s;
}
.blog-title:hover { color: #7de060; }
.blog-subtitle {
    color: #636d83;
    font-size: 0.72rem;
    font-style: italic;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.archive-info {
    color: #8b95a8;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: #12131a;
    border: 1px solid #1e2233;
    border-radius: 8px;
    line-height: 1.8;
}
.archive-info strong {
    color: #58C139;
    font-size: 0.85rem;
}
.archive-source { margin-top: 0.3rem; font-size: 0.68rem; color: #636d83; }
.archive-source a { color: #636d83; text-decoration: none; border-bottom: 1px solid #3a3f4f; }
.archive-source a:hover { color: #8b95a8; }

.section { margin-bottom: 2rem; }
.section-note {
    color: #636d83;
    font-size: 0.72rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.year-header {
    color: #636d83;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid #1e2233;
    margin-bottom: 0.8rem;
}

/* Event Cards */
.event-card {
    background: #12131a;
    border: 1px solid #1e2233;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 0.8rem;
}
.event-title {
    color: #58C139;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.event-date {
    color: #8b95a8;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
}
.event-lineup {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.lineup-act {
    color: #c8ccd4;
    background: #1a1b26;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
}
.lineup-act em {
    color: #636d83;
    font-style: normal;
}

/* Stream Table */
.stream-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.75rem;
    background: #12131a;
    border: 1px solid #1e2233;
    border-radius: 8px;
    overflow: hidden;
}
.stream-table th {
    background: #1a1b26;
    color: #8b95a8;
    text-align: left;
    padding: 0.5rem 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
}
.stream-table td {
    padding: 0.4rem 0.8rem;
    border-top: 1px solid #1a1b26;
    color: #c8ccd4;
}
.stream-table tr:hover td { background: #161822; }

/* Acts Grid */
.acts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.act-tag {
    color: #c8ccd4;
    background: #1a2a1f;
    border: 1px solid #2a3a2f;
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}
.area-card {
    background: #12131a;
    border: 1px solid #1e2233;
    border-radius: 8px;
    padding: 1rem 1.2rem;
}
.area-title {
    color: #58C139;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.area-desc {
    color: #8b95a8;
    font-size: 0.72rem;
    line-height: 1.6;
}

/* Page Links */
.post-list { margin-bottom: 1rem; }
.post-link {
    display: grid;
    grid-template-columns: 5rem 1fr;
    grid-template-rows: auto auto;
    gap: 0 0.8rem;
    padding: 0.55rem 0.5rem;
    border-bottom: 1px solid #1a1b26;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
a.post-link:hover { background: #161822; }
.post-date {
    color: #636d83;
    font-size: 0.72rem;
    grid-row: 1;
    grid-column: 1;
    padding-top: 0.1rem;
}
.post-title-text {
    color: #e2e6ed;
    font-weight: 600;
    grid-row: 1;
    grid-column: 2;
    transition: color 0.15s;
}
a.post-link:hover .post-title-text { color: #58C139; }
.post-excerpt {
    color: #636d83;
    font-size: 0.72rem;
    grid-row: 2;
    grid-column: 2;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 0.15rem;
}

footer {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    text-align: center;
    color: #3a3f4f;
    font-size: 0.68rem;
    border-top: 1px solid #1a1b26;
}
.footer-note {
    color: #2a2d3a;
    font-size: 0.62rem;
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    header { padding: 0.8rem 1rem; }
    main { padding: 1rem; }
    .areas-grid { grid-template-columns: 1fr; }
    .post-link { grid-template-columns: 1fr; }
    .post-date, .post-title-text, .post-excerpt { grid-column: 1; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #12131a; }
::-webkit-scrollbar-thumb { background: #2a2d3a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3a3f4f; }
::selection { background: rgba(88, 193, 57, 0.25); color: #e2e6ed; }
