/* ==================================================
   OFFERTE — STILE RITUALE (SAFE)
   Isolato · Simbolico · Non invasivo
================================================== */

/* ===============================
   ROOT
================================ */

.necrologio-offerte,
.offerte {
  margin-top: var(--space-lg);
  text-align: center;
}

/* titolo (NO capolettera globale) */
.offerte h2 {
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
  text-shadow: none;
}

.offerte h2::first-letter {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* ===============================
   GRID
================================ */

.offerte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 128px));
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
}

/* ===============================
   OFFERTA (CARD)
================================ */

.offerta {
  position: relative;
  width: 128px;
  height: 128px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  cursor: pointer;

  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);

  box-shadow:
    0 6px 18px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.6);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    opacity .2s ease;
}

/* evita eredità link */
.offerta,
.offerta * {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   ICONA
================================ */

.offerta img {
  max-width: 100%;
  max-height: 100%;
  pointer-events: none;
}

/* ===============================
   HOVER
================================ */

.offerta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 30px rgba(0,0,0,.28),
    0 0 18px rgba(201,162,77,.45);
}

/* ===============================
   STATO PRESENTE (persistente)
================================ */

.offerta.is-present {
  box-shadow:
    0 0 0 1px rgba(201,162,77,.45),
    0 0 22px rgba(201,162,77,.55),
    0 12px 30px rgba(0,0,0,.25);
}

/* ===============================
   CONTATORE
================================ */

.offerta-count {
  position: absolute;
  bottom: 6px;
  right: 8px;

  font-size: .75rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 10px;

  background: radial-gradient(
    circle at top,
    rgba(201,162,77,.95),
    rgba(122,30,43,.85)
  );

  color: #fff;

  box-shadow:
    0 0 10px rgba(201,162,77,.6),
    0 2px 6px rgba(0,0,0,.35);
}

/* ===============================
   CLICK FEEDBACK
================================ */

.offerta.is-active {
  transform: scale(0.96);
  opacity: .9;
}

/* ===============================
   ACCESSIBILITY
================================ */

.offerta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(201,162,77,.35),
    0 0 18px rgba(201,162,77,.55);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 480px) {
  .offerte-grid {
    gap: 20px;
  }
}
