/**
 * EBD 360 — Produtos Recomendados (Amazon)
 * Componentes de monetização alinhados ao Design System.
 *
 * @package EBD360_Theme
 */

/* ── Seção de recomendações ─────────────────────────────── */
.ebd360-recommendations-section {
  margin: var(--ebd-space-5xl) auto;
  max-width: 1200px;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--ebd-neutral-50) 100%);
  border: 1px solid var(--ebd-neutral-200);
  border-radius: var(--ebd-radius-xl);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.06);
}

.ebd360-recommendations-section--inline {
  padding-inline: clamp(20px, 4vw, 48px);
}

.ebd360-recommendations-section--home {
  margin: 0;
  max-width: none;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.ebd360-recommendations-header {
  text-align: center;
  margin-bottom: var(--ebd-space-3xl);
}

.ebd360-recommendations-header h2 {
  font-family: var(--ebd-font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--ebd-primary);
  margin: 0 0 var(--ebd-space-sm);
  letter-spacing: -0.02em;
}

.ebd360-recommendations-header p {
  color: var(--ebd-neutral-600);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Grid responsivo com centralização ──────────────────── */
.ebd360-recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
  justify-content: center;
  gap: var(--ebd-space-xl);
  margin-bottom: var(--ebd-space-2xl);
}

.ebd360-recommendations-grid--count-1 {
  grid-template-columns: minmax(320px, 820px);
}

.ebd360-recommendations-grid--count-2 {
  grid-template-columns: repeat(2, minmax(280px, 320px));
}

@media (max-width: 680px) {
  .ebd360-recommendations-grid,
  .ebd360-recommendations-grid--count-2 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* ── Card de produto (grid) ─────────────────────────────── */
.ebd360-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease;
}

.ebd360-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ebd-gold) 0%, #e4c27a 48%, var(--ebd-gold-hover) 100%);
  z-index: 2;
}

.ebd360-product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), transparent 34%);
  z-index: 1;
}

.ebd360-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.68);
  box-shadow:
    0 28px 75px rgba(15, 23, 42, 0.13),
    0 8px 22px rgba(197, 160, 89, 0.12);
}

.ebd360-product-card__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: 20px;
}

.ebd360-product-card__overlay-link:focus-visible {
  outline: 2px solid var(--ebd-gold);
  outline-offset: 3px;
}

.ebd360-product-image {
  position: relative;
  background:
    radial-gradient(circle at center, rgba(197, 160, 89, 0.13), transparent 44%),
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
  padding: 34px var(--ebd-space-xl) 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  border-bottom: 1px solid var(--ebd-neutral-100);
  z-index: 2;
}

.ebd360-product-image img {
  max-height: 240px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(-8px 18px 24px rgba(15, 23, 42, 0.16));
  transition: transform 0.35s ease;
}

.ebd360-product-card:hover .ebd360-product-image img {
  transform: scale(1.03);
}

.ebd360-product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ebd-primary);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  z-index: 3;
}

