/* ==========================================================
   ROSES IN THE GARDEN – Design System
   1:1 Export aus Checkpoint 9aaabb63 (03.03.2026)
   Philosophy: Contemporary Nature Magazine / Scandinavian Minimalism
   Fonts: Cormorant Garamond (headings) + Source Serif 4 (body) + Montserrat (nav)
   Colors: Exact hex-Werte aus oklch-Kompilierung
   ========================================================== */

/* ── CSS Custom Properties (exakte Werte aus dem Checkpoint) ── */
:root {
    --primary: #003e20;
    /* oklch(32% .08 155) – Waldgrün */
    --primary-foreground: #faf8f5;
    /* oklch(98% .005 90) – Creme-Weiß */
    --accent: #c8dfc8;
    /* oklch(88% .04 145) – Salbeigrün */
    --accent-foreground: #00220f;
    /* oklch(22% .06 155) */
    --background: #fbfaf6;
    /* oklch(98.5% .005 90) – Warm-Weiß */
    --foreground: #16100b;
    /* oklch(18% .015 65) – Fast-Schwarz */
    --card: #ffffff;
    --card-foreground: #16100b;
    --secondary: #f4f2ec;
    /* oklch(96% .008 90) – Helles Beige */
    --secondary-foreground: #332c26;
    /* oklch(30% .015 65) */
    --muted: #f0eeea;
    /* oklch(95% .006 90) */
    --muted-foreground: #69625a;
    /* oklch(50% .015 65) – Warmes Grau */
    --border: #d9d7d2;
    /* oklch(88% .008 90) */
    --input: #d9d7d2;
    --ring: #003e20;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
a[href],
select {
    cursor: pointer;
}

/* ── Container ── */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1280px;
    }
}

/* ── Utility Classes (aus index.css) ── */
.nav-font {
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-size: .75rem;
    font-weight: 500;
}

.divider {
    background-color: #003e20;
    width: 3rem;
    height: 1px;
    margin: 1rem 0;
}

.category-badge {
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #003e20;
    background-color: rgba(0, 62, 32, 0.1);
    border-radius: 2px;
    padding: .25rem .625rem;
    font-family: Montserrat, sans-serif;
    font-size: .65rem;
    font-weight: 600;
    display: inline-block;
}

/* ══════════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    transition: transform .35s ease, padding .3s ease, box-shadow .3s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

@media (max-width: 767px) {
    .header-inner {
        height: 4rem;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: .02em;
    color: #003e20;
}

@media (max-width: 767px) {
    .logo-name {
        font-size: 1.5rem;
    }
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #69625a;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav a {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #69625a;
    transition: color .2s;
}

.desktop-nav a:hover {
    color: #003e20;
}

.desktop-nav a.active {
    color: #003e20;
    border-bottom: 1px solid #003e20;
    padding-bottom: 2px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    transition: background .2s;
    color: #69625a;
}

.icon-btn:hover {
    background: #c8dfc8;
}

.icon-btn svg {
    width: 16px;
    height: 16px;
}

.search-btn-desktop {
    display: none;
}

@media (min-width: 768px) {
    .search-btn-desktop {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    display: block;
}

@media (min-width: 768px) {

    .mobile-menu,
    .mobile-menu.open {
        display: none;
    }
}

.mobile-menu nav {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 500;
    color: #69625a;
    transition: color .2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #003e20;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .2), transparent 40%, rgba(0, 0, 0, .6));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding-bottom: 6rem;
    }
}

.hero-content .inner {
    max-width: 40rem;
}

.hero-label {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-title em {
    font-style: italic;
}

.hero-description {
    color: rgba(255, 255, 255, .85);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: var(--foreground);
    padding: .75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .05em;
    border: none;
    transition: background .2s;
}

.btn-primary:hover {
    background: #c8dfc8;
}

.btn-primary svg {
    width: 14px;
    height: 14px;
}

/* ══════════════════════════════════════════════
   INTRO
   ══════════════════════════════════════════════ */
.intro-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .intro-section {
        padding: 7rem 0;
    }
}

