/* =====================================================
   Hej Sverige — visitsweden.de inspired design
   Minimalistisch · luftig · bildlastig
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
    --white: #ffffff;
    --black: #1a1a1a;
    --grey-50: #f8f8f8;
    --grey-100: #f0f0f0;
    --grey-200: #e5e5e5;
    --grey-400: #999;
    --grey-600: #666;
    --grey-800: #333;
    --accent: #1B4965;
    --accent-hover: #15384d;
    --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-w: 1240px;
    --header-h: 72px;
    --radius: 10px;
    --transition: .25s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* ===========================
   HEADER — clean, sticky, weiß
   =========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    z-index: 200;
    border-bottom: 1px solid var(--grey-200);
    transition: box-shadow var(--transition);
}

.header--scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo-img { height: 52px; }

.header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__nav > a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--grey-800);
    padding: 6px 0;
    position: relative;
    transition: color var(--transition);
}

.header__nav > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.header__nav > a:hover,
.nav-dropdown__trigger:hover { color: var(--black); }
.header__nav > a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__trigger {
    font-size: .9rem;
    font-weight: 500;
    color: var(--grey-800);
    padding: 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition);
}

.nav-dropdown__arrow {
    font-size: .65rem;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown__arrow {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: -12px;
    min-width: 220px;
    background: var(--white);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    border-top: 2px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 200;
    padding: 8px 0;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__item {
    display: block;
    padding: 10px 20px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--grey-800);
    transition: all var(--transition);
}

.nav-dropdown__item:hover {
    background: var(--grey-50);
    color: var(--accent);
    padding-left: 24px;
}

.nav-dropdown__item--all {
    font-weight: 600;
    border-bottom: 1px solid var(--grey-200);
    margin-bottom: 4px;
    padding-bottom: 12px;
}

.header__search {
    display: flex;
    align-items: center;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 50px;
    padding: 4px 8px 4px 14px;
    transition: border-color var(--transition);
}

.header__search:focus-within { border-color: var(--accent); }

.header__search input {
    border: none;
    background: none;
    font-family: var(--font);
    font-size: .85rem;
    width: 120px;
    outline: none;
}

.header__search button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: .9rem;
    opacity: .4;
    transition: opacity var(--transition);
}
.header__search button:hover { opacity: 1; }

.header__lang {
    display: flex;
    gap: 4px;
}

.header__lang a {
    font-size: .72rem;
    font-weight: 700;
    color: var(--grey-400);
    padding: 4px 8px;
    border-radius: 4px;
    transition: all var(--transition);
}
.header__lang a:hover { color: var(--black); }
.header__lang a.is-active { background: var(--black); color: var(--white); border-radius: 4px; }

/* Burger */
.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 301;
}

.header__burger span {
    display: block;
    height: 3px;
    background: var(--black);
    position: absolute;
    left: 8px;
    right: 8px;
    transition: var(--transition);
    border-radius: 2px;
}

.header__burger.is-open span { background: var(--white); }
.header__burger span:nth-child(1) { top: 12px; }
.header__burger span:nth-child(2) { top: 20px; }
.header__burger span:nth-child(3) { top: 28px; }

/* ===========================
   HERO — fullscreen, Bild, Overlay
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #1B4965 0%, #0d2137 40%, #1a3a50 100%);
    /* Wenn ein Hintergrundbild gesetzt wird:
       background: url('...') center/cover no-repeat; */
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 32px;
}

.hero__logo {
    max-width: 320px;
    margin: 0 auto 28px;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}

.hero__text {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: .85;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero__cta {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    transition: all var(--transition);
}

.hero__cta:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 100px 0; }
.section--white { background: var(--white); }
.section--grey { background: var(--grey-50); }

.section__title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 48px;
}

.section__empty {
    text-align: center;
    color: var(--grey-600);
    font-size: 1.05rem;
    padding: 60px 0;
}

.section__empty small {
    font-weight: 300;
    color: var(--grey-400);
}