.ebd360-product-content {
  position: relative;
  z-index: 2;
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.ebd360-product-brand {
  display: inline-flex;
  align-self: flex-start;
  font-size: 10px;
  color: var(--ebd-gold-hover);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 800;
  background: var(--ebd-gold-light);
  border-radius: 999px;
  padding: 5px 10px;
}

.ebd360-product-title {
  font-family: var(--ebd-font-serif);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.28;
  margin: 0;
  color: var(--ebd-primary);
  letter-spacing: -0.02em;
}

.ebd360-product-desc {
  font-size: 15px;
  color: var(--ebd-neutral-600);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ebd360-product-footer {
  display: flex;
  flex-direction: column;
  gap: var(--ebd-space-md);
  margin-top: auto;
  padding-top: var(--ebd-space-xl);
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.ebd360-product-price {
  font-weight: 800;
  font-size: 20px;
  color: var(--ebd-primary);
  line-height: 1;
}

.ebd360-product-btn {
  position: relative;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--ebd-gold) 0%, var(--ebd-gold-hover) 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(197, 160, 89, 0.32);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ebd360-product-btn:hover,
.ebd360-product-btn:focus-visible {
  background: linear-gradient(135deg, var(--ebd-gold-hover) 0%, #9f7936 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.42);
}

.ebd360-product-btn .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

/* Card único vira uma peça editorial mais forte em telas amplas. */
@media (min-width: 860px) {
  .ebd360-recommendations-grid--count-1 .ebd360-product-card {
    display: grid;
    grid-template-columns: minmax(360px, 48%) minmax(0, 1fr);
    min-height: 440px;
  }

  .ebd360-recommendations-grid--count-1 .ebd360-product-image {
    min-height: 100%;
    border-bottom: none;
    border-right: 1px solid var(--ebd-neutral-100);
    padding: 38px 42px;
  }

  .ebd360-recommendations-grid--count-1 .ebd360-product-image img {
    max-height: 350px;
    width: auto;
  }

  .ebd360-recommendations-grid--count-1 .ebd360-product-content {
    justify-content: center;
    padding: 44px 42px;
  }

  .ebd360-recommendations-grid--count-1 .ebd360-product-title {
    font-size: clamp(26px, 3vw, 34px);
    max-width: 460px;
  }

  .ebd360-recommendations-grid--count-1 .ebd360-product-desc {
    max-width: 480px;
    font-size: 16px;
    -webkit-line-clamp: 4;
  }

  .ebd360-recommendations-grid--count-1 .ebd360-product-footer {
    max-width: 320px;
    width: 100%;
    margin-top: var(--ebd-space-xl);
  }
}

/* ── Aviso de transparência ─────────────────────────────── */
.ebd360-disclosure {
  text-align: center;
  font-size: 12px;
  color: var(--ebd-neutral-400);
  border-top: 1px solid var(--ebd-neutral-100);
  padding-top: var(--ebd-space-xl);
  line-height: 1.6;
}

.ebd360-disclosure strong {
  color: var(--ebd-neutral-600);
  font-weight: 600;
}

/* ── Destaque inicial (hero) ────────────────────────────── */
.ebd-destaque-inicial {
  margin: var(--ebd-space-sm) 0 var(--ebd-space-3xl);
}

.ebd-destaque-inicial__card {
  position: relative;
  display: flex;
  gap: var(--ebd-space-2xl);
  align-items: center;
  background: #fff;
  border: 1px solid var(--ebd-neutral-200);
  border-top: 3px solid var(--ebd-gold);
  border-radius: var(--ebd-radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--ebd-shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.ebd-destaque-inicial__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ebd-shadow-lg);
}

.ebd-destaque-inicial__full-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: var(--ebd-radius-lg);
}

.ebd-destaque-inicial__full-link:focus-visible {
  outline: 2px solid var(--ebd-gold);
  outline-offset: 3px;
}

.ebd-destaque-inicial__thumb-wrap {
  flex-shrink: 0;
  width: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebd-destaque-inicial__thumb {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  border-radius: var(--ebd-radius-md);
  box-shadow: -6px 12px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease;
}

.ebd-destaque-inicial__card:hover .ebd-destaque-inicial__thumb {
  transform: scale(1.02);
}

.ebd-destaque-inicial__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.ebd-destaque-inicial__badge {
  background: var(--ebd-gold-light);
  color: var(--ebd-gold-hover);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: var(--ebd-radius-sm);
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--ebd-space-md);
}

.ebd-destaque-inicial__name {
  font-family: var(--ebd-font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--ebd-primary);
  margin: 0 0 var(--ebd-space-sm);
  font-weight: 800;
  line-height: 1.25;
}

.ebd-destaque-inicial__brand {
  color: var(--ebd-neutral-600);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: var(--ebd-space-md);
}

.ebd-destaque-inicial__desc {
  font-size: 15px;
  color: var(--ebd-neutral-600);
  margin: 0 0 var(--ebd-space-xl);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ebd-destaque-inicial__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--ebd-space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.ebd-destaque-inicial__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--ebd-neutral-600);
  font-weight: 500;
}

.ebd-destaque-inicial__benefits li svg {
  color: var(--ebd-success);
}

.ebd-destaque-inicial__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.ebd-destaque-inicial__price {
  font-size: 24px;
  font-weight: 800;
  color: var(--ebd-primary);
}

.ebd-destaque-inicial__btn {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  min-width: 220px;
  padding: 0 24px;
  background: var(--ebd-gold);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--ebd-radius-md);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.ebd-destaque-inicial__btn:hover,
.ebd-destaque-inicial__btn:focus-visible {
  background: var(--ebd-gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.35);
}

.ebd-destaque-inicial__trust {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ebd-neutral-400);
  font-size: 11px;
  font-weight: 500;
}

.ebd-destaque-inicial__btn .dashicons,
.ebd-destaque-inicial__trust .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.esp-btn .dashicons {
  width: 14px;
  height: 14px;
  font-size: 14px;
}

/* ── Sidebar product ────────────────────────────────────── */
.ebd-sidebar-widget.ebd-sidebar-product {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.ebd-sidebar-product .ebd-sidebar-widget__title {

  color: var(--ebd-neutral-500, #64748b);
  margin: 0 0 8px 0;
  padding: 0;
  font-family: var(--ebd-font-sans, inherit);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0 !important;
}



.esp-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ebd-neutral-200);
  border-radius: var(--ebd-radius-lg);
  padding: var(--ebd-space-xl);
  box-shadow: var(--ebd-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: var(--ebd-space-lg);
  overflow: hidden;
}

.esp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ebd-gold, #c49b45);
  z-index: 1;
}


.esp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ebd-shadow-md);
}

