/* ---allgemeine Änderungen--- */

/* Linkzeichen ausblenden */
.no_ext .external::after {
content: none !important;
}

.no_ext_no_underline .external::after {
content: none !important;
text-decoration: none !important;
}

/* Textblock wie h1, blaue Schrift */
.big{
color: rgb(0,45,103);
font-size: 2.5rem; 
line-height: 120%;
font-weight:bold;
text-align: center;
}

/* Textblock wie h1, weiße Schrift */
.big_weiß{
color: #ffffff;
font-size: 2.5rem; 
line-height: 120%;
font-weight:bold;
text-align: center;
}

/* Textblock wie h2, blaue Schrift */
.big2{
color: rgb(0,45,103);
font-size: 1.375rem; 
line-height: 120%;
font-weight:bold;
text-align: center;
}

/* Textblock wie h2, weiße Schrift */
.big2_weiß{
color: #ffffff;
font-size: 1.375rem; 
line-height: 120%;
font-weight:bold;
text-align: center;
}

/* Farbänderungen im Text */
.orange{
color:#ff6600; /* geht irgendwie nicht */
}

.ultramarin{
color:#002d67;
}

.blau{
color:#0066b3;
}


/* Blog */
.zitat{
color: #ff6600;
font-size: 28.0px; 
line-height: 120%;
font-weight:bold;
}


/* nachhaltige Geldanlage */
.bild-tabelle {
    border-collapse: collapse;
    width:80%;
}

.bild-tabelle td {
    padding: 10px;
   margin: 0 auto;
}

.bild-container {
    position: relative;
    width: 300px; /* oder passende Größe */
    height: 533px;
    overflow: hidden;
}

.bild-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.bild-container img.hover {
    opacity: 0;
}

.bild-container:hover img.normal {
    opacity: 0;
}

.bild-container:hover img.hover {
    opacity: 1;
}



/* Filialseiten Öffnungszeiten */
.opening-hours {
    border-collapse: collapse;
    text-align: left;
}

.time {
    padding-left:20px;
padding-right:20px;
}

.spalte {
    width:80px;
}


/* Styles für die Zinsübersicht intern */
    .angebote-container * {
      box-sizing: border-box;
    }
  
    .angebote-container h1 {
      color: #00559b;
    }
  
    .angebote-container h2 {
      color: white;
      font-weight: 500;
    }
  
    /* Nur unsere Headline-Box */
    .angebote-header-box h2 {
      margin-bottom: 0 !important;
    }
  
    .angebote-container .angebote-container-flex {
      display: flex;
      justify-content: space-around;
      gap: 20px;
      flex-wrap: nowrap;
      overflow-x: auto;
    }
  
    .angebote-container .angebote-product-card {
      background-color: #002f67;
      color: white;
      padding: 20px;
      border-radius: 10px;
      width: 250px;
      text-align: left;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: relative;
      margin-top: 30px;
    }
  
    .angebote-container .angebote-product-card.angebote-sparbriefe {
      width: 300px;
      max-width: none;
    }
  
    .angebote-container .angebote-header-box {
      background-color: #0067b3;
      color: white;
      text-align: center;
      padding: 10px;
      border-radius: 10px 10px 0 0;
      position: absolute;
      top: -30px;
      left: 0;
      right: 0;
    }
  
    .angebote-container .angebote-card-content {
      margin-top: 40px;
    }
  
    .angebote-container .angebote-subtitle {
      margin-bottom: 30px;
      text-align: left;
      font-size: 18px;
      margin-top: -10px;
    }
  
    .angebote-container .angebote-zwischen {
      padding-bottom: 10px;
      font-size: 14px;
    }
  
    .angebote-container .angebote-tages {
      font-size: 15px;
    }
  
    .angebote-container .angebote-conditions {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  
    .angebote-container .angebote-condition-box {
      background-color: white;
      color: #003366;
      padding: 10px;
      border-radius: 5px;
      display: flex;
      justify-content: space-between;
      font-size: 16px;
      font-weight: bold;
    }
  
    .angebote-container .angebote-condition-box-center {
      background-color: rgb(249, 249, 249);
      color: #003366;
      padding: 10px;
      border-radius: 5px;
      font-size: 16px;
      font-weight: bold;
      text-align: center;
    }
  
    .angebote-container .angebote-notes {
      margin-top: 20px;
      font-size: 14px;
      color: #e0e0e0;
    }
  
    .angebote-container .angebote-product-card table {
      width: 100%;
      border-collapse: collapse;
      border: none;
    }
  
    .angebote-container .angebote-product-card table th,
    .angebote-container .angebote-product-card table td {
      padding: 10px;
      background-color: white;
      color: #003366;
      border: 1px solid #ccc;
      text-align: center;
      font-size: 12px;
      font-weight: bold;
    }
  
    .angebote-container .angebote-product-card table th {
      background-color: #e0e0e0;
    }
  
    .angebote-container .angebote-product-card table td {
      background-color: #ffffff;
    }
  
    @media (max-width: 1400px) {
      .angebote-container .angebote-container-flex {
        flex-wrap: wrap;
        justify-content: center;
      }
  
      .angebote-container .angebote-product-card {
        width: 45%;
        margin-bottom: 20px;
      }
    }
  
    @media (max-width: 768px) {
      .angebote-container .angebote-container-flex {
        flex-direction: column;
        align-items: center;
      }
  
      .angebote-container .angebote-product-card {
        width: 100%;
        margin-bottom: 20px;
      }
    }



/* Scoped CSS für das Paket-Design VR Prime Konto */

.pakete-section {
  font-family: Arial, sans-serif;
  background: #f5f7f8;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.pakete-section .cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pakete-section .card {
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Orange Zusatzpakete */
.pakete-section .card.zusatz {
  background-color: #e68424;
  flex: 0 0 260px;
  text-align: center;
}

.pakete-section .card.zusatz .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.pakete-section .card.zusatz .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pakete-section .card.zusatz ul {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
  display: inline-block;
}

.pakete-section .card.zusatz ul li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.pakete-section .card.zusatz ul li::before {
  content: '✓';
  margin-right: 8px;
  font-weight: bold;
}

.pakete-section .card.zusatz .price {
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
}

/* Blaue Hauptkarte */
.pakete-section .card.haupt {
  background-color: #122b5c;
  flex: 0 0 360px;
  text-align: center;
  padding: 32px;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); }

/* Hover-Effekt nur auf der blauen Karte */ .pakete-section .card.haupt:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2); }

