/* =========================================
   Typography – MM Stimme Modern
   ========================================= */

/* === Grundschrift === */
body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ci-gray);
}

/* === Absätze === */
p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ci-gray);
}

/* === Standard-Link === */
a {
    color: var(--ci-primary);
    transition: var(--transition);
}
a:hover {
    color: var(--ci-primary-dark);
}

/* =========================================
   Headings
   ========================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 0 15px;
    color: var(--ci-primary);
}

/* H1 – große Hero-Überschrift */
h1 {
    font-size: 56px;
    line-height: 1.2;
}

/* H2 – Sektionstitel */
h2 {
    font-size: 38px;
    line-height: 1.3;
}

/* H3 – kleinere Sektionstitel */
h3 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
}

/* H4 – Box-Titel, Cards */
h4 {
    font-size: 20px;
    line-height: 1.3;
}

/* H5 – Meta-Infos, kleine Titel */
h5 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

/* H6 – Labels, kleine Meta */
h6 {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

/* =========================================
   Utility Typografie
   ========================================= */

.c_heading {
    font-size: 35px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--ci-primary);
}

.c_para {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ci-gray);
}

/* Zentrierte Headline-Box */
.c_head {
    max-width: 550px;
    margin: 0 auto 40px;
    text-align: center;
}

/* =========================================
   Listen
   ========================================= */

ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* =========================================
   Zitate
   ========================================= */

blockquote {
    padding: 20px;
    border-left: 4px solid var(--ci-primary);
    background: rgba(0,0,0,0.03);
    font-style: italic;
    margin: 20px 0;
}

/* =========================================
   Responsive Typografie
   ========================================= */

@media (max-width: 992px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    h3 { font-size: 28px; }
    .c_heading { font-size: 30px; }
}

@media (max-width: 768px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    h3 { font-size: 24px; }
    .c_heading { font-size: 26px; }
}

@media (max-width: 480px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    .c_heading { font-size: 22px; }
}
