:root{
    --bg:#ffffff;
    --text:#1f2a37;
    --muted:#6b7280;
    --card:#ffffff;
    --border:#e5e7eb;
    --accent:#0f766e; /* petrolgrün, gerne ändern */
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,Arial;background:var(--bg);color:var(--text);line-height:1.5}

a{color:#0ea5e9;text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1100px;margin:0 auto;padding:20px 16px}

.site-footer{
    padding:16px;border-top:1px solid var(--border);text-align:center;color:var(--muted);background:#f8fafc
}

.hero{
    padding:24px;background:linear-gradient(180deg,#f0fdf4,#ffffff);
    border:1px solid var(--border);border-radius:16px;margin-bottom:16px
}

.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:12px}
.card{
    grid-column:span 4;
    background:var(--card);
    border:1px solid var(--border);
    border-radius:16px;
    padding:14px;
    box-shadow:0 6px 18px rgba(0,0,0,.04);
}

#support.card {
    margin-top: 12px;
    grid-column: span 12;  /* doppelt so breit wie Erntestatus */
}

#aktuell.card {
    grid-column: span 8;  /* doppelt so breit wie Erntestatus */
}
#status.card {
    grid-column: span 4;
}

@media (max-width: 900px) {
    #aktuell.card, #status.card {
        grid-column: span 12;
    }
}
.update{border-top:1px solid var(--border);padding-top:10px;margin-top:10px;}
.status{
    background:#f8fafc;border:1px dashed var(--border);
    border-radius:12px;padding:12px;
}
.list{padding-left:18px}
.muted{color:var(--muted);font-size:12px}
.small{font-size:12px;color:var(--muted)}
.product h1{margin-top:0}

@media (max-width:900px){ .grid .card{grid-column:span 12} }

.site-footer{
    margin-top:24px;
    background:#f8fafc;
    border-top:1px solid var(--border);
    color:var(--text);
}
.footer-inner{
    max-width:1100px;
    margin:0 auto;
    padding:16px;
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}
.site-footer .brand{
    display:flex; align-items:center; gap:8px;
    text-decoration:none; color:var(--text);
}
.footer-links a{
    margin-left:12px; color:#0369a1; text-decoration:none;
}
.footer-links a:hover{ text-decoration:underline; }
.muted{ color:var(--muted); font-size:12px; }
@media (max-width:700px){
    .footer-links{ width:100%; display:flex; flex-wrap:wrap; gap:8px; }
    .footer-links a{ margin-left:0; }
}

/* 12er-Grid bleibt */
section.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    align-items: start;
}

/* Default für Karten: span 4 (1/3), gilt überall */
section.grid > .card {
    grid-column: span 4;
}

/* Thema-Layout: Aktuelles = 8/12, Status = 4/12, explizit mit Start/Ende */
section.grid > #aktuell.card {
    grid-column: 1 / span 8;   /* Spalten 1–8 */
}
section.grid > #status.card {
    grid-column: 9 / span 4;   /* Spalten 9–12 */
}

/* Mobil: untereinander */
@media (max-width: 900px) {
    section.grid > #aktuell.card,
    section.grid > #status.card {
        grid-column: 1 / -1;     /* volle Breite */
    }
}

