/* =========================================================
   Layout
   plxBusinessBase
   ========================================================= */

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

/* Header */

.site-header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    display: block;
    padding: 1rem 0;
}

.site-header__brandline {
    display: flex;
    align-items: center;
}

.brand {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    column-gap: 1rem;
}

.brand__logo-link {
    justify-self: start;
    line-height: 0;
}

.brand__logo {
    display: block;
    width: clamp(100px, 9vw, 180px);
    height: auto;
}

.brand__text {
    justify-self: end;
    display: flex;
    flex-direction: column;
    text-align: right;
    min-width: 0;
}

.brand__name {
    color: var(--color-text);
    font-size: clamp(1.15rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
}

.brand__claim {
    margin-top: 0.2rem;
    color: var(--color-muted);
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    line-height: 1.3;
}

.site-header__navline {
    width: 100%;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

/* Sections */

.section {
    padding-block: clamp(2.5rem, 6vw, 5rem);
}

.section__header {
    max-width: 760px;
    margin-bottom: 2rem;
}

.content {
    max-width: 820px;
}

.content-section {
    background: var(--color-bg);
}

.meta {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.teaser {
    padding-block: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

/* Artikelraster */

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.article-card {
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
}

/* Footer */

.site-footer {
    background: var(--color-footer);
    color: #fff;
    padding-block: 2rem;
}

.site-footer a {
    color: #fff;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 992px) {
    .brand__logo {
        width: clamp(90px, 16vw, 130px);
    }
}

@media (max-width: 600px) {
    .brand {
        column-gap: 0.75rem;
    }

    .brand__logo {
        width: clamp(100px, 28vw, 140px);
        min-width: 100px;
    }

    .brand__name {
        font-size: clamp(1.05rem, 6vw, 1.35rem);
    }

    .brand__claim {
        font-size: clamp(0.78rem, 3.5vw, 0.95rem);
    }
}