/* ==========================================================================
   DRONIOS PREMIUM RECOMMENDATION BOXES — FULL-COLOR EDITION
   --------------------------------------------------------------------------
   Stand-alone CSS for three reusable product recommendation boxes.
   This version uses full-color hero and CTA sections with white text
   for maximum visual impact.
   
   USAGE:
   1. Include this CSS file on any page where you want to use the boxes:
      <link rel="stylesheet" href="dronios-recommendation-boxes.css">
   
   2. Make sure Font Awesome is loaded on the page (the boxes use fa-* icons):
      <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
      OR your existing local copy.
   
   3. Paste the HTML box markup inside any container in your page body.
   
   COLOR SCHEMES:
   - .editors-choice-box     -> Blue  (Premium / Pro)
   - .skyrover-value-box     -> Amber (Value / Smart Buy)
   - .beginners-pick-box     -> Green (Beginner / Safe)
   
   Combine with the base class:  class="value-winner-box editors-choice-box"
   
   STRUCTURE:
   - Hero (top)     -> full-color gradient, white text
   - Specs          -> light background, dark text
   - Reasons        -> light tinted background, dark text
   - Comparison     -> light background, dark text
   - CTA (bottom)   -> full-color gradient, white text, orange Amazon button
   ========================================================================== */


/* ==========================================================================
   BASE BOX
   ========================================================================== */

.value-winner-box {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 0;
  margin: 0 0 2rem;
  width: 100%;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 12px 40px -8px rgba(30, 64, 175, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
}

/* Accent stripe at the very top (now redundant since hero is full-color, kept hidden for backward compatibility) */
.vw-accent-bar {
  display: none;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.vw-hero {
  padding: 36px 20px 28px;
  text-align: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}

/* Alle Hero-Inhalte über eventuelle Deko-Layer heben */
.vw-hero > * {
  position: relative;
  z-index: 1;
}

.vw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.vw-badge-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.vw-title {
  font-size: 30px;
  color: #ffffff;
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.vw-tagline {
  font-size: 11px;
  color: #93c5fd;
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.vw-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 20px;
  line-height: 1.6;
  max-width: 580px;
}

.vw-image-wrap {
  width: 100%;
  margin: 0 auto 22px;
  padding: 20px 10px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 35%, transparent 70%);
}

.vw-hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.vw-price-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
}

.vw-price-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.vw-price-amount {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.vw-price-amount s {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  font-size: 14px;
  margin-right: 6px;
}

.vw-save-pill {
  display: inline-block;
  background: #fbbf24;
  color: #0f172a;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

.vw-section {
  padding: 24px 20px 8px;
}

.vw-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 20px;
}

.vw-section-heading-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: #e2e8f0;
}

.vw-section-heading span {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  white-space: nowrap;
}


/* ==========================================================================
   SPECS GRID
   ========================================================================== */

.vw-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.vw-spec-item {
  background: #ffffff;
  padding: 14px 12px 14px 16px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vw-spec-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vw-spec-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #1e40af;
}

.vw-spec-label {
  font-size: 10px;
  color: #64748b;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.vw-spec-value {
  font-size: 16px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.2;
}

.vw-spec-hint {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
}


/* ==========================================================================
   REASONS / WHY-IT-WINS CARDS — full-color section with glass cards
   ========================================================================== */

/* Der vw-section-Wrapper, der .vw-reasons enthält, wird selbst farbig */
.vw-section:has(.vw-reasons) {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  margin: 0 0 0;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
}

/* Überschriften innerhalb der farbigen Sektion werden hell */
.vw-section:has(.vw-reasons) .vw-section-heading span {
  color: rgba(255, 255, 255, 0.85);
}
.vw-section:has(.vw-reasons) .vw-section-heading-line {
  background: rgba(255, 255, 255, 0.25);
}

.vw-reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.vw-reason {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: transform 0.15s ease, background 0.15s ease;
}

.vw-reason:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.vw-reason-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  backdrop-filter: blur(4px);
}

.vw-reason-icon i {
  font-size: 16px;
}

.vw-reason-content {
  flex: 1;
  min-width: 0;
}

.vw-reason-title {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
}

.vw-reason-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin: 0;
}


/* ==========================================================================
   COMPARISON MINI-TABLE
   ========================================================================== */

.vw-compare {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  overflow-x: auto;
}

.vw-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 280px;
}

.vw-compare-table th,
.vw-compare-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid #e5eaf0;
}

.vw-compare-table th {
  color: #64748b;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.vw-compare-table td:first-child,
.vw-compare-table th:first-child {
  text-align: left;
  color: #94a3b8;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.vw-compare-table .vw-col-winner {
  background: #eff6ff;
  color: #0f172a;
  font-weight: 700;
}

.vw-compare-table .vw-col-loser {
  color: #64748b;
}

.vw-compare-table tr:last-child td {
  border-bottom: none;
}


/* ==========================================================================
   CTA BUTTON
   ========================================================================== */

.vw-cta-wrapper {
  padding: 26px 20px 30px;
  text-align: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.vw-cta-wrapper > * {
  position: relative;
  z-index: 1;
}

.vw-cta-btn {
  display: inline-block;
  background: #FF9900;
  color: #0f172a;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  min-width: 260px;
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}

.vw-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.vw-cta-btn i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: -2px;
}

.vw-cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin: 14px 0 0;
  line-height: 1.5;
}

