/* Nur blogspezifische Gestaltung. Header, Footer und Newsletter bleiben in style.css. */

.blog-page { background: var(--paper); }

.blog-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 78% 15%, rgba(224,184,111,.2), transparent 23%), linear-gradient(145deg, #0d1b1e 0%, #050d10 72%);
}

.blog-hero::before {
    content: "";
    position: absolute;
    right: -7vw;
    bottom: -22vw;
    width: 48vw;
    aspect-ratio: 1;
    border: 1px solid rgba(224,184,111,.13);
    border-radius: 50%;
    box-shadow: 0 0 0 6vw rgba(224,184,111,.025), 0 0 0 12vw rgba(224,184,111,.018);
    pointer-events: none;
}

.blog-hero-inner {
    position: relative;
    display: grid;
    min-height: 520px;
    grid-template-columns: minmax(0,1.4fr) minmax(300px,.6fr);
    align-items: end;
    gap: clamp(40px,7vw,100px);
    padding-top: clamp(88px,10vw,140px);
    padding-bottom: clamp(70px,8vw,110px);
}

.blog-hero-copy { max-width: 820px; }

.blog-overline {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.blog-overline::before { content: ""; width: 30px; height: 1px; background: currentColor; }

.blog-hero h1 {
    margin: 22px 0 26px;
    font-size: clamp(3.7rem,7vw,7rem);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .89;
}

.blog-hero h1 span { color: var(--gold-light); }
.blog-hero-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.66); font-size: clamp(1rem,1.35vw,1.2rem); line-height: 1.7; }

.blog-latest {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 27px 0 5px 28px;
    color: #fff;
    border-left: 1px solid rgba(224,184,111,.35);
    text-decoration: none;
}

.blog-latest:hover { color: var(--gold-light); }
.blog-latest-label { color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.blog-latest strong { max-width: 320px; font-size: 1.1rem; line-height: 1.45; }
.blog-latest > span:last-child { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.5); font-size: .78rem; }

.blog-category-bar {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(7,17,19,.09);
    background: rgba(255,253,249,.9);
    box-shadow: 0 14px 38px rgba(7,17,19,.05);
}

