.waste-service-status {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding: clamp(1.5rem, 4vw, 2.2rem);
  background: #f1f5ed;
  border: 1px solid #cad7c1;
  border-right: 0.35rem solid #9fb18f;
  border-radius: 0.65rem;
}

.waste-service-status h2 {
  max-width: 26ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.15;
}

.waste-service-status > p:last-child {
  max-width: 54rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.waste-types-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.waste-type {
  min-height: 14rem;
  padding: 1.15rem;
  background: #fffefa;
  border: 1px solid var(--line);
  border-top: 0.28rem solid var(--type-accent, #9fb18f);
  border-radius: 0.55rem;
}

.household-type { --type-accent: #83bdc9; }
.bulky-type { --type-accent: #9b8eaf; }
.garden-type { --type-accent: #9fb18f; }
.construction-type { --type-accent: #dc806a; }

.waste-type > span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 750;
}

.waste-type h3 {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}

.waste-type p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.garden-pickup-panel {
  margin-top: 1.4rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #f1f5ed;
  border: 1px solid #cad7c1;
  border-radius: 0.6rem;
}

.garden-pickup-panel h3 {
  margin-bottom: 0.35rem;
}

.garden-pickup-panel p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.65;
}

.garden-pickup-panel a {
  flex: 0 0 auto;
  padding: 0.65rem 0.85rem;
  color: #fff;
  background: #246b51;
  border-radius: 0.35rem;
  font-size: 0.8rem;
  font-weight: 750;
}

.garden-pickup-panel a:hover {
  background: var(--ink);
}

.waste-warning-list {
  margin-top: 1.3rem;
  display: grid;
  border-top: 1px solid var(--line);
}

.waste-warning-list article {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: minmax(11rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.waste-warning-list h3,
.waste-warning-list p {
  margin-bottom: 0;
}

.waste-warning-list p {
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-actions li span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.map-status-note {
  margin-top: 1rem;
  padding-top: 1rem;
  display: grid;
  gap: 0.25rem;
  border-top: 1px solid var(--line);
}

.map-status-note strong {
  font-size: 0.86rem;
}

.map-status-note span {
  color: #8a6a38;
  font-size: 0.75rem;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .waste-types-grid {
    grid-template-columns: 1fr;
  }

  .waste-type {
    min-height: auto;
  }

  .garden-pickup-panel {
    align-items: start;
    flex-direction: column;
  }

  .garden-pickup-panel a {
    width: 100%;
    text-align: center;
  }

  .waste-warning-list article {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
