/* Operators public directory — prefix od- */

.od-page {
  padding: 48px 0 96px;
}

.od-container--narrow {
  max-width: 760px;
}

/* Header */
.od-header {
  text-align: center;
  margin-bottom: 48px;
}

.od-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hp-accent, #059669);
  margin-bottom: 12px;
}

.od-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--hp-text-dark, #0f172a);
  line-height: 1.15;
  margin: 0 0 16px;
}

.od-subtitle {
  font-size: 1.05rem;
  color: var(--hp-text-muted, #475569);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.od-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Card (browse) */
.od-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.od-card:hover {
  border-color: var(--hp-accent, #059669);
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}

.od-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hp-accent, #059669);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.od-card-body {
  flex: 1;
}

.od-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--hp-text-dark, #0f172a);
  margin-bottom: 10px;
}

.od-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.od-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.od-service-name {
  font-size: .8rem;
  font-weight: 500;
  color: var(--hp-text-dark, #334155);
}

.od-service-langs {
  font-size: .7rem;
  color: var(--hp-text-muted, #64748b);
  background: #f1f5f9;
  border-radius: 4px;
  padding: 2px 6px;
}

.od-card-cta {
  font-size: .78rem;
  font-weight: 600;
  color: var(--hp-accent, #059669);
}

/* Trust note */
.od-trust-note {
  text-align: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}

.od-trust-note p {
  font-size: .8rem;
  color: var(--hp-text-muted, #94a3b8);
}

/* Empty */
.od-empty {
  text-align: center;
  padding: 64px 0;
  color: var(--hp-text-muted, #64748b);
}

/* Breadcrumb */
.od-breadcrumb {
  margin-bottom: 28px;
}

.od-breadcrumb a {
  font-size: .875rem;
  color: var(--hp-text-muted, #64748b);
  text-decoration: none;
}

.od-breadcrumb a:hover {
  color: var(--hp-accent, #059669);
}

/* Profile card (detail) */
.od-profile-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px;
}

.od-profile-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f1f5f9;
}

.od-profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--hp-accent, #059669);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.od-profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hp-text-dark, #0f172a);
  margin: 0 0 6px;
}

.od-verified-badge {
  font-size: .72rem;
  font-weight: 600;
  color: var(--hp-accent, #059669);
  background: #ecfdf5;
  border-radius: 20px;
  padding: 3px 10px;
  letter-spacing: .03em;
}

/* Services section (detail) */
.od-services-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--hp-text-dark, #0f172a);
  margin: 0 0 16px;
}

.od-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.od-svc-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
}

.od-svc-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--hp-text-dark, #0f172a);
  margin-bottom: 8px;
}

.od-svc-detail {
  font-size: .78rem;
  color: var(--hp-text-muted, #64748b);
  margin-top: 4px;
}

.od-svc-label {
  font-weight: 500;
  color: var(--hp-text-dark, #334155);
  margin-right: 3px;
}

/* Contact CTA (detail) */
.od-contact-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.od-contact-note p {
  font-size: .875rem;
  color: var(--hp-text-muted, #64748b);
  margin: 0 0 14px;
  line-height: 1.6;
}

.od-cta-btn {
  display: inline-block;
  background: var(--hp-accent, #059669);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s;
}

.od-cta-btn:hover {
  opacity: .88;
  color: #fff;
}

.od-no-services {
  font-size: .875rem;
  color: var(--hp-text-muted, #64748b);
  margin: 0 0 28px;
}

/* Responsive */
@media (max-width: 640px) {
  .od-grid {
    grid-template-columns: 1fr;
  }

  .od-profile-card {
    padding: 20px 16px;
  }

  .od-services-grid {
    grid-template-columns: 1fr;
  }
}