.blog-category-inner { display: flex; min-height: 82px; align-items: center; gap: 30px; }
.blog-category-inner > span { flex: 0 0 auto; color: var(--muted-copy); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.blog-filters { display: flex; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.blog-filters::-webkit-scrollbar { display: none; }

.blog-filter {
    flex: 0 0 auto;
    padding: 9px 15px;
    color: #596164;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    font-size: .8rem;
    font-weight: 700;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.blog-filter:hover,
.blog-filter.is-active { color: var(--ink); border-color: rgba(7,17,19,.12); background: var(--paper-deep); }
.blog-filter:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.blog-featured-section { padding: clamp(72px,7vw,110px) 0 clamp(54px,6vw,86px); }
.blog-featured { display: grid; min-height: 520px; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); overflow: hidden; border: 1px solid rgba(7,17,19,.08); border-radius: 26px; background: var(--cream); box-shadow: var(--shadow-card); }
.blog-featured-image { min-height: 520px; background-size: cover; }
.blog-featured-copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(38px,4.25vw,64px); }

.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 16px; color: var(--muted-copy); font-size: .72rem; font-weight: 600; }
.blog-meta > * + *::before { content: ""; display: inline-block; width: 3px; height: 3px; margin: 0 16px 2px 0; border-radius: 50%; background: rgba(7,17,19,.35); }
.blog-category { color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.blog-featured h2 { max-width: 100%; margin: 23px 0 22px; color: var(--ink); font-size: clamp(2.25rem,3.45vw,3.35rem); font-weight: 700; hyphens: auto; overflow-wrap: anywhere; letter-spacing: -.045em; line-height: 1.04; }
.blog-featured-copy > p { margin: 0 0 30px; color: #5d6669; font-size: 1rem; line-height: 1.75; }

.blog-read-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: .82rem; font-weight: 800; text-decoration: none; }
.blog-read-link i { color: var(--gold); transition: transform .2s ease; }
.blog-read-link:hover { color: var(--gold); }
.blog-read-link:hover i { transform: translateX(4px); }

.blog-posts-section { padding: clamp(60px,6vw,92px) 0 clamp(86px,8vw,128px); background: radial-gradient(circle at 95% 0, rgba(185,133,63,.08), transparent 24%), var(--paper-deep); }
.blog-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 42px; padding-bottom: 25px; border-bottom: 1px solid rgba(7,17,19,.1); }
.blog-section-heading h2 { margin: 12px 0 0; color: var(--ink); font-size: clamp(2.25rem,4vw,3.8rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.blog-section-heading > p { flex: 0 0 auto; margin: 0; color: var(--muted-copy); font-size: .8rem; font-weight: 700; }

.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.blog-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid rgba(7,17,19,.08); border-radius: 18px; background: rgba(255,253,249,.88); box-shadow: 0 14px 40px rgba(20,28,29,.06); transition: transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-5px); }
.blog-card[hidden] { display: none; }
.blog-card-image { aspect-ratio: 16 / 10; border-bottom: 1px solid rgba(7,17,19,.06); background-size: cover; }
.blog-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 26px 26px 28px; }
.blog-card .blog-meta { font-size: .66rem; }
.blog-card .blog-meta > * + *::before { margin-right: 10px; }
.blog-card h3 { margin: 18px 0 14px; color: var(--ink); font-size: 1.45rem; font-weight: 700; letter-spacing: -.025em; line-height: 1.2; }
.blog-card p { margin: 0 0 23px; color: #626b6e; font-size: .9rem; line-height: 1.7; }
.blog-card .blog-read-link { margin-top: auto; }
.blog-empty { margin: 35px 0 0; padding: 38px; color: var(--muted-copy); border: 1px dashed rgba(7,17,19,.18); border-radius: 16px; text-align: center; }

.blog-quote { color: #fff; background: radial-gradient(circle at 16% 25%, rgba(224,184,111,.14), transparent 28%), var(--ink); }
.blog-quote-inner { display: grid; min-height: 390px; place-items: center; align-content: center; padding-top: 70px; padding-bottom: 70px; text-align: center; }
.blog-quote i { color: var(--gold-light); font-size: 2.2rem; }
.blog-quote blockquote { max-width: 900px; margin: 22px auto 20px; font-size: clamp(1.8rem,3.5vw,3.35rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.18; }
.blog-quote span { color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

@media (max-width: 991.98px) {
    .blog-hero-inner { grid-template-columns: minmax(0,1.25fr) minmax(250px,.75fr); }
    .blog-featured { min-height: 0; grid-template-columns: 1fr; }
    .blog-featured-image { min-height: 0; aspect-ratio: 16 / 9; }
    .blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 767.98px) {
    .blog-hero-inner { min-height: 0; grid-template-columns: 1fr; gap: 42px; padding-top: 108px; padding-right: 28px; padding-bottom: 64px; }
    .blog-hero h1 { max-width: 100%; font-size: clamp(3.05rem,11vw,4.3rem); letter-spacing: -.05em; overflow-wrap: anywhere; }
    .blog-hero-copy > p { max-width: 32ch; }
    .blog-latest { padding: 22px 0 0 22px; }
    .blog-category-inner { display: block; padding-top: 15px; padding-bottom: 15px; }
    .blog-category-inner > span { display: block; margin-bottom: 9px; }
    .blog-filters { margin-right: -16px; padding-right: 16px; }
    .blog-featured-section { padding-top: 58px; }
    .blog-featured { min-height: 0; grid-template-columns: 1fr; border-radius: 18px; }
    .blog-featured-image { min-height: 0; aspect-ratio: 16 / 11; }
    .blog-featured-copy { padding: 30px 24px 34px; }
    .blog-featured h2 { font-size: clamp(2.15rem,10vw,3rem); }
    .blog-section-heading { align-items: flex-start; flex-direction: column; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card h3 { font-size: 1.6rem; }
    .blog-quote-inner { min-height: 340px; }
}

@media (max-width: 479.98px) {
    .blog-hero h1 { font-size: clamp(2.8rem,12vw,3.5rem); }
    .blog-meta { gap: 7px 10px; }
    .blog-meta > * + *::before { margin-right: 10px; }
    .blog-card-body { padding: 23px 21px 26px; }
}

@media (prefers-reduced-motion: reduce) {
    .blog-card, .blog-read-link i { transition: none; }
}
@media (min-width:768px) { .blog-hero-inner { min-height:610px; } }

/* Einzelbeitrag /blog/<slug> */
.cms-blog { --blog-accent: var(--gold); --blog-ink: var(--ink); --blog-muted: #626b6e; --blog-line: rgba(7,17,19,.12); background: var(--paper) !important; color: var(--ink) !important; }
.cms-blog-article-header { padding: clamp(58px,8vw,112px) 0 clamp(42px,6vw,74px) !important; background: radial-gradient(circle at 82% 15%, rgba(224,184,111,.18), transparent 25%), linear-gradient(145deg,#0d1b1e,#050d10) !important; color: #fff; }
.cms-blog-article-header .container { max-width: 1000px; }
.cms-blog-breadcrumb { color: rgba(255,255,255,.58) !important; font-size: .76rem !important; }
.cms-blog-breadcrumb a:hover { color: var(--gold-light); }
.cms-blog-category { color: var(--gold-light) !important; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: .78rem !important; letter-spacing: .14em !important; }
.cms-blog-article-header h1 { max-width: 960px; color: #fff; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: clamp(3rem,6.3vw,6.4rem) !important; font-weight: 800 !important; letter-spacing: -.05em !important; line-height: .89 !important; text-transform: uppercase; }
.cms-blog-lead { max-width: 740px; color: rgba(255,255,255,.72) !important; font-size: clamp(1rem,1.5vw,1.18rem) !important; line-height: 1.7 !important; }
.cms-blog-byline { color: rgba(255,255,255,.6) !important; font-size: .8rem !important; }
.cms-blog-hero-image { max-width: 1200px !important; margin-top: clamp(28px,4vw,55px) !important; }
.cms-blog-hero-image img { border-radius: 18px !important; box-shadow: var(--shadow-card); }
.cms-blog-article-layout { max-width: 1000px !important; padding-top: clamp(48px,6vw,82px) !important; }
.cms-blog-share a,.cms-blog-share button { border-color: rgba(7,17,19,.14) !important; border-radius: 50% !important; color: var(--gold) !important; background: var(--cream) !important; }
.cms-blog-content { max-width: 780px; color: #30383a; font-size: 1.05rem !important; line-height: 1.9 !important; }
.cms-blog-content h2,.cms-blog-content h3 { color: var(--ink); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-weight: 800; letter-spacing: -.02em; line-height: 1; text-transform: uppercase; }
.cms-blog-content h2 { font-size: clamp(2rem,3vw,2.8rem) !important; }.cms-blog-content h3 { font-size: clamp(1.55rem,2.4vw,2rem) !important; }
.cms-blog-content a { color: #9d6926 !important; }.cms-blog-content blockquote { padding: 24px 28px !important; border-left-color: var(--gold) !important; background: var(--cream) !important; color: var(--ink); font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 1.5rem !important; font-weight: 700; line-height: 1.18; }
.cms-blog-event { border-color: rgba(7,17,19,.12) !important; border-left-color: var(--gold) !important; border-radius: 18px !important; background: var(--cream) !important; }.cms-blog-event-icon { border-radius: 50% !important; background: var(--paper-deep) !important; color: var(--gold) !important; }.cms-blog-event-cta { border-radius: 999px !important; background: var(--gold) !important; color: var(--ink) !important; }
.cms-blog-gallery-heading small { color: var(--gold) !important; }.cms-blog-gallery-heading h2 { font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 2rem !important; font-weight: 800; text-transform: uppercase; }.cms-blog-gallery-item { border-radius: 14px !important; }
.cms-blog-article-footer { max-width: 1000px !important; border-top-color: rgba(7,17,19,.12) !important; }.cms-blog-article-footer a { color: var(--ink) !important; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-size: 1rem; text-transform: uppercase; }.cms-blog-article-footer span { border-radius: 999px !important; background: var(--paper-deep) !important; color: #76582e !important; }
@media (max-width:650px) { .cms-blog-article-header { padding-top: 54px !important; }.cms-blog-hero-image { margin-top: 0 !important; padding: 0 !important; }.cms-blog-hero-image img { min-height: 240px; border-radius: 0 !important; object-fit: cover; }.cms-blog-article-layout { padding-top: 38px !important; }.cms-blog-content { font-size: 1rem !important; }.cms-blog-share { margin-top: 12px; } }
