:root {
    --green: #4aa96c;
    --green-dark: #2b4b2f;
    --muted: #6b6b6b;
    --bg: #f4fff6;
    --card: #ffffff;
    --radius: 12px;
    --max-w: 980px;
}
.container {
    max-width: 1366px;
    margin: 0 auto;
}
.container header.impress-header {
    display:flex;
    gap:18px;
    align-items:center;
    margin-bottom:20px;
}
.container header.impress-header .logo_klein {
    width:78px;
    height:78px;
    border-radius:14px;
    overflow:hidden;
    flex:0 0 78px;
    box-shadow: 0 8px 24px rgba(18,45,20,0.06);
    background: #fff;
    border: 1px solid rgba(43,75,47,0.04);
}
.container header.impress-header .logo_klein img {
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.container header.impress-header .brand {
    display:flex;
    flex-direction:column;
}
.container header.impress-header .brand h1 {
    margin:0;
    color:var(--green-dark);
    font-size:1.25rem;
    letter-spacing:0.2px;
}
.container header.impress-header .brand p {
    margin:4px 0 0;
    color:var(--muted);
    font-size:0.95rem;
}
.container .card {
    background: var(--card);
    border-radius: var(--radius);
    padding:22px;
    box-shadow: 0 12px 36px rgba(12,30,18,0.06);
    border: 1px solid rgba(74,169,108,0.06);
    margin-bottom:18px;
}
.grid-2 {
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}
@media(min-width:880px) {
    .grid-2{
        grid-template-columns: 1fr 360px;
    }
}
.container h2 {
    margin:0 0 10px;
    color: var(--green-dark);
    font-size:1.1rem;
}
.container h3 {
    margin:0 0 8px;
    font-size:1rem;
    color:#223322;
}
.meta-list {
    display:grid;
    gap:6px;
    font-size:0.97rem;
    color:#2d3b2d;
}
.meta-list dt {
    font-weight:700;
    color:var(--green-dark);
}
.meta-list dd {
    margin:0 0 6px 0;
    color:#333;
}
a.inline-link {
    color:var(--green);
    text-decoration:none;
    border-bottom: 1px dashed rgba(74,169,108,0.25);
}
a.inline-link:hover {
    color:var(--green-dark);
    text-decoration:underline;
}
.legal {
    font-size:0.89rem;
    color:#4a4a4a;
    line-height:1.5;
}
.callout {
    background: linear-gradient(180deg,#f9fff9,#eefaf0);
    padding:12px;
    border-radius:10px;
    border:1px solid rgba(74,169,108,0.08);
    color:#25402a;
    font-weight:600;
}
.actions{
    display:flex;
    gap:10px;
    margin-top:12px;
    flex-wrap:wrap;
}
.btn {
    background:var(--green);
    color:white;
    padding:10px 14px;
    border-radius:10px;
    border:none;
    cursor:pointer;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
}
.btn.secondary {
    background:#fff;
    color:var(--green-dark);
    border:1px solid rgba(74,169,108,0.12);
    font-weight:600;
}