/* ============================================================
   MODULE 03 — QUICK INFO BAR CSS
   ============================================================ */

.tp-info {
  background: var(--mt-white);
  border-bottom: 1px solid var(--mt-border);
  padding: 2.5rem 0;
}

.tp-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 800px;
  margin: auto;
}

.tp-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 1.75rem;
  border-right: 1px solid var(--mt-border);
}
.tp-info__item:nth-child(3) { border-right: none; }
.tp-info__item:nth-child(4),
.tp-info__item:nth-child(5),
.tp-info__item:nth-child(6) { border-top: 1px solid var(--mt-border);}

.tp-info__item:last-child {
  border-right: none;
}

.tp-info__icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(18, 103, 81, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--mt-primary);
  margin-top: 2px;
}

.tp-info__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tp-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mt-charcoal-light);
}

.tp-info__value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mt-charcoal);
  line-height: 1.3;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) and (min-width: 641px) {
  .tp-info__grid { grid-template-columns: repeat(3, 1fr); }
  .tp-info__item:nth-child(3) { border-right: none; }
  .tp-info__item:nth-child(4),
  .tp-info__item:nth-child(5),
  .tp-info__item:nth-child(6) { border-top: 1px solid var(--mt-border);}
}

@media (max-width: 640px) {
  .tp-info__grid { grid-template-columns: 1fr; }
 {# .tp-info__item { border-right: none; border-bottom: 1px solid var(--mt-border); }
  .tp-info__item:nth-child(odd) { border-right: 1px solid var(--mt-border); }
  .tp-info__item:nth-child(3) { border-right: 1px solid var(--mt-border); } #}
  .tp-info__item { border-bottom: 1px solid var(--mt-border);border-right:none; border-left: none; border-top: none; }
  .tp-info__item:last-child { border-bottom: none; }
  .tp-info__item:nth-child(4),
  .tp-info__item:nth-child(5),
  .tp-info__item:nth-child(6) { border-top: none;}
}