.vw-cta-note i {
  color: #86efac;
  margin-right: 4px;
}


/* ==========================================================================
   COLOR SCHEMES — override the base blue palette
   ========================================================================== */

/* -- Editor's Choice — Blue (default, Premium / Pro) -- */
/* Uses the base blue defined above, no overrides needed. */


/* -- Value Winner — Amber (Smart Buy) -- */
.skyrover-value-box .vw-hero {
  background: linear-gradient(135deg, #78350f 0%, #b45309 50%, #d97706 100%);
}
.skyrover-value-box .vw-image-wrap {
  background: radial-gradient(ellipse at center, rgba(253, 230, 138, 0.45) 0%, rgba(253, 230, 138, 0.15) 35%, transparent 70%);
}
.skyrover-value-box .vw-tagline {
  color: #fde68a;
}
.skyrover-value-box .vw-save-pill {
  background: #fde68a;
  color: #451a03;
}
.skyrover-value-box .vw-cta-wrapper {
  background: linear-gradient(135deg, #78350f 0%, #b45309 100%);
}
.skyrover-value-box .vw-spec-item::before {
  background: #b45309;
}
.skyrover-value-box .vw-section:has(.vw-reasons) {
  background: linear-gradient(135deg, #78350f 0%, #b45309 50%, #d97706 100%);
}
.skyrover-value-box .vw-reason-icon {
  color: #fde68a;
}
.skyrover-value-box .vw-compare-table .vw-col-winner {
  background: #fef3c7;
}
.skyrover-value-box {
  box-shadow: 0 12px 40px -8px rgba(180, 83, 9, 0.25), 0 2px 8px rgba(0, 0, 0, 0.04);
}


/* -- Beginner's Pick — Green (Safe / Friendly) -- */
.beginners-pick-box .vw-hero {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #059669 100%);
}
.beginners-pick-box .vw-image-wrap {
  background: radial-gradient(ellipse at center, rgba(167, 243, 208, 0.45) 0%, rgba(167, 243, 208, 0.15) 35%, transparent 70%);
}
.beginners-pick-box .vw-tagline {
  color: #a7f3d0;
}
.beginners-pick-box .vw-save-pill {
  background: #a7f3d0;
  color: #022c22;
}
.beginners-pick-box .vw-cta-wrapper {
  background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
}
.beginners-pick-box .vw-spec-item::before {
  background: #047857;
}
.beginners-pick-box .vw-section:has(.vw-reasons) {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #059669 100%);
}
.beginners-pick-box .vw-reason-icon {
  color: #a7f3d0;
}
.beginners-pick-box .vw-compare-table .vw-col-winner {
  background: #ecfdf5;
}
.beginners-pick-box {
  box-shadow: 0 12px 40px -8px rgba(4, 120, 87, 0.25), 0 2px 8px rgba(0, 0, 0, 0.04);
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 640px) {
  .vw-hero { padding: 44px 32px 32px; }
  .vw-title { font-size: 36px; }
  .vw-subtitle { font-size: 14px; }
  .vw-section { padding: 28px 32px 8px; }
  .vw-cta-wrapper { padding: 28px 32px 36px; }
  .vw-specs-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .vw-reasons { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vw-compare-table { font-size: 14px; }
  .vw-compare-table th,
  .vw-compare-table td { padding: 12px; }
}

@media (min-width: 1024px) {
  .vw-hero { padding: 52px 40px 36px; }
  .vw-title { font-size: 42px; letter-spacing: -0.8px; }
  .vw-section { padding: 32px 40px 8px; }
  .vw-cta-wrapper { padding: 32px 40px 40px; }
  .vw-image-wrap { padding: 30px 20px; }
  .vw-specs-grid { gap: 14px; }
  .vw-reasons { grid-template-columns: repeat(3, 1fr); }
  .vw-spec-value { font-size: 18px; }
  .vw-reason-title { font-size: 15px; }
  .vw-reason-text { font-size: 13px; }
}


/* ==========================================================================
   QUICK-PICK CHIPS — jump links above the three boxes (Glass Cards)
   ========================================================================== */

.vw-quickpicks {
  margin: 0 0 1.75rem;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.vw-quickpicks-intro {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vw-quickpicks-intro::before,
.vw-quickpicks-intro::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #cbd5e1;
}

.vw-quickpicks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.vw-quickpick {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  box-shadow: 0 8px 24px -6px rgba(30, 64, 175, 0.35);
}

.vw-quickpick::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.vw-quickpick:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -6px rgba(30, 64, 175, 0.5);
}

.vw-quickpick-icon {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  backdrop-filter: blur(4px);
}

.vw-quickpick-icon svg {
  width: 18px;
  height: 18px;
}

.vw-quickpick-content {
  position: relative;
  flex: 1;
  min-width: 0;
}

.vw-quickpick-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 3px;
  color: #93c5fd;
}

.vw-quickpick-name {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.vw-quickpick-price {
  position: relative;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  background: #fbbf24;
  color: #0f172a;
}

/* Value Winner (amber) */
.vw-quickpick--value {
  background: linear-gradient(135deg, #78350f 0%, #d97706 100%);
  box-shadow: 0 8px 24px -6px rgba(180, 83, 9, 0.35);
}
.vw-quickpick--value:hover {
  box-shadow: 0 12px 32px -6px rgba(180, 83, 9, 0.5);
}
.vw-quickpick--value::after {
  background: radial-gradient(ellipse at right, rgba(253, 230, 138, 0.2) 0%, transparent 70%);
}
.vw-quickpick--value .vw-quickpick-icon {
  color: #fde68a;
}
.vw-quickpick--value .vw-quickpick-category {
  color: #fde68a;
}
.vw-quickpick--value .vw-quickpick-price {
  background: #fde68a;
  color: #451a03;
}

/* Beginner (green) */
.vw-quickpick--beginner {
  background: linear-gradient(135deg, #064e3b 0%, #059669 100%);
  box-shadow: 0 8px 24px -6px rgba(4, 120, 87, 0.35);
}
.vw-quickpick--beginner:hover {
  box-shadow: 0 12px 32px -6px rgba(4, 120, 87, 0.5);
}
.vw-quickpick--beginner::after {
  background: radial-gradient(ellipse at right, rgba(167, 243, 208, 0.2) 0%, transparent 70%);
}
.vw-quickpick--beginner .vw-quickpick-icon {
  color: #a7f3d0;
}
.vw-quickpick--beginner .vw-quickpick-category {
  color: #a7f3d0;
}
.vw-quickpick--beginner .vw-quickpick-price {
  background: #a7f3d0;
  color: #022c22;
}

/* Desktop: three columns side by side */
@media (min-width: 640px) {
  .vw-quickpicks-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .vw-quickpick {
    padding: 16px;
  }
}


/* ==========================================================================
   TRUST PANEL — "Tested side-by-side" credibility statement
   Visual banner that sits between the quick-picks and the 3 recommendation
   boxes. Establishes authenticity using a real-world test setup photo.
   ========================================================================== */

.vw-trust {
  position: relative;
  width: 100%;
  margin: 0 0 1.75rem;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  background-color: #0f172a;
  background-image: url('dronios-test-setup-mobile.webp');
  background-size: cover;
  background-position: center right;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 12px 40px -8px rgba(15, 23, 42, 0.35), 0 2px 8px rgba(0, 0, 0, 0.06);
  isolation: isolate;
}

/* Dunkler Farb-Overlay, damit der Text immer lesbar bleibt */
.vw-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 45%, rgba(15, 23, 42, 0.35) 75%, rgba(15, 23, 42, 0.15) 100%);
  z-index: 1;
}

.vw-trust-content {
  position: relative;
  z-index: 2;
  padding: 28px 20px 32px;
  max-width: 560px;
}

.vw-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.vw-trust-badge-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: vw-pulse 2.2s ease-in-out infinite;
}

@keyframes vw-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.05); }
}