.esp-full-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: var(--ebd-radius-lg);
}

.esp-thumb-wrap {
  display: flex;
  justify-content: center;
}

.esp-thumb {
  width: 110px;
  height: auto;
  object-fit: contain;
  border-radius: var(--ebd-radius-md);
  box-shadow: -4px 8px 20px rgba(15, 23, 42, 0.1);
}

.esp-content {
  text-align: center;
}

.esp-badge {
  display: inline-block;
  background: var(--ebd-gold-light);
  color: var(--ebd-gold-hover);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 8px;
  border-radius: var(--ebd-radius-sm);
  margin-bottom: var(--ebd-space-sm);
}

.esp-title {
  color: var(--ebd-primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 var(--ebd-space-sm);
  font-family: var(--ebd-font-serif);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.esp-brand {
  display: block;
  color: var(--ebd-neutral-400);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--ebd-space-md);
}

.esp-price-wrap {
  margin-bottom: var(--ebd-space-md);
}

.esp-price {
  font-weight: 800;
  color: var(--ebd-success);
  font-size: 18px;
}

.esp-btn {
  position: relative;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 40px;
  background: var(--ebd-primary);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: var(--ebd-radius-md);
  transition: background 0.2s;
}

.esp-card:hover .esp-btn {
  background: var(--ebd-secondary);
}

/* ── Final da lição ─────────────────────────────────────── */
.ebd-end-lesson-product {
  position: relative;
  overflow: hidden;
  margin: var(--ebd-space-4xl) 0 var(--ebd-space-xl);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--ebd-neutral-200);
  border-radius: var(--ebd-radius-xl);
  background:
    radial-gradient(circle at top right, var(--ebd-gold-light), transparent 35%),
    linear-gradient(135deg, #fff 0%, var(--ebd-neutral-50) 100%);
  box-shadow: var(--ebd-shadow-md);
}

.eel-badge {
  position: absolute;
  top: 0;
  left: 24px;
  background: var(--ebd-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 14px;
  border-radius: 0 0 var(--ebd-radius-md) var(--ebd-radius-md);
}

.eel-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: var(--ebd-space-2xl);
  align-items: center;
  margin-top: 12px;
}

.eel-image-frame {
  width: 140px;
  padding: 14px;
  border-radius: var(--ebd-radius-lg);
  background: #fff;
  border: 1px solid var(--ebd-neutral-200);
  box-shadow: var(--ebd-shadow-sm);
}

.eel-image img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.eel-kicker {
  color: var(--ebd-gold-hover);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--ebd-space-sm);
}

