/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 21 2026 | 11:38:51 */
/* ===== Home Page ===== */
/* ===== Hero Section ===== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}
a{
	text-decoration: none !important;
}
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 90%;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.hero__title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.hero__subtitle {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 400;
  margin: 0 0 32px;
  color: #f2f2f2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn--solid {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #1a1a1a;
}

.btn--solid:hover {
  background-color: #C9A84C;
  border-color: #C9A84C;
}

.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn--outline:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

/* ===== Responsive breakpoints ===== */

/* Tablets */
@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(24px, 6vw, 38px);
  }

  .hero__subtitle {
    font-size: clamp(14px, 3vw, 17px);
  }

  .hero__actions {
    gap: 12px;
  }

  .btn {
    padding: 14px 26px;
    font-size: 14px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    width: 92%;
  }

  .hero__title {
    font-size: clamp(22px, 7vw, 30px);
    margin-bottom: 14px;
  }

  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}



/* ===== Stats Section 2 ===== */


.stats {
  width: 100%;
  background-color: #F5F0E8;
  padding: 64px 24px;
}

.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

.stats__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stats__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 24px;
}

.stats__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.stats__text {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  margin: 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.stats__divider {
  width: 1px;
  align-self: stretch;
  background-color: #d9a441;
  flex-shrink: 0;
}

/* ===== Responsive breakpoints ===== */

/* Tablets */
@media (max-width: 900px) {
  .stats {
    padding: 48px 20px;
  }

  .stats__inner {
    gap: 24px;
  }

  .stats__image {
    margin-bottom: 18px;
  }
}

/* Mobile phones — stack vertically */
@media (max-width: 640px) {
  .stats__inner {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .stats__item {
    width: 100%;
    max-width: 400px;
  }

  .stats__divider {
    width: 60%;
    height: 1px;
    align-self: center;
  }

  .stats__title {
    font-size: 18px;
  }

  .stats__text {
    font-size: 14px;
    max-width: 100%;
  }
}

/* ===== Quote Split Section ===== */

.quote-split * {
  box-sizing: border-box;
}

.quote-split {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 640px;
  background-color: #ffffff;
}

.quote-split__media {
  flex: 1 1 50%;
  min-width: 320px;
}

.quote-split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.quote-split__content {
  flex: 1 1 50%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 90px;
}

.quote-split__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 16px;
}

.quote-split__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 28px;
  max-width: 560px;
}

.quote-split__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 40px;
  max-width: 520px;
}

.quote-split__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.quote-split__btn {
  display: inline-block;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 2px;
  transition: background-color 0.25s ease;
}

.quote-split__btn:hover {
  background-color: #C9A84C;
}

