/*
Theme Name: Aniva Studios
Theme URI: https://anivastudios.de
Author: Aniva Studios
Description: Custom-Theme aus dem bereinigten Webflow-Export. Die 6 Original-Seiten nutzen das Template "Webflow Original"; Blog und neue Seiten bekommen Navbar/Footer aus dem Theme und die Basis-Typografie der Website. Design-CSS, Fonts und Bilder liegen im Theme unter assets/ (seit v2 im Theme enthalten).
Version: 2.5
Requires PHP: 7.4
License: proprietary
Text Domain: anivastudios
*/

/* ---- Layout für Blog und neue Seiten (Original-Seiten bringen ihr CSS selbst mit) ---- */

.aniva-main {
    padding: 60px 20px 80px;
}

.aniva-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: Poppins, sans-serif;
    color: var(--new-brand-10, #1a1a1a);
    font-size: 16px;
    line-height: 1.7;
}

.aniva-content h1,
.aniva-content h2,
.aniva-content h3,
.aniva-page-title {
    font-family: "Libre Bodoni", serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--new-brand-10, #1a1a1a);
}

.aniva-page-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 30px;
}

.aniva-content h2 { font-size: 30px; line-height: 1.3; margin: 40px 0 15px; }
.aniva-content h3 { font-size: 22px; line-height: 1.4; margin: 30px 0 10px; }
.aniva-content p  { margin: 0 0 18px; }

.aniva-content img,
.aniva-content figure {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
}

.aniva-content a { color: inherit; }

.aniva-post-meta {
    font-family: Poppins, sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 10px;
}

/* Beitragsliste (Blog-Übersicht) */
.aniva-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.aniva-post-card {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aniva-post-card h2 {
    font-family: "Libre Bodoni", serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    margin: 0;
}

.aniva-post-card h2 a { text-decoration: none; color: inherit; }
.aniva-post-card h2 a:hover { text-decoration: underline; }

.aniva-post-card .aniva-card-thumb img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.aniva-read-more {
    font-family: Poppins, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    margin-top: auto;
}

.aniva-read-more:hover { text-decoration: underline; }

.aniva-content .navigation.pagination,
.aniva-content .nav-links {
    margin-top: 40px;
    font-family: Poppins, sans-serif;
}

/* Datenschutz-Hinweis unter dem Kontaktformular (wird per Skript eingefuegt) */
.aniva-datenschutz-hinweis {
    margin: 4px 0 14px;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    line-height: 1.6;
}
.aniva-datenschutz-hinweis a {
    color: inherit;
    text-decoration: underline;
}

/* Datenschutz-Seite: kompakte Abstaende zwischen den Kapiteln
   (paragraph-94 hat global 100px margin-bottom — hier zu viel) */
.aniva-rechtstext .paragraph-94 {
    margin-bottom: 40px;
}