.intro-section .inner {
    max-width: 36rem;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .intro-section h2 {
        font-size: 3.25rem;
    }
}

.intro-section p {
    color: #69625a;
    line-height: 1.7;
    font-size: 1.125rem;
}

/* ══════════════════════════════════════════════
   CATEGORY GRID
   ══════════════════════════════════════════════ */
.categories-section {
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .categories-section {
        padding-bottom: 7rem;
    }
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
}

.section-header .view-all {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #69625a;
    display: flex;
    align-items: center;
    gap: .25rem;
    transition: color .2s;
}

.section-header .view-all:hover {
    color: #003e20;
}

.section-header .view-all svg {
    width: 12px;
    height: 12px;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .2) 50%, transparent);
}

.category-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
}

.category-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: .25rem;
}

.category-card .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    color: rgba(255, 255, 255, .7);
}

/* ══════════════════════════════════════════════
   FEATURED ARTICLES
   ══════════════════════════════════════════════ */
.featured-section {
    background: #f4f2ec;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .featured-section {
        padding: 7rem 0;
    }
}

.featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.featured-header h2 {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .featured-header h2 {
        font-size: 2.5rem;
    }
}

.featured-header .view-all {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #69625a;
    display: none;
    align-items: center;
    gap: .25rem;
    transition: color .2s;
}

@media (min-width: 768px) {
    .featured-header .view-all {
        display: flex;
    }
}

.featured-header .view-all:hover {
    color: #003e20;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    background: #fff;
    padding: 2rem;
    transition: box-shadow .3s;
    display: block;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.article-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: .75rem;
    line-height: 1.3;
    transition: color .2s;
}

.article-card:hover h3 {
    color: #003e20;
}

.article-card .excerpt {
    color: #69625a;
    font-size: .875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-card .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-card .read-time {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .7rem;
    color: #69625a;
}

.article-card .arrow {
    color: #003e20;
    opacity: 0;
    transition: opacity .2s;
}

.article-card:hover .arrow {
    opacity: 1;
}

.article-card .arrow svg {
    width: 14px;
    height: 14px;
}

/* ══════════════════════════════════════════════
   OVERVIEW / SITE MAP
   ══════════════════════════════════════════════ */
.overview-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .overview-section {
        padding: 7rem 0;
    }
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .overview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.overview-item .item-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.overview-item .icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #c8dfc8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-item .icon-circle svg {
    width: 18px;
    height: 18px;
    color: #003e20;
}

.overview-item .item-header a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    transition: color .2s;
}

.overview-item .item-header a:hover {
    color: #003e20;
}

.overview-item p {
    font-size: .875rem;
    color: #69625a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.overview-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .375rem;
}

.overview-item li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: #69625a;
}

.overview-item li .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 62, 32, .4);
    flex-shrink: 0;
}

.overview-item .discover-link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    margin-top: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #003e20;
    transition: gap .2s;
}

.overview-item .discover-link:hover {
    gap: .5rem;
}

.overview-item .discover-link svg {
    width: 11px;
    height: 11px;
}

/* ══════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════ */
.newsletter-section {
    background: #003e20;
    color: #faf8f5;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .newsletter-section {
        padding: 5rem 0;
    }
}

.newsletter-inner {
    max-width: 42rem;
    margin: 0 auto;
}

.newsletter-header {
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.newsletter-label svg {
    width: 20px;
    height: 20px;
    color: #c8dfc8;
}

.newsletter-label span {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #c8dfc8;
}

.newsletter-section h2 {
    font-size: 2rem;
    margin-bottom: .75rem;
}

@media (min-width: 768px) {
    .newsletter-section h2 {
        font-size: 2.5rem;
    }
}

.newsletter-section .description {
    color: rgba(250, 248, 245, .85);
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    outline: none;
    transition: border-color .2s;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, .5);
}

.newsletter-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, .4);
}

.newsletter-form button[type="submit"] {
    padding: 1rem 2rem;
    background: #fff;
    color: #003e20;
    font-family: 'Montserrat', sans-serif;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .05em;
    border: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background .2s;
}

.newsletter-form button[type="submit"]:hover {
    background: #c8dfc8;
}

