.supply-section {
  padding: 90px 0;
  background: #f8f9fb;
}

.supply-card {
  position: relative;
  height: 100%;
  border: 1px solid #e8ebef;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* Override legacy theme accent bar (feature-box-02:before at left:14px) */
.supply-section .supply-card::before {
  content: none;
}

.supply-card:hover {
  border-color: #0c3d97;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.supply-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.supply-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(12, 61, 151, 0.1);
  color: #0c3d97;
  font-size: 20px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.supply-card:hover .supply-card-icon {
  background: #0c3d97;
  color: #fff;
}

.supply-card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: #232323;
}

.supply-card p {
  margin: 0;
  color: #777;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .supply-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .supply-card:hover {
    transform: none;
  }
}

@media (max-width: 767px) {
  .supply-section {
    padding: 70px 0;
  }
}
