.spudo-operator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 420px;
  margin: 20px auto;
  padding: 22px 20px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #0F172A;
  box-sizing: border-box;
}

.spudo-operator-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
}
.spudo-operator-card-logo a {
  display: block;
  line-height: 0;
}
.spudo-operator-card-logo img {
  max-width: 180px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #FFFFFF;
}

.spudo-operator-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1;
  flex-wrap: wrap;
}
.spudo-operator-card-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 18px;
  line-height: 1;
  color: #E5E7EB;
}
.spudo-operator-card-rating-stars .spudo-star {
  position: relative;
  display: inline-block;
  line-height: 1;
  color: #E5E7EB;
}
.spudo-operator-card-rating-stars .spudo-star[data-fill="full"] {
  color: #FBBF24;
}
.spudo-operator-card-rating-stars .spudo-star[data-fill="half"]::before {
  content: '★';
  display: block;
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  color: #FBBF24;
  pointer-events: none;
}
.spudo-operator-card-rating-value {
  color: #020617;
  font-weight: 700;
}
.spudo-operator-card-rating-count {
  color: #6B7280;
  font-weight: 500;
  font-size: 13px;
}

.spudo-operator-card-discount {
  display: inline-block;
  padding: 10px 16px;
  background: #ECFDF3;
  color: #15803D;
  border: 1px solid #BBF7D0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 100%;
  box-sizing: border-box;
}

.spudo-operator-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: #16A34A;
  color: #FFFFFF !important;
  border: 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .12s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.spudo-operator-card-cta:hover {
  background: #15803D;
  color: #FFFFFF !important;
  text-decoration: none;
}

@media (max-width: 720px) {
  .spudo-operator-card {
    max-width: 100%;
    padding: 18px 14px;
    gap: 12px;
    border-radius: 12px;
  }
  .spudo-operator-card-logo img {
    max-width: 150px;
    max-height: 58px;
  }
  .spudo-operator-card-cta {
    padding: 12px 18px;
    font-size: 14px;
  }
}