.section__cta {
    text-align: center;
    padding-top: 48px;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.about__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}

.about__text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--grey-600);
    margin-bottom: 20px;
}

.about__image img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
}

/* ===========================
   TILES — quadratisch, Bild-Overlay (Kategorien)
   =========================== */
.tile-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.tile__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.tile:hover .tile__bg { transform: scale(1.06); }

.tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
}

.tile__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.tile__desc {
    font-size: .85rem;
    opacity: .8;
    font-weight: 300;
}

/* ===========================
   FEATURED POST — 2-spaltig Bild | Text
   =========================== */
.featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--grey-200);
}

.featured__img {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.featured:hover .featured__img img { transform: scale(1.03); }

.featured__img--placeholder {
    background: var(--grey-100);
}

.featured__title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.01em;
    margin-bottom: 16px;
}

.featured__title a { transition: color var(--transition); }
.featured__title a:hover { color: var(--accent); }

.featured__excerpt {
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===========================
   CARDS — Post-Kacheln
   =========================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.card__img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.card:hover .card__img img { transform: scale(1.04); }

.card__body {
    padding: 20px 24px 24px;
}

.card__title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 6px;
}

/* ===========================
   LABELS & LINKS
   =========================== */
.label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--accent);
    transition: gap var(--transition), color var(--transition);
}
.link-arrow:hover { gap: 10px; color: var(--accent-hover); }

.btn-line {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--black);
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    transition: all var(--transition);
}
.btn-line:hover { background: var(--black); color: var(--white); }

.btn-solid {
    display: inline-block;
    padding: 12px 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}
.btn-solid:hover { background: var(--accent-hover); }

/* ===========================
   BLOG LIST & SINGLE POST
   =========================== */
.page-header {
    padding: 120px 0 48px;
    margin-top: var(--header-h);
}

.page-header__title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.page-header__desc {
    font-size: 1.1rem;
    color: var(--grey-600);
    margin-top: 12px;
    max-width: 600px;
}

/* Blog list */
.blog-header {
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 40px;
}

.page-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

/* Blog Filters */
.blog-filters {
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 16px 0;
    position: sticky;
    top: var(--header-h);
    z-index: 100;
}

.filters {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-search {
    display: flex;
    align-items: center;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 50px;
    padding: 4px 8px 4px 16px;
    transition: border-color var(--transition);
}
.filter-search:focus-within { border-color: var(--accent); }

.filter-search input {
    border: none;
    background: none;
    font-family: var(--font);
    font-size: .85rem;
    width: 140px;
    outline: none;
}

.filter-search button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    opacity: .4;
    transition: opacity var(--transition);
}
.filter-search button:hover { opacity: 1; }

.filter-sort {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.sort-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--grey-400);
    padding: 6px 14px;
    border-radius: 50px;
    transition: all var(--transition);
}
.sort-link:hover { color: var(--black); }
.sort-link.is-active {
    background: var(--black);
    color: var(--white);
}

.blog-listing { padding: 40px 0 100px; }

/* Post Grid (reuse .card-grid) */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: transform var(--transition), box-shadow var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }

.post-card__image { display: block; aspect-ratio: 4/3; overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card__image img { transform: scale(1.04); }

.post-card__body { padding: 20px 24px 24px; }

.post-card__date {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}

.post-card__title { font-size: 1.1rem; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.post-card__title a { transition: color var(--transition); }
.post-card__title a:hover { color: var(--accent); }

.post-card__excerpt {
    font-size: .9rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--grey-200);
    font-size: .8rem;
}

.post-card__author { color: var(--grey-400); }
.post-card__link { font-weight: 600; color: var(--accent); }

/* === SINGLE POST === */
/* === SINGLE POST === */
.post-header {
    padding: calc(var(--header-h) + 80px) 0 48px;
    text-align: center;
}

.post-header .container {
    max-width: 800px;
}

.post-categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.post-category-tag {
    display: inline-block;
    padding: 5px 16px;
    background: var(--accent);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.post-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--black);
}