.pakete-section .card.haupt .subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  color: white;
}

.pakete-section .card.haupt .title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.pakete-section .card.haupt ul {
  list-style: none;
  margin: 0 auto 2rem;
  text-align: left;
  display: inline-block;
  color: white;
}

.pakete-section .card.haupt ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.05rem;  /* etwas größer, wie gewünscht */
  line-height: 1.4;
  color: white;
}

.pakete-section .card.haupt ul li::before {
  content: '✓';
  margin-right: 8px;
  font-size: 1.2rem;
}

.pakete-section .card.haupt .price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: white;
}

/* Button in der blauen Karte */
.pakete-section .card.haupt .btn {
  display: inline-block !important;
  padding: 12px 32px !important;
  background: #ffffff !important;
  color: #122b5c !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: background 0.3s !important;
}

.pakete-section .card.haupt .btn:hover {
  background: #f0f0f0;
}

/* Plus-Symbole zwischen den Karten */
.pakete-section .arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pakete-section .arrow .plus {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #122b5c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #122b5c;
}

/* Responsives Verhalten */
@media (max-width: 800px) {
  .pakete-section .cards {
    flex-direction: column;
  }

  .pakete-section .card.zusatz,
  .pakete-section .card.haupt {
    flex: 0 0 100%;
    max-width: 480px;
  }

  .pakete-section .arrow {
    display: none;
  }
}

/* Wearables Landingpage */
.vblh-stepper {
  --vblh-maxw: 1120px;
  --vblh-gap: 18px;
  --vblh-radius: 22px;

  --vblh-pill: #0066b3;

  --vblh-headline: #111318;
  --vblh-title: #14171d;
  --vblh-text: rgba(17, 19, 24, 0.86);
  --vblh-muted: rgba(17, 19, 24, 0.60);

  --vblh-link: rgba(17, 19, 24, 0.88);
  --vblh-link-underline: rgba(17, 19, 24, 0.28);
  --vblh-link-hover: rgba(17, 19, 24, 0.96);

  --vblh-card-1: #d3e3f7;
  --vblh-card-2: #eef5ff;
  --vblh-card-3: #ffffff;

  --vblh-border: rgba(0, 45, 103, 0.12);
  --vblh-border-strong: rgba(0, 45, 103, 0.20);
  --vblh-shadow: 0 18px 45px rgba(0, 45, 103, 0.10);

  --vblh-bignum: rgba(0, 45, 103, 0.11);

  padding: 28px 16px;
}

.vblh-stepper__inner {
  max-width: var(--vblh-maxw);
  margin: 0 auto;
}

.vblh-stepper__header {
  margin-bottom: 18px;
}

.vblh-stepper__headline {
  margin: 0 0 6px 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--vblh-headline);
}

.vblh-stepper__subline {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--vblh-muted);
}

.vblh-stepper__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--vblh-gap);
}

/* Card Base */
.vblh-stepper__card {
  position: relative;
  overflow: hidden;

  border-radius: var(--vblh-radius);
  border: 1px solid var(--vblh-border);
  box-shadow: var(--vblh-shadow);

  padding: 18px 18px 14px 18px; /* ✅ unten etwas weniger Padding */
  min-height: 190px;           /* ✅ weniger Höhe */

  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }

.vblh-stepper__card:hover {
  transform: translateY(-4px);
  border-color: var(--vblh-border-strong);
  box-shadow: 0 24px 60px rgba(0, 45, 103, 0.14); }

.vblh-stepper__card--1 { background: var(--vblh-card-1); }
.vblh-stepper__card--2 { background: var(--vblh-card-2); }
.vblh-stepper__card--3 { background: var(--vblh-card-3); }

/* Pill / Badge */
.vblh-stepper__badge {
  position: relative;
  z-index: 6;

  display: inline-flex;
  align-items: center;

  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #ffffff;

  padding: 8px 12px;
  border-radius: 999px;

  background: var(--vblh-pill);
  box-shadow: 0 10px 22px rgba(0, 102, 179, 0.20);

  margin-bottom: 14px; /* ✅ MEHR ABSTAND zur Überschrift */ }

/* Content */
.vblh-stepper__title,
.vblh-stepper__text {
  position: relative;
  z-index: 5;
  margin-left: 2px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.60); }

.vblh-stepper__title {
  margin: 0 0 8px 0; /* ✅ oben kein Extra-Abstand, weil Badge jetzt Abstand liefert */
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--vblh-title);
}

.vblh-stepper__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--vblh-text);
}

.vblh-stepper__text strong {
  color: rgba(17, 19, 24, 0.96);
  font-weight: 650;
}

.vblh-stepper__link {
  color: var(--vblh-link);
  text-decoration: none;
  border-bottom: 1px solid var(--vblh-link-underline);
  transition: color 180ms ease, border-color 180ms ease; } .vblh-stepper__link:hover {
  color: var(--vblh-link-hover);
  border-bottom-color: rgba(17, 19, 24, 0.46); }

/* HUGE number (LEFT, OVER TEXT) */
.vblh-stepper__bgnum {
  /*position: absolute; */
  left: -16px;
  top: 50%;
  transform: translateY(-52%);

  font-size: clamp(175px, 17vw, 200px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;

  color: var(--vblh-bignum);
  text-shadow: 0 16px 44px rgba(0, 45, 103, 0.08);

  z-index: 7;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: multiply;
}

@supports not (mix-blend-mode: multiply) {
  .vblh-stepper__bgnum { color: rgba(0, 45, 103, 0.08); } }

/* Responsive */
@media (max-width: 900px) {
  .vblh-stepper__grid { grid-template-columns: 1fr; }
  .vblh-stepper__bgnum {
    font-size: clamp(165px, 36vw, 260px);
    left: -14px;
  }
}



/* Banking-App Startseite-Flag*/
  :root{
    --promo-mid: #002d67;
    --promo-edge: #295FA6;
    --promo-text: rgba(255,255,255,.92);
    --promo-border: rgba(255, 255, 255, 0.632);

    /* neu für CTA */
    --promo-cta-bg: #ffffff;
    --promo-cta-text: #0b1f3a; /* dunkle Schrift */
  }

  .promo-banner{
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    color: #fff;

    background:
      radial-gradient(1200px 70px at 50% 50%,
        rgba(255,255,255,.10), rgba(255,255,255,0) 60%),
      linear-gradient(90deg,
        var(--promo-edge) 0%,
        var(--promo-mid) 50%,
        var(--promo-edge) 100%);
    border: 1px solid rgba(255,255,255,.10);
  }

  .promo-inner{
    max-width: 1280px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 44px;

    text-align: center;    
  }

  .promo-pill{
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 10px;
    border: 2px solid var(--promo-border);
    font-size: 14px;
    white-space: nowrap;
  }

  .promo-text{
    margin: 0 !important;
    color: var(--promo-text);
    font-size: 15px;
    flex: 0 1 760px;         
    max-width: 760px;         
  }

.promo .no_ext_no_underline a.external {
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

.no_ext_no_underline a.external {
  display: inline;              /* oder inline-block, falls nötig */
  color: var(--promo-text);
  font-size: 15px;              /* wie .promo-text */
  font-weight: 400;             /* wie normaler Text */
  text-decoration: none;        /* keine Unterstreichung im Normalzustand */
}
.no_ext_no_underline a.external:hover {
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

.promo .no_ext_no_underline a.external {
  position: relative;
}

.promo-arrow {
  width: 22px;
  height: 22px;
  margin-left: 2px;
  vertical-align: vertical-align: baseline;
 transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo .no_ext_no_underline a.external:hover .promo-arrow {
  transform: translateX(4px);  /* Pfeil 4px nach rechts */
}

  @media (max-width: 720px){
    .promo-inner{
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .promo-text{
      flex-basis: 100%;
      max-width: 100%;
    }
  }