.vw-trust-title {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
}

.vw-trust-title strong {
  color: #fbbf24;
  font-weight: 700;
}

.vw-trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 480px;
}

.vw-trust-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.vw-trust-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.vw-trust-meta-item svg {
  width: 14px;
  height: 14px;
  color: #10b981;
  flex-shrink: 0;
}

/* Desktop: volles Panorama-Bild, Text nach links angeordnet */
@media (min-width: 640px) {
  .vw-trust {
    min-height: 320px;
    background-image: url('dronios-test-setup.webp');
    background-position: center center;
  }
  .vw-trust::before {
    background: linear-gradient(100deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 40%, rgba(15, 23, 42, 0.25) 70%, rgba(15, 23, 42, 0.05) 100%);
  }
  .vw-trust-content {
    padding: 40px 36px 40px 32px;
    max-width: 600px;
  }
  .vw-trust-title {
    font-size: 28px;
  }
  .vw-trust-text {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .vw-trust {
    min-height: 360px;
  }
  .vw-trust-content {
    padding: 48px 40px;
  }
  .vw-trust-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }
  .vw-trust-text {
    font-size: 15px;
  }
}


/* ==========================================================================
   CTA-IMAGE (drone photo above the Amazon button, centered)
   and extra breathing room between specs and reasons
   ========================================================================== */

/* Mehr Abstand nach unten für die Specs-Sektion, damit sie nicht
   direkt am farbigen Reasons-Block klebt */
.vw-section:not(:has(.vw-reasons)) {
  padding-bottom: 28px;
}

@media (min-width: 640px) {
  .vw-section:not(:has(.vw-reasons)) {
    padding-bottom: 36px;
  }
}

/* Drohnen-Bild direkt über dem Amazon-Button */
.vw-cta-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  max-width: 260px;
}

.vw-cta-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 640px) {
  .vw-cta-image-wrap {
    max-width: 300px;
    margin: 0 auto 24px;
  }
}