.post-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    color: var(--grey-400);
    font-size: .88rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Beitragsbild */
.post-featured-image {
    padding: 16px 0 40px;
}

.post-featured-image .container {
    max-width: 960px;
}

.post-featured-image img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Content — lesbarer, größer, zentriert */
.post-content {
    padding: 16px 0 100px;
}

.post-content .container {
    max-width: 740px;
}

.content-wrapper {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--grey-800);
}

.content-wrapper h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--black);
    margin: 48px 0 16px;
    letter-spacing: -.01em;
}

.content-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 40px 0 12px;
}

.content-wrapper p {
    margin-bottom: 24px;
    color: var(--grey-800);
}

/* Leere Absätze (Zeilenumbrüche aus Quill) beibehalten */
.content-wrapper p:empty,
.content-wrapper p br:only-child {
    display: block;
}

.content-wrapper p:has(> br:only-child) {
    margin-bottom: 8px;
    min-height: 1.5em;
}

.content-wrapper a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(46,125,120,.3);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--transition);
}

.content-wrapper a:hover {
    text-decoration-color: var(--accent);
}

.content-wrapper img {
    border-radius: var(--radius);
    margin: 32px 0;
    width: 100%;
}

.content-wrapper blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 28px;
    margin: 36px 0;
    background: var(--grey-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--grey-600);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-wrapper ul, .content-wrapper ol {
    padding-left: 28px;
    margin-bottom: 24px;
}

.content-wrapper li {
    margin-bottom: 8px;
}

.content-wrapper strong {
    color: var(--black);
    font-weight: 600;
}

.content-wrapper hr {
    border: none;
    border-top: 1px solid var(--grey-200);
    margin: 48px 0;
}

/* === READING PROGRESS BAR === */
.reading-progress {
    position: fixed;
    top: var(--header-h);
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent);
    z-index: 199;
    transition: width .1s linear;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-200);
    background: var(--grey-50);
}

.breadcrumb--top {
    padding-top: calc(var(--header-h) + 14px);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--grey-400);
    transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb__sep { color: var(--grey-200); }

.breadcrumb__current {
    color: var(--grey-600);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

/* === TABLE OF CONTENTS === */
.article-toc {
    max-width: 740px;
    margin: 0 auto 40px;
    padding: 24px 28px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
}

.article-toc__title {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--grey-400);
    margin-bottom: 12px;
}

.article-toc__list {
    list-style: none;
}

.article-toc__item {
    margin-bottom: 6px;
}

.article-toc__item a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--grey-800);
    transition: color var(--transition);
}

.article-toc__item a:hover {
    color: var(--accent);
}

.article-toc__item--h3 {
    padding-left: 20px;
}

.article-toc__item--h3 a {
    font-weight: 400;
    color: var(--grey-600);
}

/* === ARTICLE (visitsweden-style single post) === */
.article-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--black);
}

.article-hero__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 48px;
    color: var(--white);
}

.article-hero__cats {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.article-hero__cats a {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: background var(--transition);
}

.article-hero__cats a:hover { background: rgba(255,255,255,.35); }

.article-hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
    max-width: 700px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

/* Fallback ohne Bild */
.article-header-plain {
    padding: 60px 0 40px;
    margin-top: var(--header-h);
}

.article-header-plain__title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
}

/* Meta-Leiste */
.article-meta-bar {
    border-bottom: 1px solid var(--grey-200);
    padding: 16px 0;
}

.article-meta-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 740px;
    margin: 0 auto;
}

.article-meta-bar__info {
    display: flex;
    gap: 20px;
    color: var(--grey-400);
    font-size: .88rem;
}

.article-meta-bar__share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    color: var(--grey-400);
}

.article-meta-bar__share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grey-50);
    color: var(--grey-600);
    font-size: .9rem;
    transition: all var(--transition);
}

.article-meta-bar__share a:hover {
    background: var(--accent);
    color: var(--white);
}

/* Artikel-Body */
.article-body {
    padding: 48px 0 80px;
}

