.food-db-cta-banner {
  margin: 3.5rem auto 1rem;
  padding: 0 1rem;
  max-width: 880px; /* Match the author bio width precisely */
  position: relative;
  width: 100%;
}

.food-db-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem 2.25rem;
  padding: 2.25rem 2.5rem; /* Generous padding to prevent any text clipping */
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.75) 0%, #ffffff 50%, rgba(255, 247, 237, 0.75) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.16);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05), 0 1px 3px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.food-db-cta-inner:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.32);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.09), 0 3px 6px rgba(15, 23, 42, 0.03);
}

.food-db-cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669);
  opacity: 0.85;
}

.food-db-cta-visual {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.22);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.food-db-cta-inner:hover .food-db-cta-visual {
  transform: scale(1.08) rotate(5deg);
}

.food-db-cta-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.food-db-cta-copy {
  flex: 1;
  min-width: 0;
}

.food-db-cta-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #047857; /* var(--primary-dark) */
  display: inline-block;
  line-height: 1.2;
}

.food-db-cta-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.food-db-cta-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 58ch;
}

.food-db-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.food-db-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  border-radius: var(--radius-pill);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.food-db-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
}

.food-db-cta-btn:hover::after {
  left: 125%;
  opacity: 1;
  transition: 0.75s ease-in-out;
}

.food-db-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.4);
  filter: brightness(1.04);
  color: #fff !important;
}

.food-db-cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
}

.food-db-cta-note {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .food-db-cta-banner {
    margin: 2.5rem auto 1rem;
  }
  
  .food-db-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.25rem 1.75rem;
    gap: 1.25rem;
  }
  
  .food-db-cta-visual {
    margin: 0 auto;
  }
  
  .food-db-cta-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .food-db-cta-action {
    width: 100%;
  }
  
  .food-db-cta-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .food-db-cta-inner, .food-db-cta-btn, .food-db-cta-visual {
    transition: none !important;
  }
}