.newsletter-form button[type="submit"]:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 1rem;
    display: none;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem;
}

.newsletter-message.success {
    display: flex;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
}

.newsletter-message.error {
    display: flex;
    background: rgba(220, 38, 38, .1);
    border: 1px solid rgba(220, 38, 38, .2);
}

.newsletter-message svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.newsletter-message p {
    font-size: .875rem;
    line-height: 1.7;
}

.newsletter-privacy {
    font-size: .75rem;
    color: rgba(250, 248, 245, .6);
    margin-top: 1.5rem;
    text-align: center;
}

/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.cta-section {
    background: #003e20;
    color: #faf8f5;
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 3.25rem;
    }
}

.cta-section p {
    color: rgba(250, 248, 245, .8);
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: #003e20;
    padding: .75rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .05em;
    border: none;
    transition: background .2s;
}

.btn-cta:hover {
    background: #c8dfc8;
}

.btn-cta svg {
    width: 14px;
    height: 14px;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
    background: #16100b;
    color: #fbfaf6;
    margin-top: 6rem;
}

.footer-inner {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #c8dfc8;
    margin-bottom: .75rem;
}

.footer-brand p {
    font-size: .875rem;
    line-height: 1.7;
    color: #a39d98;
}

.footer-nav h4,
.footer-legal h4 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #c8dfc8;
    margin-bottom: 1.25rem;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-nav a,
.footer-legal a {
    font-size: .875rem;
    color: #a39d98;
    transition: color .2s;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: .75rem;
    color: #76706c;
}

/* ══════════════════════════════════════════════
   SEARCH MODAL
   ══════════════════════════════════════════════ */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: searchFadeIn 0.3s ease-out;
}

.search-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.search-modal-content {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: searchSlideDown 0.3s ease-out;
}

.search-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.search-header h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: var(--primary);
}

.search-input-wrapper {
    position: relative;
    padding: 24px;
    flex-shrink: 0;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d8ead9;
    border-radius: 8px;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 62, 32, 0.1);
}

.search-results {
    flex: 1;
    min-height: 0;
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.search-result-item {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    gap: 12px;
}

.search-result-item:hover {
    background: #fdfaf7;
}

.search-result-item h4 {
    margin: 0 0 4px 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    color: var(--primary);
}

.search-result-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #999;
    line-height: 1.4;
}

.search-no-results {
    padding: 40px 24px;
    text-align: center;
    color: #999;
}

.search-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s ease;
    line-height: 1;
}

.search-close-btn:hover {
    color: var(--primary);
}

.search-result-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0ede8;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.search-result-tag {
    display: inline-block;
    background: #d8ead9;
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .search-result-image {
        width: 60px;
        height: 45px;
    }
}

@keyframes searchFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes searchSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════
   ARTICLE CARDS (dynamisch geladen, mit Bild)
   ══════════════════════════════════════════════ */
a.article-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    padding: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.article-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 62, 32, 0.1);
    transform: translateY(-2px);
}

.article-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

a.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.article-tag {
    display: inline-block;
    background: #d8ead9;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.article-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.article-excerpt {
    font-family: 'Source Serif 4', Georgia, serif;
    color: #666;
    margin: 0 0 16px 0;
    flex: 1;
    line-height: 1.5;
    font-size: 0.9rem;
}

.article-link {
    color: var(--primary);
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
}

.article-link:hover {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════════
   LOAD MORE BUTTON
   ══════════════════════════════════════════════ */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.75rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: var(--accent);
    border-color: var(--primary);
    color: var(--primary);
}

