/* METFI Packs – Homepage Cards */
.metfi-packs-home {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 16px;
}
.metfi-packs-home__header {
  text-align: center;
  margin-bottom: 24px;
}
.metfi-packs-home__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #232323;
}
.metfi-packs-home__subtitle {
  font-size: 15px;
  color: #666;
  margin: 0;
}
.metfi-packs-home__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.metfi-pack-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px 14px 16px;
  text-decoration: none;
  color: #333;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.metfi-pack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  text-decoration: none;
  color: #333;
}
.metfi-pack-card__icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.metfi-pack-card__name {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}
.metfi-pack-card__desc {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.3;
}
.metfi-pack-card__slots {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.metfi-pack-card__discount {
  display: inline-block;
  background: #27ae60;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
}
.metfi-pack-card__cta {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  text-align: center;
}

@media (max-width: 768px) {
  .metfi-packs-home__grid {
    flex-direction: column;
    align-items: center;
  }
  .metfi-pack-card {
    width: 100%;
    max-width: 320px;
  }
}