.eel-brand {
  color: var(--ebd-neutral-400);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.eel-title {
  font-family: var(--ebd-font-serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--ebd-primary);
  margin: 0 0 var(--ebd-space-md);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eel-desc {
  max-width: 640px;
  color: var(--ebd-neutral-600);
  font-size: 16px;
  margin: 0 0 var(--ebd-space-xl);
  line-height: 1.6;
}

.eel-actions {
  display: flex;
  align-items: center;
  gap: var(--ebd-space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--ebd-space-lg);
}

.eel-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--ebd-primary);
}

.eel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding-inline: 24px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.25);
}

.eel-meta {
  display: flex;
  gap: var(--ebd-space-lg);
  flex-wrap: wrap;
  color: var(--ebd-neutral-400);
  font-size: 12px;
  font-weight: 600;
}

.eel-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.eel-meta-item .dashicons {
  color: var(--ebd-gold);
}

/* ── Home products ──────────────────────────────────────── */
.hp-products .ebd360-recommendations-grid {
  margin-bottom: var(--ebd-space-xl);
}

.hp-products__footer {
  text-align: center;
  margin: var(--ebd-space-2xl) 0 var(--ebd-space-lg);
}

/* ── Busca e comparativos ───────────────────────────────── */
.ebd-search-hero,
.ebd-comparisons-hero {
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 4vw, 48px);
  background: linear-gradient(180deg, var(--ebd-neutral-50) 0%, #fff 100%);
  border-bottom: 1px solid var(--ebd-neutral-200);
}

.ebd-search-hero h1,
.ebd-comparisons-hero h1 {
  font-family: var(--ebd-font-serif);
  font-size: clamp(32px, 4vw, 44px);
  margin: 12px 0;
  color: var(--ebd-primary);
}

.ebd-search-hero p,
.ebd-comparisons-hero p {
  color: var(--ebd-neutral-600);
  max-width: 640px;
  line-height: 1.6;
}

.ebd-search-hero__form {
  display: flex;
  gap: var(--ebd-space-md);
  margin-top: var(--ebd-space-xl);
  max-width: 600px;
}

.ebd-search-hero__form input[type="search"] {
  flex: 1;
  border: 1px solid var(--ebd-neutral-200);
  border-radius: var(--ebd-radius-md);
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--ebd-font-sans);
}

.ebd-search-results {
  padding: var(--ebd-space-4xl) 24px var(--ebd-space-6xl);
}

.ebd-search-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--ebd-space-xl);
  margin-bottom: var(--ebd-space-3xl);
}

.ebd-comparisons-page {
  padding: var(--ebd-space-4xl) 24px var(--ebd-space-6xl);
}

.ebd-comparisons-group {
  margin-bottom: var(--ebd-space-5xl);
}

.ebd-comparisons-group__header {
  text-align: center;
  margin-bottom: var(--ebd-space-2xl);
}

.ebd-comparisons-group__header h2 {
  font-family: var(--ebd-font-serif);
  font-size: 28px;
  color: var(--ebd-primary);
  margin-bottom: var(--ebd-space-sm);
}

/* ── Responsivo ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ebd-destaque-inicial__thumb-wrap { width: 140px; }
}

@media (max-width: 768px) {
  .ebd-destaque-inicial__card {
    flex-direction: column;
    text-align: center;
    gap: var(--ebd-space-xl);
  }

  .ebd-destaque-inicial__thumb-wrap {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
  }

  .ebd-destaque-inicial__content {
    max-width: 100%;
    align-items: center;
  }

  .ebd-destaque-inicial__benefits {
    justify-content: center;
  }

  .ebd-destaque-inicial__cta-wrap {
    align-items: center;
    width: 100%;
  }

  .ebd-destaque-inicial__btn {
    width: 100%;
  }

  .eel-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--ebd-space-xl);
  }

  .eel-image-frame {
    margin: 0 auto;
  }

  .eel-desc {
    margin-inline: auto;
  }

  .eel-actions,
  .eel-meta {
    justify-content: center;
  }

  .eel-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .ebd-search-hero__form {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .eel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .eel-cta {
    justify-content: center;
    width: 100%;
  }
}