/* ══════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════ */
.about-section {
    background: var(--secondary);
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .about-section {
        padding: 7rem 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text h3,
.about-values h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-text p {
    color: #69625a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
}

.values-list li span {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ══════════════════════════════════════════════
   NEWSLETTER FORM FIELDS (Turnstile layout)
   ══════════════════════════════════════════════ */
.newsletter-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .newsletter-form-fields {
        flex-direction: row;
    }
}

.newsletter-form-fields input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    outline: none;
    transition: border-color .2s;
}

.newsletter-form-fields input[type="email"]::placeholder {
    color: rgba(255, 255, 255, .5);
}

.newsletter-form-fields input[type="email"]:focus {
    border-color: rgba(255, 255, 255, .4);
}

.newsletter-form-fields button[type="submit"] {
    padding: 1rem 2rem;
    background: #fff;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
    cursor: pointer;
}

.newsletter-form-fields button[type="submit"]:hover {
    background: var(--accent);
}

.newsletter-form-fields button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Praxis links styling */
.overview-item li a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.overview-item li a:hover {
    opacity: 0.7;
}


/* ══════════════════════════════════════════════
   SUBPAGE SECTIONS (Garten tabs, Praxis, DIY, Über mich)
   ══════════════════════════════════════════════ */
.subpage-section {
    padding: 3rem 0 5rem;
    animation: subpageFadeIn .4s ease-out;
}

@keyframes subpageFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.subpage-header {
    margin-bottom: 2rem;
}

.back-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .05em;
    color: var(--primary);
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: opacity .2s;
}

.back-btn:hover {
    opacity: .7;
}

.subpage-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: .75rem;
}

@media (min-width: 768px) {
    .subpage-title {
        font-size: 3.75rem;
    }
}

.subpage-desc {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    max-width: 40rem;
}

/* Tabs */
.subpage-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    position: sticky;
    top: 5rem;
    background: var(--background);
    z-index: 30;
    backdrop-filter: blur(4px);
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .subpage-tabs {
        top: 4rem;
    }
}

.subpage-tab {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    cursor: pointer;
    color: var(--muted-foreground);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .2s;
}

.subpage-tab:hover {
    color: var(--foreground);
}

.subpage-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: subpageFadeIn .3s ease-out;
}

.tab-content.active {
    display: block;
}

/* Tab Hero (image + text side by side) */
.tab-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .tab-hero {
        grid-template-columns: 1fr 1fr;
    }
}

.tab-hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: .75rem;
}

@media (min-width: 768px) {
    .tab-hero h2 {
        font-size: 3rem;
    }
}

.tab-hero p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tab-hero-img {
    overflow: hidden;
}

.tab-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.subpage-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--primary);
    transition: gap .2s;
}

.subpage-link:hover {
    gap: .75rem;
}

/* Subcategory Groups */
.subcategory-group {
    margin-bottom: 2.5rem;
}

.subcategory-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.subcategory-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    white-space: nowrap;
}

.subcategory-header .line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Article Link Cards (small, grid-based) */
.article-link-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
}

@media (min-width: 640px) {
    .article-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article-link-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .article-link-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.article-link-card {
    display: block;
    padding: 1rem;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all .2s;
}

.article-link-card:hover {
    border-color: rgba(0, 62, 32, 0.3);
    background: rgba(200, 223, 200, 0.15);
    
    transform: translateY(-6px); /* bewegt das Element nach oben */
    border-color: rgba(0, 62, 32, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
}

.article-link-card .category-badge {
    margin-bottom: .5rem;
}

.article-link-card p {
    font-family: 'Source Serif 4', serif;
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    transition: color .2s;
}

.article-link-card:hover p {
    color: var(--primary);
}

/* Subpage CTA */
.subpage-cta {
    text-align: center;
    padding: 4rem 0 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
}

.subpage-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: .75rem;
}

.subpage-cta p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════
   PRAXIS SUBPAGE
   ══════════════════════════════════════════════ */
.praxis-sections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.praxis-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.praxis-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .25rem;
}

.praxis-section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: .25rem;
}

.praxis-section-header p {
    color: var(--muted-foreground);
    font-size: .95rem;
}

/* ══════════════════════════════════════════════
   DIY SUBPAGE
   ══════════════════════════════════════════════ */
.diy-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.diy-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .25rem;
}

.rezept-card {
    display: block;
    padding: 1.5rem;
    border: 1px solid #fde5c8;
    background: rgba(255, 237, 213, 0.3);
    text-decoration: none;
    color: inherit;
    transition: all .2s;
}

.rezept-card:hover {
    border-color: #f5c88a;
    background: rgba(255, 237, 213, 0.5);
}

