:root {
    --max-width: 820px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* Base typography + layout (moved from riso.css) */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-size: 16px
}

body {
    background: var(--riso-paper, #f2f0eb);
    color: var(--text, #444944);
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.7;
    font-weight: 300
}

h1,
h2,
h3 {
    font-weight: 400;
    margin: 2em 0 0.6em;
    line-height: 1.3
}

h1 {
    font-size: 2.2rem;
    margin-top: 0
}

h2 {
    font-size: 1.5rem
}

h3 {
    font-size: 1.1rem
}

p {
    margin: 0 0 1.2em
}

.site-header {
    max-width: var(--max-width);
    margin: 60px auto 20px;
    padding: 0 40px;
}

/* Header layout: logo left, text to the right */
.site-header{
    display: flex;
    align-items: center;
    gap: 20px;
}
.site-logo{
    width: 72px;
    height: auto;
    object-fit: contain;
    flex: 0 0 72px;
}
.header-text{display:flex;flex-direction:column}
@media (max-width:640px){
    .site-header{flex-direction:column;align-items:flex-start;gap:8px}
    .site-logo{width:56px;flex:0 0 56px}
}

.brand {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--riso-black, #222);
    letter-spacing: 1px;
    text-transform: uppercase
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-muted, #888);
    margin-top: 4px;
    font-weight: 300
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px
}

.layout {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 60px
}

@media (max-width:820px) {
    .layout {
        grid-template-columns: 1fr
    }

    .site-nav {
        margin-top: 40px
    }
}

main.article-list {
    background: transparent
}

.article {
    background: var(--riso-yellow, #ede7d0);
    padding: 16px 18px;
    margin-bottom: 20px;
    border-left: 3px solid var(--riso-beige, #ebdeac)
}

.article h2 {
    margin: 0 0 0.4em;
    font-size: 1.4rem;
    font-weight: 400
}

.article h2 a {
    border: none
}

.lede {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--riso-green, #9bbea9);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px
}

.byline {
    font-size: 0.85rem;
    color: var(--text-muted, #888);
    margin: 8px 0
}

.hero {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    margin: 20px 0
}

aside.site-nav {
    position: relative;
    font-size: 0.9rem
}

.site-nav nav ul {
    list-style: none;
    padding: 0
}

.site-nav nav li {
    margin: 14px 0
}

.site-nav .small {
    font-size: 0.75rem;
    color: var(--text-muted, #888);
    display: block;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5
}

footer.site-footer {
    max-width: var(--max-width);
    margin: 60px auto 40px;
    padding: 20px 40px 40px;
    color: var(--text-muted, #888);
    font-size: 0.85rem;
    border-top: 1px solid #ddd
}

.muted {
    color: var(--text-muted, #888)
}

.riso-accent {
    background: var(--riso-yellow, #f4ecc2);
    padding: 2px 6px;
    border-radius: 3px
}

/* Compact releases table */
.releases-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}
.releases-table th,
.releases-table td {
    padding: 6px 8px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 0.95rem;
    vertical-align: middle;
}
.releases-table th {
    color: var(--text-muted, #888);
    font-weight: 600;
    font-size: 0.85rem;
}
.releases-table tr:last-child td { border-bottom: none; }
