.trex-packing {
  width: 100%;
}
.trex-packing__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .trex-packing__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .trex-packing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.trex-packing__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 16px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.trex-packing__icon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.trex-packing__icon img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 150px !important;
  object-fit: contain;
}
.trex-packing__title {
  width: 100%;
  text-align: left;
  word-break: break-word;
  color: #002438;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -0.4px;
}
