
.tv-package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.tv-card {
  position: relative;
  border: 1px solid #e4e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  transition: box-shadow .2s ease, transform .2s ease;
  overflow: hidden;
}

.tv-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.tv-ribbon-best {
  position: absolute;
  top: 14px;
  right: -42px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 46px;
  transform: rotate(45deg);
  box-shadow: 0 3px 8px rgba(37,99,235,.35);
  z-index: 2;
  white-space: nowrap;
}

.tv-card-header {
  margin-bottom: 12px;
}

.tv-logo-wrap {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
}

.tv-provider-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tv-card-title {
  margin: 0 0 6px 0;
  font-size: 18px;
}

.tv-price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tv-benefits {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 14px;
  color: #374151;
}

.tv-card-cta {
  display: inline-block;
  padding: 10px 16px;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
