/* ============================================================
   home-madenitaly.css — Sezione Made in Italy + masonry
   ============================================================ */
.no-ice-madenitaly {
  background: var(--color-dark);
  padding: var(--space-16) var(--space-6);
  color: var(--color-white);
}

.no-ice-madenitaly__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.no-ice-madenitaly__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.no-ice-madenitaly__title {
  font-family: var(--font-heading) !important;
  font-size: var(--size-3xl) !important;
  font-weight: var(--weight-black) !important;
  text-transform: uppercase;
  color: var(--color-white) !important;
  margin: 0 !important;
}

.no-ice-flag {
  display: inline-flex;
  overflow: hidden;
  border-radius: var(--radius-sm);
  width: 36px;
  height: 24px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.no-ice-flag span { flex: 1; }
.no-ice-flag span:nth-child(1) { background: #009246; }
.no-ice-flag span:nth-child(2) { background: #ffffff; }
.no-ice-flag span:nth-child(3) { background: #ce2b37; }

.no-ice-masonry {
  columns: 3;
  column-gap: var(--space-4);
}

.no-ice-masonry__item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.no-ice-masonry__item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.no-ice-masonry__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .no-ice-masonry { columns: 2; }
}
@media (max-width: 768px) {
  .no-ice-masonry { columns: 1; }
}