.article-content {
    max-width: 740px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--grey-800);
}

.article-content h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--black);
    margin: 56px 0 16px;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 44px 0 12px;
}

.article-content p { margin-bottom: 24px; }

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(46,125,120,.3);
    text-underline-offset: 3px;
}
.article-content a:hover { text-decoration-color: var(--accent); }

.article-content > img,
.article-content > p img {
    width: 100%;
    border-radius: var(--radius);
    margin: 32px 0;
}

/* Galerie-Bilder nicht überschreiben */
.article-content .post-gallery img {
    border-radius: 0;
    margin: 0;
}

.article-content figure {
    margin: 40px 0;
}

.article-content figure img {
    margin: 0 0 8px;
}

.article-content figcaption {
    font-size: .82rem;
    color: var(--grey-400);
    font-style: italic;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 20px 28px;
    margin: 40px 0;
    background: var(--grey-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey-600);
    font-style: italic;
}

.article-content ul, .article-content ol {
    padding-left: 28px;
    margin-bottom: 24px;
}

.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--black); }

.article-content hr {
    border: none;
    border-top: 1px solid var(--grey-200);
    margin: 56px 0;
}

/* === POST GALLERY / KARUSSELL (visitsweden-style) === */
.post-gallery {
    margin: 48px 0;
}

/* Hauptbild-Container */
.post-gallery__main {
    position: relative;
    background: var(--grey-100);
    border-radius: var(--radius);
    overflow: hidden;
}

.post-gallery__slide {
    display: none;
}

.post-gallery__slide.active {
    display: block;
    animation: galleryFade .3s ease;
}

@keyframes galleryFade {
    from { opacity: .6; }
    to { opacity: 1; }
}

.post-gallery__slide {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
}

/* Controls oben rechts (Pfeile, Fullscreen, Zähler) */
.post-gallery__controls {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 4px;
    z-index: 5;
}

.post-gallery__btn {
    width: 36px;
    height: 36px;
    background: rgba(26,26,46,.75);
    backdrop-filter: blur(4px);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.post-gallery__btn:first-child { border-radius: 4px 0 0 4px; }
.post-gallery__btn:last-child { border-radius: 0 4px 4px 0; }

.post-gallery__btn:hover {
    background: rgba(26,26,46,.9);
}

.post-gallery__counter {
    min-width: 48px;
    height: 36px;
    background: rgba(26,26,46,.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 0 4px 4px 0;
    letter-spacing: .03em;
}

/* Thumbnail-Leiste darunter */
.post-gallery__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.post-gallery__thumbs::-webkit-scrollbar { height: 4px; }
.post-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--grey-200); border-radius: 4px; }

.post-gallery__thumb {
    flex: 0 0 auto;
    width: 140px;
    aspect-ratio: 16/10;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color .2s, opacity .2s;
    opacity: .6;
}

.post-gallery__thumb.active {
    border-color: var(--accent);
    opacity: 1;
}

.post-gallery__thumb:hover {
    opacity: 1;
}

.post-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Fullscreen-Modus */
.post-gallery.fullscreen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    margin: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

.post-gallery.fullscreen .post-gallery__main {
    flex: 1;
    border-radius: 0;
}

.post-gallery.fullscreen .post-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.post-gallery.fullscreen .post-gallery__thumbs {
    padding: 8px 16px;
    background: rgba(0,0,0,.8);
    margin: 0;
}

/* Info-Box (Wusstest du schon?) */
.article-content .info-box,
.article-content .ql-info-box {
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 40px 0;
}

/* === CAROUSEL (horizontal scrollbar) === */
.carousel {
    position: relative;
}

.carousel__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 4px 0 16px;
}

.carousel__track::-webkit-scrollbar { display: none; }

.carousel__item {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.carousel__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.carousel__img {
    aspect-ratio: 1;
    overflow: hidden;
}

.carousel__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.carousel__item:hover .carousel__img img { transform: scale(1.05); }

.carousel__img--empty {
    background: var(--grey-100);
}

.carousel__title {
    padding: 14px 16px;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--black);
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--grey-200);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--black);
}