.rezept-card .tag {
    font-family: 'Montserrat', sans-serif;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c2742a;
    margin-bottom: .75rem;
    display: block;
}

.rezept-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: .5rem;
    line-height: 1.3;
    transition: color .2s;
}

.rezept-card:hover h3 {
    color: var(--primary);
}

.rezept-card .desc {
    font-size: .8rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════
   ÜBER MICH SUBPAGE
   ══════════════════════════════════════════════ */
.ueber-mich-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .ueber-mich-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ueber-mich-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.ueber-mich-text p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ueber-mich-image {
    position: relative;
}

.ueber-mich-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.ueber-mich-image .image-label {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    border: 1px solid var(--border);
}

.image-label h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: .25rem;
}

.image-label span {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    color: var(--muted-foreground);
}

.ueber-mich-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--border);
    padding: .75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .05em;
    background: transparent;
    color: var(--foreground);
    transition: all .2s;
}

.btn-outline:hover {
    background: var(--accent);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-item {
    display: flex;
    gap: 1.25rem;
}

.value-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(200, 223, 200, 0.5);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: .9rem;
    font-weight: 500;
    flex-shrink: 0;
    margin-top: .25rem;
}

.value-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: .5rem;
}

.value-item p {
    font-size: .9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.links-box {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--secondary);
}

.links-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: border-color .2s;
}

.link-item:hover {
    border-color: rgba(0, 62, 32, 0.3);
}

.link-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
}


/* ══════════════════════════════════════════════
   PRAXIS BLOCKS (dynamic rendering)
   ══════════════════════════════════════════════ */
.praxis-block {
    margin-bottom: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.praxis-block:last-child {
    border-bottom: none;
}

.praxis-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.praxis-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.praxis-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: .35rem;
}

.praxis-desc {
    font-size: .9rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}


/* ══════════════════════════════════════════════
   DIY CARDS
   ══════════════════════════════════════════════ */
.diy-block {
    margin-bottom: 3.5rem;
}

.diy-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.diy-card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {

    .diy-card-grid,
    .diy-card-grid-3 {
        grid-template-columns: 1fr;
    }
}

.diy-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid var(--border);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, border-color .2s, box-shadow .2s;
}

.diy-card:hover {
    transform: translateY(-6px); /* bewegt das Element nach oben */
    border-color: rgba(0, 62, 32, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
}

.diy-card-rezept {
    border-left: 3px solid #c2410c;
}

.diy-card-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.diy-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: .5rem;
}

.diy-card-desc {
    font-size: .85rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    flex: 1;
}

.diy-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: 1rem;
    letter-spacing: .03em;
}


/* ══════════════════════════════════════════════
   ÜBER MICH – Badge, Values heading, Links
   ══════════════════════════════════════════════ */
.ueber-mich-image-wrap {
    position: relative;
}

.ueber-mich-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    border: 1px solid var(--border);
}

.badge-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: .15rem;
}

.badge-since {
    font-family: 'Montserrat', sans-serif;
    font-size: .7rem;
    color: var(--muted-foreground);
}

.ueber-mich-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.ueber-mich-body p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ueber-mich-values {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.values-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.ueber-mich-links {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--secondary);
}

.links-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: border-color .2s;
}

.link-card:hover {
    border-color: rgba(0, 62, 32, 0.3);
}

.link-card span {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
}


/* ══════════════════════════════════════════════
   ARTICLE META & READING TIME
   ══════════════════════════════════════════════ */
.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.article-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--muted-foreground);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.article-reading-time svg {
    opacity: 0.7;
}

/* Article Link Images (Subpage cards) */
.article-link-image {
    width: 100%;
    height: 180px;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
}

.article-link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

a.article-link-card:hover .article-link-image img {
    transform: scale(1.05);
}





.newsletter-form-fields input,
.newsletter-form-fields button {
    width: 100%;
}

.newsletter-form-fields {
    display: flex;
    flex-direction: column; /* Elemente untereinander */
    gap: 0.75rem; /* Abstand zwischen den Zeilen */
    width: 100%;
    max-width: 400px;
    margin: auto;
}
