/**
 * @file
 * File: web/themes/custom/awtur/css/personal/node/bedrijf-troef.css
 *
 * Compact, always-readable location highlights.
 */

.troevenicons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 8.5rem), 1fr));
  gap: clamp(0.65rem, 0.48rem + 0.65vw, 1rem);
  margin: clamp(1.25rem, 0.75rem + 2vw, 2.5rem) 0;
  padding: 0;
  list-style: none;
}

.troeve {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  min-width: 0;
  min-height: 3.75rem;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(36, 108, 101, 0.18);
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #ffffff, #e9f4f1);
  color: #24353d;
  box-shadow: 0 0.25rem 0.75rem rgba(23, 39, 47, 0.07);
}

.troeve:nth-child(3n + 2) {
  border-color: rgba(166, 111, 0, 0.2);
  background: linear-gradient(135deg, #ffffff, #fff8e8);
}

.troeve:nth-child(3n + 3) {
  border-color: rgba(185, 93, 77, 0.18);
  background: linear-gradient(135deg, #ffffff, #fbedeb);
}

.troeve img {
  display: block;
  width: clamp(2.25rem, 1.9rem + 1.1vw, 3rem);
  height: clamp(2.25rem, 1.9rem + 1.1vw, 3rem);
  object-fit: contain;
}

.troeve-text {
  min-width: 0;
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@media (max-width: 30rem) {
  .troevenicons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .troeve {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