.carousel__btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.carousel__btn--prev { left: -16px; }
.carousel__btn--next { right: -16px; }

/* Related section */
.related-section {
    background: var(--grey-50);
    padding: 80px 0;
    border-top: 1px solid var(--grey-200);
}

/* === COMMENTS === */
.comments-section { background: var(--grey-50); padding: 80px 0; border-top: 1px solid var(--grey-200); }

.comment-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }

.comment {
    display: flex;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.comment-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem; flex-shrink: 0;
}

.comment-body { flex: 1; }
.comment-meta { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .85rem; }
.comment-meta time { color: var(--grey-400); }

/* Einrückung für Antworten */
.comment-children {
    padding-left: 56px;
    border-left: 2px solid var(--grey-200);
    margin-left: 20px;
}

.comment--depth-1 { /* erste Einrückung */ }
.comment--depth-2 .comment-children { padding-left: 40px; }
.comment--depth-3 .comment-children { padding-left: 24px; }

.comment-reply-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-family: var(--font);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    transition: color var(--transition);
}
.comment-reply-btn:hover { color: var(--accent-hover); }

.replying-to--hidden { display: none; }

.replying-to {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 16px;
    font-size: .85rem;
    color: var(--accent);
    font-weight: 500;
}

.replying-to button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--grey-400);
    padding: 0 4px;
    transition: color var(--transition);
}
.replying-to button:hover { color: var(--black); }

.comment-form-wrapper h3 { font-size: 1.2rem; margin-bottom: 20px; }
.comment-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.comment-form .form-group { margin-bottom: 16px; }
.comment-form label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; }
.comment-form input, .comment-form textarea {
    width: 100%; padding: 10px 14px;
    border: 1px solid var(--grey-200); border-radius: 8px;
    font-family: var(--font); font-size: .95rem;
    transition: border-color var(--transition);
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--accent); }

/* Datenschutz-Checkbox */
.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0 20px;
    padding: 14px 18px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 8px;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent);
    cursor: pointer;
}

.privacy-check label {
    font-size: .85rem;
    line-height: 1.5;
    color: var(--grey-600);
    cursor: pointer;
    font-weight: 400;
}

.privacy-check label a {
    color: var(--accent);
    text-decoration: underline;
}

/* === CATEGORY PAGE === */
.category-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #1B4965, #0d2137);
    display: flex;
    align-items: flex-end;
}

.category-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
    display: flex; align-items: flex-end;
    padding-bottom: 48px;
    color: var(--white);
}

.category-hero__title { font-size: 3rem; font-weight: 700; }
.category-hero__desc { font-size: 1.05rem; opacity: .8; max-width: 560px; margin-top: 8px; }

.category-filters {
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 16px 0;
    position: sticky;
    top: var(--header-h);
    z-index: 100;
}

.filter-chips {
    display: flex; gap: 8px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.filter-chips::-webkit-scrollbar { display: none; }

.chip {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid var(--grey-200);
    background: var(--white);
    transition: all var(--transition);
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip--active { background: var(--black); color: var(--white); border-color: var(--black); }

.category-posts { padding: 60px 0 100px; }

/* === CONTACT === */
.contact-section { padding: 0 0 100px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 960px;
    margin: 0 auto;
}

.contact-info h2 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info p { color: var(--grey-600); line-height: 1.8; margin-bottom: 16px; }

.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--grey-200); border-radius: 8px;
    font-family: var(--font); font-size: .95rem;
    transition: border-color var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }

/* Alias für btn-primary in Formularen */
.btn-primary {
    display: inline-block; padding: 12px 32px;
    background: var(--accent); color: var(--white);
    border-radius: 50px; font-weight: 600; font-size: .9rem;
    border: none; cursor: pointer;
    transition: background var(--transition);
}
.btn-primary:hover { background: var(--accent-hover); color: var(--white); }

