/* =========================================
   Section #4 — Why Cucina (Features)
   ========================================= */

.section{
  padding: clamp(24px, 5vw, 56px) 0;
}

/* Use your global .section-* styles if already defined.
   Below only adds spacing that fits this section. */
.section-header.lc-features-head{
  margin-bottom: clamp(18px, 3vw, 28px);
}

.lc-features-row{
  display: flex;
  flex-wrap: wrap;
}

/* Card */
.lc-feature-card{
  background: var(--surface-0, #fff);
  border: 1px solid rgba(17,24,39,.06);
  border-radius: var(--radius-lg, 16px); /* major container */
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,.06));
  padding: 18px 18px 16px;
  margin-bottom: 16px;
  min-height: 190px; /* not fixed height; ensures balanced card height */
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

/* subtle hero-coherent glow */
.lc-feature-card::before{
  content:"";
  position:absolute;
  inset:-40% -40% auto -40%;
  height: 120px;
  background: radial-gradient(60% 80% at 30% 30%, rgba(220,38,38,.10), rgba(220,38,38,0));
  pointer-events:none;
}

.lc-feature-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md, 0 8px 30px rgba(0,0,0,.08));
  border-color: rgba(220,38,38,.22);
}

/* Icon */
.lc-feature-icon{
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md, 12px); /* nested item */
  display: grid;
  place-items: center;
  font-size: 18px;
  background: radial-gradient(120% 120% at 20% 0%, rgba(220,38,38,.10), rgba(220,38,38,.03));
  border: 1px solid rgba(220,38,38,.18);
  margin-bottom: 12px;
}

/* Typography */
.lc-feature-title{
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--ink-900, #111827);
}

.lc-feature-desc{
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--ink-700, #374151);
}

.lc-feature-proof{
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-500, #6b7280);
}

/* Footer badges */
.lc-features-foot{
  margin-top: 10px;
  text-align: center;
}

.lc-feature-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.lc-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: var(--radius-sm, 8px);
  border: 1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.7);
  color: var(--ink-700, #374151);
  font-size: 13px;
}

/* Responsive refinements */
@media (max-width: 767px){
  .lc-feature-card{
    padding: 16px;
    min-height: unset;
  }
  .lc-feature-badges{
    justify-content: flex-start;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .lc-feature-card{ transition: none; }
  .lc-feature-card:hover{ transform: none; }
}


.lc-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lc-badge .fa{
  font-size: 14px;
  color: var(--brand-600);
  opacity: .9;
}
