/* ---------- Footer ---------- */
.schwalbe-footer__inner {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.schwalbe-footer__copyright {
    opacity: 0.75;
}

.schwalbe-footer__links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.schwalbe-footer__links a {
    text-decoration: none;
    opacity: 0.85;
}

.schwalbe-footer__links a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .schwalbe-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------- People cards ---------- */
.modular-people-header h2 {
    margin-bottom: 0.25rem;
}

.modular-people-intro {
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.modular-people-empty {
    opacity: 0.7;
}

.person-card {
    text-align: center;
}

.person-photo {
    display: block;
}
.person-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.person-body {
    padding-top: 1.25rem;
}

.person-name {
    margin: 0 0 0.15rem;
    font-family: var(--pico-font-family-display);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--q2-text-strong);
}

.person-position {
    margin: 0 0 0.4rem;
    font-size: 0.875rem;
    color: var(--q2-text-muted);
}

.person-email {
    margin: 0;
}
.person-email a {
    font-size: 0.875rem;
    color: var(--q2-link);
    text-decoration: none;
    word-break: break-word;
}
.person-email a:hover {
    text-decoration: underline;
}

/* ---------- GDPR iframe module ---------- */
.gdpr-iframe {
    position: relative;
    width: 100%;
    border-radius: var(--q2-radius-md);
    box-shadow: var(--q2-shadow-card);
    overflow: hidden;
    background: var(--q2-bg-muted);
}

.gdpr-iframe-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.gdpr-iframe-placeholder-inner {
    max-width: 32rem;
    text-align: center;
}

.gdpr-iframe-text {
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--q2-text-muted);
}
.gdpr-iframe-text a {
    color: var(--q2-link);
}

.gdpr-iframe-frame,
.gdpr-iframe-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.navbar-brand img,
.navbar-brand svg {
  height: 40px;
  width: auto;
  display: block;
}

.blog-item-top-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--q2-radius-lg);
}