/* =========================
   hobby-finden.ch
   Modern Blog CSS
========================= */

:root {
    --bg: #f5f5f5;
    --surface: #ffffff;
    --surface-2: #f1f1f1;
    --text: #111111;
    --muted: #6b7280;
    --primary: #111111;
    --primary-light: #333333;
    --primary-dark: #000000;
    --accent: #9ca3af;
    --border: #e5e5e5;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.04);
    --radius: 16px;
    --radius-sm: 10px;
    --container: 1200px;
    --transition: 0.2s ease;
}

/* =========================
   Reset / Base
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    background: linear-gradient(180deg, #faf6f2 0%, #f7f3ee 100%);
    color: var(--text);
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: #934000;
    text-decoration: none;
    transition: var(--transition);
}	

a:hover {
    color: #92400e;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 10px;
}

h2 {
    font-size: 25px;
    line-height: 1.3;
}

h3 {
    font-size: 20px;
    line-height: 1.4;
}

h2,
h3 {
    scroll-margin-top: 130px;
}

p {
    margin-bottom: 1.2em;
}

/* =========================
   Layout
========================= */

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.section {
    padding: 1rem 0;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* =========================
   Utilities
========================= */

.text-center { text-align: center; }
.text-muted { color: var(--muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* =========================
   Header / Navigation
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
}

.header-right {
    justify-self: end;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1rem;
}

.logo {
    justify-self: start;
    z-index: 1002;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    padding: 0.6rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #f7f3ee;
    color: var(--text);
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--surface-2);
}

.nav-links a.active {
    color: var(--primary);
}

/* Mobile toggle */

.nav-toggle {
    display: none;
    justify-self: end;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    z-index: 1102;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #111;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Slide-in mobile menu */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1098;
    background: rgba(17, 17, 17, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1099;
    display: flex;
    flex-direction: column;
    width: min(92vw, 360px);
    height: 100vh;
    padding: 1.2rem;
    background: #fff;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
    padding-right: 0.2rem;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f7f3ee;
    color: var(--text);
    font-weight: 700;
}

.mobile-nav-links a:hover {
    background: var(--surface-2);
}

/* =========================
   Hero / Header Image
========================= */

.herobildstart {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

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

.hero {
    padding: 5rem 0 3.5rem;
}

.hero-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff, #f3ebe4);
    box-shadow: var(--shadow);
}

.hero-text h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-text p {
    max-width: 60ch;
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    color: var(--muted);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    min-height: 320px;
    border-radius: 24px;
    background: linear-gradient(135deg, #dbeafe, #ccfbf1);
    box-shadow: var(--shadow-soft);
}

/* =========================
   Buttons
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.35rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: #111;
    color: #fff;
    box-shadow: none;
}

.btn-primary:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
}

/* =========================
   Cards
========================= */

.card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.3rem;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.card-title {
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.card-text {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 16px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* =========================
   Hobby / Category Grids
========================= */

.hobby-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hobby-grid .card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
}

.hobby-grid .card a {
    font-weight: 700;
}

.hobby-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

/* =========================
   Category Pages
========================= */

.category-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.category-hero-media {
    min-width: 0;
}

.category-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.category-hero-content h1 {
    margin-bottom: 1rem;
}

.category-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.category-intro {
    max-width: 60ch;
    color: var(--muted);
    font-size: 1.08rem;
}

.alphabet-group + .alphabet-group {
    margin-top: 2.5rem;
}

.alphabet-letter {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 1.8rem;
    line-height: 1.1;
}

.alphabet-link-list {
    margin: 0;
    padding: 0;
    column-gap: 2rem;
    columns: 3;
    list-style: none;
}

.alphabet-link-list li {
    margin-bottom: 0.75rem;
    break-inside: avoid;
}

.alphabet-link-list a {
    display: inline-block;
    color: var(--text);
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.alphabet-link-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.az-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2rem 0 2.5rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.az-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.9rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #f7f3ee;
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
}

.az-navigation a:hover {
    background: var(--surface-2);
    color: var(--primary);
}

/* =========================
   Blog / Article Layout
========================= */

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 340px;
    gap: 2rem;
    padding: 3rem 0 4rem;
}

.main-content,
.sidebar {
    min-width: 0;
}

.article-list {
    display: grid;
    gap: 1.5rem;
}

.article-page {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.article-page h1 {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 4vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.article-page h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.article-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}

.article-page p {
    margin-bottom: 1rem;
    color: #374151;
}

.article-page ul {
    margin-bottom: 1rem;
    padding-left: 1.4rem;
    list-style: disc;
}

.article-page img {
    margin: 1.5rem 0;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.3rem;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Article detail */

.article-detail-page {
    max-width: 100%;
    margin: 0 auto;
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.article-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.article-breadcrumb a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.article-excerpt {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #f8fafc;
    color: #374151;
    font-size: 1.08rem;
    line-height: 1.5;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.article-content ul,
.article-content ol {
    margin: 0 0 1.2rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    font-weight:700;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.article-nav-box {
    margin-top: 3rem;
    padding: 1.4rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.article-nav-title {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
}

.article-nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.article-nav-link {
    display: block;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #f7f3ee;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.article-nav-link:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
}

/* 🔥 WICHTIG: Ausrichtung */
.article-nav-prev {
    text-align: left;
}

.article-nav-next {
    text-align: right;
}

/* Label */
.article-nav-label {
    display: block;
    margin-bottom: 0.4rem;
    color: #5f646e;
    font-size: 0.85rem;
}

/* Pfeile automatisch */
.article-nav-prev .article-nav-label::before {
    content: "← ";
}

.article-nav-next .article-nav-label::after {
    content: " →";
}

/* Titel */
.article-nav-link strong {
    display: block;
    font-size: 1rem;
    line-height: 1.45;
}

/* Mobile */
@media (max-width: 768px) {
    .article-nav-links {
        grid-template-columns: 1fr;
    }

    .article-nav-next {
        text-align: left; /* auf Mobile wieder normal */
    }
}
/* =========================
   Sidebar
========================= */

.sidebar-box {
    margin-bottom: 1.5rem;
    padding: 1.4rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.sidebar-box h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sidebar-box ul li + li {
    margin-top: 0.8rem;
}

.sidebar-box a {
    color: var(--text);
    font-weight: 600;
}

.sidebar-box a:hover {
    color: var(--primary);
}

.category-tag {
    display: inline-flex;
    margin: 0.25rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #efe4d8;
    color: #7a5a3d;
    font-size: 0.9rem;
    font-weight: 700;
}

/* =========================
   Forms
========================= */

.form-box {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.2rem;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    background: #fff;
    color: var(--text);
    transition: var(--transition);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.25);
}

/* =========================
   Tables / Admin
========================= */

.table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
	margin-bottom:10px;
}

thead {
    background: #f8fafc;
}

th,
td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

th {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 800;
}

tr:hover td {
    background: #fafcff;
}

.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    padding: 2rem 1rem;
    background: #111827;
    color: #fff;
}

.admin-sidebar .logo {
    display: block;
    margin-bottom: 2rem;
    color: #fff;
}

.admin-sidebar a {
    display: block;
    margin-bottom: 0.4rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: #d1d5db;
    font-weight: 600;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.admin-main {
    padding: 2rem;
    background: var(--bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: 1.4rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.stat-card .label {
    margin-bottom: 0.4rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.stat-card .number {
    font-size: 2rem;
    font-weight: 800;
}

/* =========================
   Footer
========================= */

footer {
    margin-top: 2rem;
    padding: 2.2rem 0;
    background: #0f172a;
    color: #cbd5e1;
}

footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #93c5fd;
}


/* Footer Boxen */
footer .footer-box {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
	text-align: center;
}

footer .footer-box p{
    margin-bottom: 0;
	 
}


#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: #1e1e1e;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    font-size: 14px;
}

#cookie-banner a {
    color: #00FF0A;
}

#cookie-banner button {
    background: #00FF0A;
    border: none;
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.table-wrapper {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  display: block !important;
}

.table-wrapper table.styled-table {
  min-width: 720px !important;
  width: 100% !important;
  border-collapse: collapse !important;
	margin-bottom: 15px;
}

.table-wrapper table.styled-table th,
.table-wrapper table.styled-table td {
  white-space: nowrap !important;
  padding: 12px 14px !important;
  border: 1px solid #ddd !important;
}


/* Allgemeine Box-Styles (optional wiederverwendbar) */
.info-box,
.recipe-box {
  border-radius: 12px;
  padding: 20px 24px;
  margin: 25px 0;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

/* INFO BOX (z. B. Tipps / Wusstest du schon) */
.info-box {
  background: #f4f8fb;
  border-left: 5px solid #4da3ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  color: #1a4d80;
}

.info-box p,
.info-box li {
  font-size: 15px;
  color: #333;
}

.info-box ol,
.info-box ul {
  padding-left: 18px;
}


/* REZEPT BOX (Highlight für Content) */
.recipe-box {
  background: #fff8f2;
  border: 2px solid #ffb37a;
  box-shadow: 0 6px 18px rgba(255, 140, 60, 0.15);
  position: relative;
}

.recipe-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
  color: #cc5a00;
}

.recipe-box ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.recipe-box li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #333;
}

.recipe-box p {
  font-size: 14px;
  color: #444;
}

/* Optional: kleines Badge oben */
.recipe-box::before {
  content: "Rezept";
  position: absolute;
  top: -10px;
  left: 15px;
  background: #ff8c3c;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: bold;
}

.checklist-box {
  background: #f6fbf7;
  border-left: 5px solid #4caf50;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 25px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: system-ui, -apple-system, sans-serif;
}

.checklist-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  color: #2e7d32;
}

.checklist-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.checklist-box li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

/* Checkmark Icon */
.checklist-box li:hover {
  color: #2e7d32;
  transform: translateX(3px);
  transition: all 0.2s ease;
}
/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
    .hero-box,
    .content-layout,
    .admin-layout,
    .category-hero {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .hobby-grid,
    .grid-4,
    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3,
    .hobby-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alphabet-link-list {
        columns: 2;
    }
}

@media (max-width: 768px) {
	
	 header {
         position: static;
    }
	
	 .container {
         width: 97%;
    }
    .header-inner {
        grid-template-columns: 1fr auto;
        justify-content: space-between;
        padding: 0.9rem 0;
    }

    .logo {
        justify-self: start;
    }

    .desktop-nav {
        display: none;
    }

    .header-right {
        display: block;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .navbar {
        flex-direction: column;
        justify-content: center;
        padding: 1rem 0;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-box,
    .article-page,
    .form-box,
    .sidebar-box {
        padding: 1rem;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .hobby-grid,
    .hobby-grid-3,
    .stats-grid,
    .featured-grid,
    .article-nav-links {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .herobildstart {
        height: 200px;
    }

    .hero-bg {
        object-fit: contain;
        object-position: center bottom;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .alphabet-link-list {
        columns: 1;
    }

    .alphabet-letter {
        font-size: 1.5rem;
    }
	.footer-inner {
        flex-direction: column;
    }
}