.quote-split__link {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.quote-split__link:hover {
  border-bottom-color: #1a1a1a;
}

/* ===== Responsive breakpoints ===== */

@media (max-width: 900px) {
  .quote-split__content {
    padding: 56px 48px;
  }

  .quote-split__title {
    font-size: clamp(24px, 4vw, 32px);
  }
}

@media (max-width: 768px) {
  .quote-split {
    flex-direction: column;
    min-height: unset;
  }

  .quote-split__media img {
    min-height: 260px;
  }

  .quote-split__content {
    padding: 40px 28px;
  }
}

@media (max-width: 480px) {
  .quote-split__content {
    padding: 32px 20px;
  }

  .quote-split__title {
    font-size: 24px;
  }

  .quote-split__text {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .quote-split__btn,
  .quote-split__link {
    font-size: 14px;
  }

  .quote-split__actions {
    width: 100%;
  }

  .quote-split__btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== CTA Dark Split Section ===== */

.cta-dark-split * {
  box-sizing: border-box;
}


.cta-dark-split {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 560px;
  background-color: #2b2b2b;
}

.cta-dark-split__content {
  flex: 1 1 45%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 100px 60px 80px;
}

.cta-dark-split__title {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 28px;
  max-width: 480px;
}

.cta-dark-split__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #d4d4d4;
  margin: 0 0 36px;
  max-width: 460px;
}

.cta-dark-split__btn {
  display: inline-block;
  align-self: flex-start;
  background-color: #ffffff;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 2px;
  transition: background-color 0.25s ease;
}

.cta-dark-split__btn:hover {
  background-color: #C9A84C;
}

.cta-dark-split__media {
  flex: 1 1 45%;
  min-width: 320px;
}

.cta-dark-split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* ===== Responsive breakpoints ===== */

@media (max-width: 900px) {
  .cta-dark-split__content {
    padding: 48px 48px;
  }

  .cta-dark-split__title {
    font-size: clamp(24px, 4vw, 34px);
  }
}

@media (max-width: 768px) {
  .cta-dark-split {
    flex-direction: column-reverse;
    min-height: unset;
  }

  .cta-dark-split__media img {
    min-height: 260px;
  }

  .cta-dark-split__content {
    padding: 40px 28px;
  }
}

@media (max-width: 480px) {
  .cta-dark-split__content {
    padding: 32px 20px;
  }

  .cta-dark-split__title {
    font-size: 26px;
  }

  .cta-dark-split__text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cta-dark-split__btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

/* ===== Video Section ===== */

.video-sec * {
  box-sizing: border-box;
}

.video-sec {
  width: 100%;
  background-color: #f5f5f5;
  padding: 72px 24px;
}

.video-sec__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.video-sec__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 12px;
}

.video-sec__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 32px;
}

.video-sec__frame {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-sec__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-sec__caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  max-width: 560px;
  margin: 24px auto 0;
}

/* ===== Responsive breakpoints ===== */

@media (max-width: 768px) {
  .video-sec {
    padding: 56px 20px;
  }

  .video-sec__title {
    font-size: clamp(20px, 4vw, 24px);
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .video-sec {
    padding: 40px 16px;
  }

  .video-sec__eyebrow {
    font-size: 12px;
  }

  .video-sec__title {
    font-size: 19px;
  }

  .video-sec__caption {
    font-size: 13px;
  }
}

/* ===== Press Logos Section ===== */
.press-logos * {
  box-sizing: border-box;
}

.press-logos {
  width: 100%;
  background-color: #F5F0E8;
  padding: 48px 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.press-logos__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Label: "BEKANNT AUS:" */
.press-logos__label {
  margin: 0 0 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  color: #1a1a1a;
}

/* Logo grid */
.press-logos__grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.press-logos__item {
  height: 60px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.press-logos__item:hover {
  opacity: 1;
}

/* Link: "Alle Presseberichte ansehen →" */
.press-logos__link {
  display: inline-block;
  margin-top: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.press-logos__link:hover {
  color: #555555;
}

/* ===== Responsive breakpoints ===== */
@media (max-width: 900px) {
  .press-logos__grid {
    justify-content: center;
    gap: 28px 40px;
  }
  .press-logos__item {
    height: 34px;
  }
}

@media (max-width: 480px) {
  .press-logos {
    padding: 36px 16px;
  }
  .press-logos__label {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .press-logos__grid {
    gap: 24px 32px;
  }
  .press-logos__item {
    height: 26px;
    max-width: 120px;
  }
  .press-logos__link {
    margin-top: 28px;
    font-size: 14px;
  }
}

/* ===== History Split Section ===== */

.history-split * {
  box-sizing: border-box;
}


.history-split {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 620px;
  background-color: #ffffff;
}

.history-split__media {
  flex: 1 1 50%;
  min-width: 320px;
}

.history-split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.history-split__content {
  flex: 1 1 50%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 90px;
}

.history-split__eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.history-split__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 28px;
  max-width: 540px;
}

.history-split__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0 0 40px;
  max-width: 500px;
}

.history-split__btn {
  display: inline-block;
  align-self: flex-start;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 2px;
  transition: background-color 0.25s ease;
}

.history-split__btn:hover {
  background-color: #C9A84C;
}

/* ===== Responsive breakpoints ===== */

@media (max-width: 900px) {
  .history-split__content {
    padding: 56px 48px;
  }

  .history-split__title {
    font-size: clamp(24px, 4vw, 32px);
  }
}

@media (max-width: 768px) {
  .history-split {
    flex-direction: column;
    min-height: unset;
  }

  .history-split__media img {
    min-height: 260px;
  }

  .history-split__content {
    padding: 40px 28px;
  }
}

@media (max-width: 480px) {
  .history-split__content {
    padding: 32px 20px;
  }

  .history-split__title {
    font-size: 24px;
  }

  .history-split__text {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .history-split__btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

/* ===== Blog Split Section ===== */

.blog-split * {
  box-sizing: border-box;
}


.blog-split {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 620px;
  background-color: #f7f7f5;
}

.blog-split__content {
  flex: 1 1 45%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 90px;
}

.blog-split__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 16px;
}

.blog-split__title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 32px;
  max-width: 480px;
}

.blog-split__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.blog-split__item {
  border-bottom: 1px solid #e2e0da;
  padding-bottom: 16px;
}

.blog-split__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-split__link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-split__link:hover {
  color: #6b6b6b;
}

.blog-split__btn {
  display: inline-block;
  align-self: flex-start;
  background-color: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.blog-split__btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.blog-split__media {
  flex: 1 1 45%;
  min-width: 320px;
}

.blog-split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* ===== Responsive breakpoints ===== */

@media (max-width: 900px) {
  .blog-split__content {
    padding: 56px 48px;
  }

  .blog-split__title {
    font-size: clamp(24px, 4vw, 32px);
  }
}

@media (max-width: 768px) {
  .blog-split {
    flex-direction: column;
    min-height: unset;
  }

  .blog-split__media img {
    min-height: 260px;
  }

  .blog-split__content {
    padding: 40px 28px;
  }
}

@media (max-width: 480px) {
  .blog-split__content {
    padding: 32px 20px;
  }

  .blog-split__title {
    font-size: 24px;
  }

  .blog-split__link {
    font-size: 14px;
  }

  .blog-split__btn {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

.hero__title {
   
    color: #fff;
}

:root :where(.is-layout-flow) > :last-child{
    margin: 0 !important;
}
/* Hide the theme's auto Featured Image block on the Historie page only */
body.page-id-136 .wp-block-post-featured-image{
  display: none;
}

/* ===== Historie page — matched exactly to historie.html mockup ===== */

.hw-banner img{
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.hw-title{
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #111111;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Force the content column back to 800px (matches historie.html's .container),
   overriding the 750px set in the block editor's Layout panel */
.hw-list.wp-block-group.is-layout-constrained > *:not(.alignfull){
  max-width: 800px !important;
}

.hw-list{
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 40px;
  box-sizing: border-box;
}

.hw-item{
  border-bottom: 1px solid #f0f0f0;
  padding: 24px 0;
  column-gap: 0 !important;
}

.hw-item--last{
  border-bottom: none;
}

/* Year column: fixed 120px, no shrink, no grow — sits flush against the text
   column with zero gap, exactly like historie.html */
.hw-year-col{
  flex-basis: 120px !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  max-width: 120px;
}

.hw-text-col{
  flex-grow: 1 !important;
  flex-basis: 0 !important;
}

.hw-year{
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.hw-text{
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

/* ===== Responsive — matches historie.html's @media (max-width: 600px) ===== */
@media (max-width: 600px){
  .hw-title{
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .hw-item{
    flex-direction: column;
    padding: 16px 0;
  }

  .hw-year{
    margin-bottom: 4px;
  }

  .hw-year-col{
    max-width: 100%;
  }
}

/* ===== Press & TV page ===== */

.ptv-hero-image img{
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.ptv-intro{
  margin: 0px !important;
  width: 100%;
  padding: 64px 24px;
  text-align: center;
}

#ptv-app{
  max-width: 1130px;
}

.ptv-title{
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.ptv-subtitle{
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0;
}

.ptv-filters{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 32px 24px;
}

.ptv-filter-item{
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  border: 1px solid #F5F5F5;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ptv-filter-item:hover{
  border-color: #C9A84C;
}

.ptv-filter-item--active{
  border-color: #C9A84C;
  color: #C9A84C;
}

.ptv-grid{
  padding: 8px 24px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== Cards — now equal height with link pinned to bottom ===== */

.ptv-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.ptv-card{
  border: 1px solid #F5F5F5;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.ptv-card:hover{
  border-color: #E5E5E5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.ptv-card-image{
  display: block;
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  background: #F5F5F5;
}

.ptv-card-image--empty{
  background: linear-gradient(135deg, #F5F5F5 25%, transparent 25%, transparent 50%, #F5F5F5 50%, #F5F5F5 75%, transparent 75%, transparent);
  background-size: 16px 16px;
  opacity: 0.5;
}

.ptv-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ptv-card-meta{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.ptv-meta-date{
  font-size: 11px;
  color: #888888;
}

.ptv-meta-dot{
  font-size: 11px;
  color: #CCCCCC;
}

.ptv-meta-type{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #C9A84C;
}

.ptv-card-title{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.4;
}

.ptv-card-title a{
  color: #1A1A1A;
  text-decoration: none;
}

.ptv-card-excerpt{
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}

.ptv-card-link{
  font-size: 13px;
  font-weight: 600;
  color: #C9A84C;
  text-decoration: none;
  margin-top: auto;
}

.ptv-empty{
  text-align: center;
  color: #888888;
  padding: 40px 0;
}

.ptv-pagination{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.ptv-pagination .page-numbers{
  color: #888888;
  font-size: 14px;
  text-decoration: none;
  padding: 4px 8px;
  cursor: pointer;
}

.ptv-pagination .page-numbers:hover{
  color: #C9A84C;
}

.ptv-pagination .page-numbers.current{
  color: #C9A84C;
  font-weight: 700;
}

@media (max-width: 782px){
  .ptv-hero-image img{
    height: 240px;
  }
  .ptv-cards{
    grid-template-columns: 1fr;
  }
}

/* ===== Ersatzteil-Impressionen page ===== */

.ei-banner img{
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.ei-intro{
  margin: 0px !important;
  width: 100%;
  padding: 64px 24px 0;
  text-align: center;
}

.ei-title{
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0;
}

.ei-content{
  padding: 32px 24px 80px;
}

.ei-text{
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.7;
  margin: 0 0 24px;
}

.ei-text:last-child{
  margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 782px){
  .ei-banner img{
    height: 240px;
  }
  .ei-intro{
    padding: 48px 20px 0;
  }
  .ei-title{
    font-size: 26px;
  }
  .ei-content{
    padding: 24px 20px 56px;
  }
}


/* ===== Blog page (bw- = Blog Westphal) ===== */

.bw-banner img{
  display: block;
  width: 100% !important;
  height: 400px !important;
  object-fit: cover;
}

.bw-intro{
  margin: 0px !important;
  width: 100%;
  padding: 56px 24px;
  text-align: center;
}
#bw-app{
	    width: 100%;
    max-width: 1130px;
}

.bw-title{
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 10px;
}

.bw-subtitle{
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0;
}

/* Full-bleed white section, content centered inside it independently
   of whatever wrapper the HTML block happens to sit in */
.bw-grid{
  background: #FFFFFF;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 48px 24px 80px;
  box-sizing: border-box;
}

.bw-grid-inner{
  max-width: 1180px;
  margin: 0 auto;
}

.bw-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
}

/* Premium card treatment: real border, soft shadow, rounded corners
   on the whole card, not just the image */
a.bw-card,
a.bw-card:link,
a.bw-card:visited,
a.bw-card:hover,
a.bw-card:active{
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: #1A1A1A !important;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

a.bw-card:hover{
  box-shadow: 0 16px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
  border-color: #E5E5E5;
}

.bw-card-image{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #F5F5F5;
  overflow: hidden;
}

.bw-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

a.bw-card:hover .bw-card-image img{
  transform: scale(1.04);
}

.bw-card-body{
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 190px;
}

.bw-card-date{
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #999999 !important;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.bw-card-title{
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A !important;
  line-height: 1.4;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bw-card-excerpt{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555 !important;
  line-height: 1.65;
  margin: 0 0 18px;
  flex-grow: 1;
}

.bw-card-link{
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A !important;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #F0F0F0;
  transition: color 0.2s ease;
}

a.bw-card:hover .bw-card-link{
  color: #C9A84C !important;
}

.bw-empty{
  text-align: center;
  color: #888888;
  padding: 40px 0;
  font-family: 'Inter', sans-serif;
}

.bw-pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}

.bw-pagination a.page-numbers,
.bw-pagination a.page-numbers:link,
.bw-pagination a.page-numbers:visited{
  font-family: 'Inter', sans-serif;
  color: #999999 !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.bw-pagination a.page-numbers:hover{
  color: #C9A84C !important;
  background: #FAF6EC;
}

.bw-pagination a.page-numbers.current{
  color: #C9A84C !important;
  font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .bw-cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .bw-banner img{
    height: 260px;
  }
  .bw-intro{
    padding: 40px 20px;
  }
  .bw-title{
    font-size: 28px;
  }
  .bw-grid{
    padding: 32px 20px 56px;
  }
  .bw-cards{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== Trust Facts block (tf-) ===== */

.tf-section{
  background: #FFFFFF;
  padding: 64px 24px;
}

.tf-columns{
  max-width: 1100px;
  margin: 0 auto;
  gap: 48px;
}

.tf-item{
  text-align: center;
}

.tf-icon{
  margin: 0 auto 20px;
}

.tf-icon img{
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.tf-title{
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 12px;
}

.tf-text{
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 782px){
  .tf-columns{
    flex-direction: column;
    gap: 40px;
  }
}