/* Verified Owners Strip */
.verified-strip {
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--surface-1, #fffbf2) 0%, var(--paper, #fff) 100%);
  border-top: 1px solid var(--line, #e2d8c8);
}

.verified-strip .section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.verified-strip .kicker {
  color: var(--primary, #A6192E);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.verified-strip h2 {
  font-family: var(--font-head, 'Fraunces', serif);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--ink, #2a1f10);
}

.verified-strip p {
  color: var(--ink-soft, #6B5A3E);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.verified-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.verified-card {
  background: var(--paper, #fff);
  border: 1px solid var(--line, #e2d8c8);
  border-radius: var(--r-md, 12px);
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  display: block;
}

.verified-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary, #A6192E);
  box-shadow: 0 4px 12px rgba(166, 25, 46, 0.08);
}

.verified-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.verified-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper-2, #f7f1e3);
}

.verified-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft, #999);
}

.verified-card-score {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-head, 'Fraunces', serif);
}

.verified-card-score.trust-score-free { background: var(--ink-soft, #6B5A3E); }
.verified-card-score.trust-score-starter { background: linear-gradient(135deg, #d4a017, #f5d76e); }
.verified-card-score.trust-score-pro { background: linear-gradient(135deg, #A6192E, #c92a44); }
.verified-card-score.trust-score-elite { background: linear-gradient(135deg, #8B6914, #E8B947, #d4a017); }

.verified-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ink, #2a1f10);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.verified-card-location {
  font-size: 0.75rem;
  color: var(--ink-soft, #6B5A3E);
  margin: 0 0 0.5rem;
}

.verified-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.verified-cta {
  text-align: center;
  margin: 1rem 0 0;
}

@media (max-width: 640px) {
  .verified-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
  }
  .verified-card {
    padding: 0.75rem;
  }
}