/* Extracted from mikro-oev-vorarlberg.html */
.vbg-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin: 2.5rem auto 0;
      max-width: 1100px;
    }
    .vbg-cards-grid > :nth-child(4),
    .vbg-cards-grid > :nth-child(5) {
      /* Center the last 2 cards */
    }
    @media (min-width: 769px) {
      .vbg-cards-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      /* Center last row with 2 items */
      .vbg-cards-grid > :nth-child(4) {
        grid-column: 1 / 2;
        margin-left: calc(50% - 0.375rem);
      }
      .vbg-cards-grid > :nth-child(5) {
        grid-column: 2 / 3;
        margin-right: calc(50% - 0.375rem);
      }
    }
    @media (min-width: 769px) {
      .vbg-cards-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
      }
      .vbg-cards-grid > .vbg-card {
        width: calc(33.333% - 1rem);
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
    @media (max-width: 900px) {
      .vbg-cards-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
      }
      .vbg-cards-grid > .vbg-card {
        width: auto !important;
        margin: 0 !important;
      }
    }
    @media (max-width: 520px) {
      .vbg-cards-grid {
        grid-template-columns: 1fr !important;
      }
    }
    .vbg-card {
      position: relative;
      background: #ffffff;
      border-radius: 16px;
      padding: 2.5rem 2rem 2rem;
      text-align: center;
      border: 1px solid rgba(0,0,0,0.06);
      box-shadow: 0 4px 24px rgba(0,0,0,0.04);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .vbg-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }
    .vbg-card__blob {
      position: absolute;
      top: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(102,255,126,0.15) 0%, rgba(102,255,126,0.03) 70%);
      filter: blur(2px);
      pointer-events: none;
    }
    .vbg-card__blob--alt {
      top: auto;
      bottom: -30px;
      left: -30px;
      right: auto;
      background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, rgba(59,130,246,0.02) 70%);
    }
    .vbg-card__blob--accent {
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      right: auto;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(102,255,126,0.2) 0%, transparent 70%);
    }
    .vbg-card__icon {
      position: relative;
      z-index: 2;
      width: 64px;
      height: 64px;
      margin: 0 auto 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
      border-radius: 14px;
      border: 1px solid rgba(102,255,126,0.2);
    }
    .vbg-card__icon img {
      width: 36px;
      height: 36px;
    }
    .vbg-card__title {
      position: relative;
      z-index: 2;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #111827;
      margin: 0 0 0.75rem;
      line-height: 1.35;
    }
    .vbg-card__text {
      position: relative;
      z-index: 2;
      font-family: 'Manrope', sans-serif;
      font-size: 0.92rem;
      color: #555;
      line-height: 1.75;
      margin: 0;
    }

.vbg-cards-grid--anwendung {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin: 2.5rem auto 0;
      max-width: 1100px;
    }
    .vbg-card--anwendung {
      width: calc(33.333% - 1rem);
    }
    .vbg-card__icon--anwendung {
      background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
      border-color: rgba(59,130,246,0.15);
    }
    @media (max-width: 900px) {
      .vbg-cards-grid--anwendung {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
      }
      .vbg-card--anwendung {
        width: auto !important;
      }
    }
    @media (max-width: 520px) {
      .vbg-cards-grid--anwendung {
        grid-template-columns: 1fr !important;
      }
    }

