/* ================= EQUIPMENT PAGE ================= */
.equipment-page {

  background: #ffffff;
  padding-top: 140px;   
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 120px;
  
}

/* HEADER */
.equipment-header {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
  
}

.equipment-badge {
  display: inline-block;
  background: #eef2ff;
  color: #1e3a8a;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
   position: relative;
  z-index: 2;
}

.equipment-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.equipment-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.equipment-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

/* CARD */
.equipment-card {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: 0.35s ease;
}

.equipment-card img {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
}

.equipment-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.equipment-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

/* HOVER EFFECT (SUBTLE) */
.equipment-card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
  box-shadow: 0 14px 30px rgba(37,99,235,0.18);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .equipment-header h2 {
    font-size: 30px;
  }
}
