/* ===== BASIS aus about_muster.html ===== */
body {
    margin: 0;
    font-family: Georgia, serif;
    background: #e6dac8;
    /* Significantly darker beige */
    color: #333;
}

a {
    color: #333;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== HEADER ===== */
header {
    background: #fff;
    border-bottom: none;
    padding: 14px 16px 12px;
    margin: 0 -20px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-left img {
    height: 56px;
    width: auto;
    display: block;
}

.header-center {
    flex: 1;
    text-align: center;
}

.header-center h1 {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #8a6a36;
}

.header-center p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #666;
}

.header-right {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.header-right a {
    text-decoration: none;
}

.header-right a:hover {
    text-decoration: underline;
}

.nav-row {
    margin-top: 8px;
    text-align: center;
}

.nav-row nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-row a {
    text-decoration: none;
}

.nav-row a:hover {
    text-decoration: underline;
}

/* ===== CONTENT ===== */
.page-inner {
    max-width: 900px;
    margin: 30px auto 18px;
    padding-left: 50px;
    padding-right: 30px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    flex: 1;
}

.page-inner p,
.page-inner li {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 0.8em;
}

.page-inner h1 {
    font-size: 22px;
    margin: 0 0 10px 0;
    letter-spacing: 0.06em;
    color: #333;
}

.page-inner h2 {
    font-size: 16px;
    margin: 18px 0 8px 0;
    letter-spacing: 0.06em;
    color: #333;
}

.page-inner h3 {
    font-size: 14px;
    margin: 16px 0 6px 0;
    letter-spacing: 0.06em;
    color: #333;
}

/* ===== BUTTONS (Restored/Matched to detail_Burwitz1) ===== */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 7px 18px;
    /* Smaller padding matching detail_Burwitz1 */
    border-radius: 20px;
    font-size: 13px;
    /* Smaller font matching detail_Burwitz1 */
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
    border: 1px solid transparent;
}

.btn-primary {
    background: #c7a772;
    /* Goldish from detail_Burwitz1 */
    color: #ffffff;
    border: 1px solid #c7a772;
}

.btn-primary:hover {
    background: #a98634;
    /* Darker gold on hover */
    color: #ffffff;
}

.btn-secondary,
.btn-outline {
    background: #fffaf2;
    color: #333;
    border: 1px solid #c7a772;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: #eadec6;
    text-decoration: none;
}

/* ===== FOOTER ===== */
footer.site-footer {
    background: #e6dac8;
    /* Matched to body */
    border-top: none;
    padding: 18px 0 12px;
    font-size: 12px;
    color: #333;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-top: 40px;
}

.footer-left {
    padding-left: 20px;
}

.footer-right {
    padding-right: 20px;
    text-align: right;
}

footer.site-footer a {
    text-decoration: none;
    margin-left: 12px;
    color: #333;
}

footer.site-footer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
    .header-row {
        flex-direction: column;
        align-items: center;
    }

    .header-center {
        order: 2;
    }

    .header-left,
    .header-right {
        order: 1;
    }

    .page-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}