.btn-outline {
    display: inline-block; padding: 12px 32px;
    border: 2px solid var(--black); border-radius: 50px;
    font-weight: 600; font-size: .9rem;
    transition: all var(--transition);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* === SEARCH === */
.search-section { padding: 0 0 100px; }

.search-form-large {
    max-width: 560px; margin: 0 auto 48px;
    display: flex; gap: 8px;
}
.search-form-large input {
    flex: 1; padding: 12px 20px;
    border: 1px solid var(--grey-200); border-radius: 50px;
    font-family: var(--font); font-size: 1rem;
}
.search-form-large input:focus { outline: none; border-color: var(--accent); }

/* === STATIC PAGE === */
.static-page { padding: 0 0 100px; }
.static-page .content-wrapper { max-width: 720px; margin: 0 auto; }

/* === PAGINATION === */
.pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 4px; padding: 60px 0;
}

.pagination a, .pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px;
    border-radius: 50px;
    font-weight: 500; font-size: .9rem;
    transition: all var(--transition);
}

.pagination a { background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.pagination a:hover { background: var(--black); color: var(--white); }
.pagination .current { background: var(--black); color: var(--white); }
.pagination .dots { background: none; color: var(--grey-400); }

/* === FLASH === */
.flash-messages { padding-top: 16px; }
.flash { padding: 14px 20px; border-radius: 8px; margin-bottom: 12px; font-size: .9rem; font-weight: 500; }
.flash--success { background: #ecfdf5; color: #065f46; border-left: 3px solid #059669; }
.flash--error { background: #fef2f2; color: #991b1b; border-left: 3px solid #dc2626; }
.flash--info { background: #eff6ff; color: #1e40af; border-left: 3px solid #2563eb; }

/* === PHOTO GALLERY PAGE === */
.gallery-section {
    padding: 40px 0 100px;
}

.gallery-notice {
    padding: 20px 24px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    margin-bottom: 32px;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--grey-600);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.gallery-item__img {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover .gallery-item__img img {
    transform: scale(1.06);
}

.gallery-item__actions {
    padding: 10px 14px;
    display: flex;
    justify-content: flex-end;
}

.gallery-item__download {
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent);
    transition: color var(--transition);
}

.gallery-item__download:hover {
    color: var(--accent-hover);
}

/* === FRONTEND EDIT BUTTONS (nur für Admins) === */
.frontend-edit-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,.7);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 50;
    opacity: 0;
    transition: opacity var(--transition);
}

*:hover > .frontend-edit-btn {
    opacity: 1;
}

.frontend-edit-btn:hover {
    background: var(--accent);
    color: var(--white);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    opacity: .7;
    transition: opacity var(--transition);
}

.lightbox__close:hover { opacity: 1; }

.lightbox-trigger { cursor: zoom-in; }

.no-scroll { overflow: hidden; }

/* === ERROR === */
.error-page {
    padding: calc(var(--header-h) + 100px) 0 100px;
    text-align: center; flex: 1;
}
.error-code { font-size: 8rem; font-weight: 700; color: var(--grey-200); line-height: 1; }
.error-text { font-size: 1.1rem; color: var(--grey-600); margin: 16px 0 32px; }

.search-results-info { text-align: center; margin-bottom: 48px; color: var(--grey-400); }
.comments-container { max-width: 800px; }
.section__empty-sub { color: var(--grey-400); margin-top: 0.5rem; }
.honeypot { display: none; }

/* === NO POSTS === */
.no-posts { text-align: center; color: var(--grey-400); padding: 60px 0; font-size: 1rem; }

/* === NEWSLETTER === */
.newsletter {
    background: var(--accent);
    padding: 60px 0;
    color: var(--white);
}

.newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.newsletter__text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.newsletter__text p {
    font-size: .95rem;
    color: rgba(255,255,255,.75);
}

.newsletter__form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.newsletter__form input {
    padding: 12px 20px;
    border: 2px solid rgba(0,0,0,.1);
    border-radius: 50px;
    font-family: var(--font);
    font-size: .95rem;
    width: 280px;
    background: var(--white);
}

.newsletter__form input:focus {
    outline: none;
    border-color: var(--black);
}

.newsletter__btn {
    padding: 12px 28px;
    background: var(--white);
    color: var(--accent);
    border: none;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: var(--black);
    color: var(--white);
}

/* === FOOTER — dark, multi-column === */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 0;
    margin-top: auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__logo {
    height: 80px;
    margin-bottom: 12px;
}

.footer__col h4 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}

.footer__col a {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: .9rem;
    padding: 4px 0;
    transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }

.footer__social {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.footer__social-link {
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}

.footer__social-link svg {
    width: 22px;
    height: 22px;
}

.footer__social-link:hover {
    color: var(--white);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: .75rem;
    color: rgba(255,255,255,.25);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .featured { grid-template-columns: 1fr; gap: 32px; }
    .card-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    /* === MOBILE NAV: Fullscreen Overlay === */
    .header__burger { display: block; }

    .header__nav {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 32px;
        gap: 8px;
        overflow-y: auto;
        z-index: 300;
    }

    .header__nav.open { display: flex !important; }

    .header__nav > a,
    .nav-dropdown__trigger {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 12px 0;
        color: var(--white);
        border-bottom: none;
        text-align: center;
        width: auto;
    }
    .header__nav > a:hover,
    .nav-dropdown__trigger:hover { color: var(--grey-400); }
    .header__nav > a::after { display: none; }

    .nav-dropdown { text-align: center; }
    .nav-dropdown__arrow { color: var(--grey-400); }

    .nav-dropdown__menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        padding: 0;
        background: transparent;
        display: none;
        min-width: 0;
    }

    .nav-dropdown.open .nav-dropdown__menu { display: block; }

    .nav-dropdown__item {
        padding: 6px 0;
        color: var(--grey-400);
        text-align: center;
        font-size: 1rem;
    }
    .nav-dropdown__item:hover { background: transparent; color: var(--white); padding-left: 0; }
    .nav-dropdown__item--all { border-bottom: none; margin-bottom: 0; padding-bottom: 6px; }

    .header__search { display: none; }
    .header__lang { margin-top: 24px; }
    .header__lang a { color: rgba(255,255,255,.4); }
    .header__lang a.is-active { background: var(--white); color: var(--black); }

    /* === MOBILE CONTENT === */
    .hero { min-height: 500px; }
    .hero__logo { max-width: 220px; }
    .hero__text { font-size: .95rem; }

    .section { padding: 60px 0; }
    .section__title { font-size: 1.5rem; margin-bottom: 32px; }
    .tile-row { grid-template-columns: 1fr 1fr; }
    .card-grid, .post-grid { grid-template-columns: 1fr; }
    .post-title { font-size: 1.8rem; }

    .about { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .about__image { order: -1; }
    .about__image img { margin: 0 auto; width: 140px; height: 140px; }

    .newsletter__inner { flex-direction: column; text-align: center; }
    .newsletter__form { width: 100%; }
    .newsletter__form input { width: 100%; }

    .article-hero__title { font-size: 1.8rem; }
    .article-meta-bar__inner { flex-direction: column; gap: 12px; align-items: flex-start; }
    .carousel__btn { display: none; }
    .carousel__item { flex: 0 0 220px; }
    .category-hero { height: 280px; }
    .category-hero__title { font-size: 2rem; }
    .comment-form .form-row { grid-template-columns: 1fr; }

    .footer__top { grid-template-columns: 1fr; text-align: center; }
    .footer__logo { margin: 0 auto 12px; }

    .comment-form .form-row { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
}

@media (max-width: 480px) {
    .header__logo-img { height: 40px; }
    .tile-row { grid-template-columns: 1fr; }
    .hero__logo { max-width: 180px; }
    .page-title { font-size: 1.8rem; }
    .post-title { font-size: 1.5rem; }
}
