/*
 * Ostoja — Benefits bento widget.
 * Section-specific layout: 3-col grid with one big forest card spanning 2 rows,
 * blurred gold glow, glass stat tiles. Reuses shared .ost-forest / .ost-card.
 */

.ost-bento-wrap { background: color-mix(in oklab, var(--ost-sage) 30%, var(--ost-cream)); }

.ost-bento__head { margin-bottom: 3.5rem; }

.ost-bento__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .ost-bento__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Big forest card */
.ost-bento__big {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 2.5rem;
}
@media (min-width: 1024px) {
  .ost-bento__big { grid-column: span 1; grid-row: span 2; }
}

.ost-bento__glow {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  height: 18rem;
  width: 18rem;
  border-radius: 9999px;
  background: color-mix(in oklab, var(--ost-gold) 30%, transparent);
  filter: blur(64px);
  pointer-events: none;
}

.ost-bento__big-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--ost-gold);
  margin-bottom: 2rem;
}

.ost-bento__big-title {
  position: relative;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  color: var(--ost-cream); /* #f3f0e9 — overrides the theme's dark h3 color on the forest card */
}

.ost-bento__big-text {
  position: relative;
  margin: 1rem 0 0;
  max-width: 20rem;
  color: color-mix(in oklab, var(--ost-cream) 80%, transparent);
  line-height: 1.6;
}

.ost-bento__tiles {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.ost-bento__tile {
  border-radius: 1rem;
  padding: 1rem;
  background: color-mix(in oklab, var(--ost-cream) 10%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in oklab, var(--ost-cream) 15%, transparent);
}

.ost-bento__tile-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in oklab, var(--ost-cream) 60%, transparent);
}

.ost-bento__tile-value {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Small cards */
.ost-bento__card { padding: 1.75rem; border-radius: 1.5rem; }

.ost-bento__card-icon { margin-bottom: 1.25rem; border-radius: 9999px; } /* fully rounded (circle) */

.ost-bento__card-title { font-size: 1rem; font-weight: 600; margin: 0; }

.ost-bento__card-text {
  margin: 0.375rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ost-muted-foreground);
}
