/* Triple Counters styles */
.tc-wrap {
  font-family: 'Cairo', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-align: center;
  margin: 10px auto;
  width: 100%;
}
.tc-wrap[data-align="start"] { text-align: start; }
.tc-wrap[data-align="end"] { text-align: end; }

.tc-heading {
  font-weight: 800;
  font-size: clamp(26px, 3vw, 44px);
  margin: 0 0 20px;
  color: #0b4a46; /* قريب من لون العنوان بالصورة */
}

.tc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 3vw, 40px);
  align-items: start;
}

.tc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
}

.tc-num {
  display: block;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: #ff6e3a; /* البرتقالي */
  line-height: 1.2;
}

.tc-title {
  margin-top: 6px;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 20px);
  color: #0b4a46; /* أخضر غامق */
}

/* موبايل: عمود واحد */
@media (max-width: 767px){
  .tc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
