:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --border: #dbe3ee;
  --brand: #1d4ed8;
  --brand-strong: #1e40af;
  --ok: #166534;
  --ok-bg: #dcfce7;
  --error: #991b1b;
  --error-bg: #fee2e2;
  --info: #0f766e;
  --info-bg: #ccfbf1;
  --radius: 12px;
}

.hosting-assistant-page {
  --assistant-accent: #fe6700;
  --assistant-accent-strong: #c2410c;
  --assistant-accent-soft: #fff4ed;
  background:
    linear-gradient(135deg, rgba(254, 103, 0, 0.09), rgba(37, 99, 235, 0.06) 44%, rgba(254, 103, 0, 0.08)),
    #f8fafc;
  padding: 2.4rem 0 3rem;
}

.hosting-assistant-shell {
  display: grid;
  gap: 1.4rem;
}

.hosting-assistant-page [hidden] {
  display: none !important;
}

.hosting-assistant-page .hosting-assistant-results-view[hidden] {
  display: none !important;
}

.hosting-assistant-head {
  max-width: 820px;
}

.hosting-assistant-head h1 {
  margin: 0.35rem 0 0.5rem;
}

.hosting-assistant-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.hosting-assistant-panel,
.hosting-assistant-summary,
.hosting-assistant-notes,
.hosting-assistant-noscript {
  border-radius: 8px;
}

.hosting-assistant-progress {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--assistant-accent-strong);
  font-weight: 700;
}

.hosting-assistant-progress-track {
  height: 0.48rem;
  border-radius: 999px;
  background: #dbeafe;
  overflow: hidden;
}

.hosting-assistant-progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--assistant-accent), #2563eb);
  transition: width 0.18s ease;
}

.hosting-assistant-step fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.hosting-assistant-step legend {
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.hosting-assistant-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hosting-assistant-option-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hosting-assistant-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
}

.hosting-assistant-option:hover,
.hosting-assistant-option:focus-within {
  border-color: var(--assistant-accent);
  box-shadow: 0 0 0 3px rgba(254, 103, 0, 0.14);
}

.hosting-assistant-option:has(input:checked) {
  border-color: var(--assistant-accent);
  background: var(--assistant-accent-soft);
  box-shadow: 0 0 0 1px rgba(254, 103, 0, 0.16);
}

.hosting-assistant-option input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--assistant-accent);
}

.hosting-assistant-page .hosting-assistant-platform-filter {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.85rem;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: var(--assistant-accent-soft);
  color: #7c2d12;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.hosting-assistant-page .hosting-assistant-platform-filter::before,
.hosting-assistant-page .hosting-assistant-platform-filter::after,
.hosting-assistant-page .hosting-assistant-platform-filter span::before,
.hosting-assistant-page .hosting-assistant-platform-filter span::after {
  display: none !important;
  content: none !important;
}

.hosting-assistant-page .hosting-assistant-platform-filter input[type="checkbox"] {
  all: revert;
  box-sizing: border-box;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  display: inline-block !important;
  position: static !important;
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
  padding: 0;
  border: initial;
  border-radius: initial;
  background: initial;
  opacity: 1 !important;
  visibility: visible !important;
  accent-color: #fe6700;
  cursor: pointer;
  transform: none;
}

.hosting-assistant-page .hosting-assistant-platform-filter:focus-within {
  border-color: var(--assistant-accent);
  box-shadow: 0 0 0 3px rgba(254, 103, 0, 0.14);
}

.hosting-assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hosting-assistant-error {
  margin: 0 0 0.8rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  background: #fffbeb;
  color: #92400e;
  font-weight: 700;
}

.hosting-assistant-page .hosting-assistant-result-type {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #7c2d12;
  font-weight: 800;
}

.hosting-assistant-page .badge:not(.badge-muted) {
  background: #fff4ed;
  color: #9a3412;
}

.hosting-assistant-side-list {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.hosting-assistant-result-links,
.hosting-assistant-fallback-links {
  display: grid;
  gap: 0.65rem;
}

.hosting-assistant-results {
  display: grid;
  gap: 1rem;
  border-radius: 8px;
  background: #ffffff;
}

.hosting-assistant-results[hidden] {
  display: none;
}

.hosting-assistant-results-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.hosting-assistant-results-head h2 {
  margin: 0.25rem 0;
}

.hosting-assistant-results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.hosting-assistant-results .hosting-assistant-result-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hosting-assistant-link-card {
  display: grid;
  gap: 0.45rem;
  padding: 0.75rem;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #ffffff;
}

.hosting-assistant-link-card .btn {
  justify-self: start;
}

.hosting-assistant-link-card p {
  margin-bottom: 0;
}

.hosting-assistant-secondary-fieldset {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dbeafe;
}

.hosting-assistant-result-block {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
}

.hosting-assistant-result-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.hosting-assistant-block-head {
  display: grid;
  gap: 0.2rem;
}

.hosting-assistant-block-head h3 {
  margin: 0;
  color: #7c2d12;
}

.hosting-assistant-block-head p {
  margin: 0;
}

.hosting-assistant-page .hosting-assistant-view-toggle {
  display: none;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  margin: 0.1rem 0 0.2rem;
  padding: 0.22rem;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
}

.hosting-assistant-page .hosting-assistant-shell.is-view-ready .hosting-assistant-view-toggle {
  display: flex;
}

.hosting-assistant-page .hosting-assistant-view-toggle-btn {
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9a3412;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.hosting-assistant-page .hosting-assistant-view-toggle-btn:hover,
.hosting-assistant-page .hosting-assistant-view-toggle-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(254, 103, 0, 0.14);
  outline: none;
}

.hosting-assistant-page .hosting-assistant-view-toggle-btn.is-active {
  background: var(--assistant-accent);
  color: #ffffff;
}

.hosting-assistant-offer-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

.hosting-assistant-offer-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.92rem;
}

.hosting-assistant-col-offer {
  width: 26%;
}

.hosting-assistant-col-specs {
  width: 34%;
}

.hosting-assistant-col-reasons {
  width: 22%;
}

.hosting-assistant-col-price-action {
  width: 18%;
}

.hosting-assistant-offer-table th,
.hosting-assistant-offer-table td {
  padding: 0.68rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: middle;
}

.hosting-assistant-offer-table th {
  background: var(--assistant-accent-soft);
  color: #7c2d12;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hosting-assistant-offer-table tbody tr:last-child td {
  border-bottom: 0;
}

.hosting-assistant-table-title,
.hosting-assistant-table-provider,
.hosting-assistant-table-category,
.hosting-assistant-table-badges {
  display: block;
}

.hosting-assistant-table-title {
  margin-bottom: 0.25rem;
}

.hosting-assistant-table-provider {
  color: var(--muted);
  font-size: 0.86rem;
}

.hosting-assistant-table-category {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.42rem;
  padding: 0.18rem 0.46rem;
  border-radius: 999px;
  background: var(--assistant-accent-soft);
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 800;
}

.hosting-assistant-table-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.4rem;
}

.hosting-assistant-spec-chips,
.hosting-assistant-table-reasons {
  margin: 0;
  padding: 0;
}

.hosting-assistant-spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.hosting-assistant-spec-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.24rem 0.5rem;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.hosting-assistant-table-reasons {
  display: grid;
  gap: 0.22rem;
  margin: 0;
  color: #334155;
  line-height: 1.38;
}

.hosting-assistant-table-reasons span {
  display: block;
}

.hosting-assistant-price-action-cell {
  white-space: nowrap;
}

.hosting-assistant-price-action {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
}

.hosting-assistant-table-price {
  color: #0f172a;
  font-size: 0.98rem;
}

.hosting-assistant-table-action {
  border-color: #2563eb;
  background: #2563eb;
  white-space: nowrap;
}

.hosting-assistant-table-action:hover,
.hosting-assistant-table-action:focus-visible {
  border-color: #1d4ed8;
  background: #1d4ed8;
}

.hosting-assistant-offer-grid,
.hosting-assistant-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hosting-assistant-offer-card,
.hosting-assistant-provider-card {
  display: grid;
  gap: 0.7rem;
  padding: 0.85rem;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: #ffffff;
}

.hosting-assistant-card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: flex-start;
}

.hosting-assistant-card-head h3,
.hosting-assistant-provider-card h3 {
  margin: 0.1rem 0 0;
}

.hosting-assistant-meta {
  margin: 0;
  color: var(--assistant-accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hosting-assistant-price {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e40af;
  font-weight: 800;
  white-space: nowrap;
}

.hosting-assistant-spec-chips-cards,
.hosting-assistant-reason-list {
  margin: 0;
}

.hosting-assistant-reason-list {
  display: grid;
  gap: 0.3rem;
  padding-left: 1.1rem;
  color: #334155;
}

.hosting-assistant-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hosting-assistant-notes {
  background: #ffffff;
}

.hosting-assistant-notes h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hosting-assistant-layout {
    grid-template-columns: 1fr;
  }

  .hosting-assistant-option-grid,
  .hosting-assistant-option-grid-compact,
  .hosting-assistant-offer-grid,
  .hosting-assistant-provider-grid,
  .hosting-assistant-results .hosting-assistant-result-links {
    grid-template-columns: 1fr;
  }

  .hosting-assistant-results-head {
    flex-direction: column;
  }

  .hosting-assistant-results-actions,
  .hosting-assistant-results-actions .btn {
    width: 100%;
  }

  .hosting-assistant-view-toggle {
    width: 100%;
  }

  .hosting-assistant-view-toggle-btn {
    flex: 1 1 0;
  }

  .hosting-assistant-offer-table {
    min-width: 920px;
  }

  .hosting-assistant-card-head {
    flex-direction: column;
  }

  .hosting-assistant-price {
    white-space: normal;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.container {
  width: min(1320px, calc(100% - 1.4rem));
  margin-inline: auto;
}

.offers-page {
  width: min(1320px, calc(100% - 1.4rem));
}

.news-detail-page {
  width: min(1320px, calc(100% - 1.4rem));
}

.news-preview-notice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  align-items: center;
  border-color: #f59e0b;
  background: #fffbeb;
  color: #92400e;
}

.news-preview-notice strong {
  color: #78350f;
}

.news-detail-page .prose blockquote {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-left: 4px solid #2563eb;
  background: #f8fafc;
  color: #1f2937;
}

.news-detail-page .prose blockquote p {
  margin: 0.35rem 0;
}

.news-detail-page .prose figure {
  margin: 1.15rem 0;
}

.news-detail-page .prose figure img {
  display: block;
  width: 100%;
  max-width: 920px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  background: #f8fafc;
}

.news-detail-page .prose figure a {
  display: inline-block;
  max-width: 100%;
}

.news-detail-page .prose figcaption {
  margin-top: 0.45rem;
  color: #64748b;
  font-size: 0.9rem;
}

.news-rich-editor {
  display: grid;
  gap: 0.45rem;
}

.news-rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.news-rich-toolbar-btn {
  min-height: 2.15rem;
  padding: 0.38rem 0.62rem;
  line-height: 1.1;
  white-space: nowrap;
}

.news-rich-editor textarea {
  min-height: 15rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.news-rich-editor-status {
  min-height: 1.25rem;
  margin: 0;
}

.news-rich-editor-status-error {
  color: #b91c1c;
  font-weight: 700;
}

.admin-news-status-display {
  min-height: 2.45rem;
  margin: 0;
  display: flex;
  align-items: center;
}

.news-category-inline-form {
  min-width: 220px;
  gap: 0.35rem;
}

.news-category-inline-form label {
  margin-top: 0.15rem;
}

.news-index-hero {
  display: grid;
  gap: 0.35rem;
}

.news-index-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.news-index-hero-head h1 {
  margin: 0;
}

.news-index-subline {
  margin: 0;
}

.news-index-filter-card {
  display: grid;
  gap: 0.75rem;
}

.news-index-filter-head h2 {
  margin: 0;
}

.news-index-filter-head p {
  margin: 0.2rem 0 0;
}

.news-index-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 280px) minmax(0, 240px);
  gap: 0.75rem;
}

.news-index-result-line {
  margin: 0.85rem 0 0;
}

.news-post-grid {
  margin-top: 0.75rem;
}

.news-post-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-post-image-link {
  display: block;
  background: #f1f5f9;
}

.news-post-image {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
}

.news-post-body {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 230px;
  flex: 1 1 auto;
}

.news-post-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.news-post-date {
  font-size: 0.8rem;
}

.news-post-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.news-post-excerpt {
  margin: 0;
  color: #334155;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.news-post-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.news-post-provider {
  margin: 0;
  font-size: 0.83rem;
}

.faq-page {
  width: min(1340px, calc(100% - 1.4rem));
}

.faq-detail-page {
  width: min(1180px, calc(100% - 1.4rem));
}

.faq-hero {
  display: grid;
  gap: 0.45rem;
}

.faq-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.faq-hero-head h1 {
  margin: 0;
}

.faq-hero-subline {
  margin: 0;
}

.faq-filter-card {
  display: grid;
  gap: 0.85rem;
}

.faq-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
  gap: 0.75rem;
}

.faq-category-chip-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.02rem;
}

.faq-category-chip-list .chip-btn {
  text-decoration: none;
}

.faq-category-chip-list .chip-btn.is-active {
  border-color: #1d4ed8;
  background: #e6efff;
  color: #1d4ed8;
}

.faq-results-line {
  margin: 0.95rem 0 0;
}

.faq-list-cards {
  margin-top: 0.75rem;
}

.faq-list-item {
  display: grid;
  gap: 0.55rem;
}

.faq-list-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.faq-list-item-title {
  margin: 0;
  font-size: 1.07rem;
  line-height: 1.35;
}

.faq-list-item-preview {
  margin: 0;
  color: #334155;
}

.faq-list-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.faq-inline-ad {
  display: grid;
  gap: 0.55rem;
  border-style: dashed;
  background: #f8fbff;
}

.faq-inline-ad-placeholder {
  border: 1px dashed #c7d6ed;
  border-radius: 10px;
  padding: 1rem;
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  text-align: center;
  color: #475569;
}

.faq-inline-ad-placeholder strong {
  color: #0f172a;
}

.faq-inline-ad-placeholder span {
  font-size: 0.9rem;
}

.faq-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.faq-detail-card h1 {
  margin-top: 0.45rem;
}

.faq-detail-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.faq-answer-sections {
  display: grid;
  gap: 1rem;
}

.faq-answer-section h2 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.faq-answer-fallback p {
  margin: 0 0 0.75rem;
}

.faq-related-list {
  display: grid;
  gap: 0.3rem;
}

.row {
  display: flex;
}

.between {
  justify-content: space-between;
}

.center {
  align-items: center;
}

.wrap {
  flex-wrap: wrap;
}

.gap-xs { gap: 0.5rem; }
.gap-sm { gap: 0.75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  min-height: 86px;
}

.brand {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 55px;
  display: block;
}

.brand span {
  color: var(--brand);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a,
.main-nav-dropdown-summary {
  color: #334155;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.94rem;
  min-height: 32px;
  padding: 0.25rem 0.55rem;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav-dropdown-summary:hover {
  background: #f8fafc;
  color: var(--text);
}

.main-nav a.active,
.main-nav-dropdown.active > .main-nav-dropdown-summary {
  color: var(--text);
}

.main-nav .main-nav-cta {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.main-nav .main-nav-cta:hover {
  background: #dbeafe;
  color: #1e3a8a;
}

.main-nav-dropdown {
  position: relative;
}

.main-nav-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.main-nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.main-nav-dropdown-summary {
  gap: 0.32rem;
}

.main-nav-dropdown-summary::after {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  height: 0.36rem;
  margin-top: -0.18rem;
  transform: rotate(45deg);
  width: 0.36rem;
}

.main-nav-dropdown[open] .main-nav-dropdown-summary::after {
  margin-top: 0.18rem;
  transform: rotate(225deg);
}

.main-nav-dropdown-list {
  position: absolute;
  left: 0;
  top: calc(100% + 0.38rem);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
  padding: 0.35rem;
  z-index: 45;
}

.main-nav-dropdown-list a {
  border-radius: 8px;
  display: block;
  min-height: auto;
  padding: 0.45rem 0.6rem;
}

.main-nav-dropdown-list a:hover,
.main-nav-dropdown-list a.active {
  background: #f8fafc;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-login-link,
.header-register-btn {
  min-height: 36px;
  padding: 0.46rem 0.74rem;
  white-space: nowrap;
}

.header-legal-link {
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.35rem 0.28rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-legal-link:hover {
  color: var(--text);
}

.header-register-label-mobile {
  display: none;
}

.site-nav-menu {
  position: relative;
  display: none;
}

.site-nav-menu summary {
  list-style: none;
}

.site-nav-menu summary::-webkit-details-marker {
  display: none;
}

.site-nav-summary {
  min-width: 82px;
}

.site-nav-list {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
  padding: 0.35rem;
  z-index: 42;
}

.site-nav-link {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  color: #334155;
  font-weight: 600;
  text-decoration: none;
}

.site-nav-link:hover {
  background: #f8fafc;
  text-decoration: none;
}

.site-nav-link.active,
.site-nav-link.main-nav-cta {
  background: #eff6ff;
  color: #1d4ed8;
}

.site-nav-submenu {
  margin: 0;
}

.site-nav-submenu summary {
  cursor: pointer;
  list-style: none;
}

.site-nav-submenu summary::-webkit-details-marker {
  display: none;
}

.site-nav-submenu-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.site-nav-submenu-summary::after {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  height: 0.36rem;
  transform: rotate(45deg);
  width: 0.36rem;
}

.site-nav-submenu[open] .site-nav-submenu-summary::after {
  transform: rotate(225deg);
}

.site-nav-submenu-list {
  border-left: 1px solid #e2e8f0;
  margin: 0.2rem 0 0.35rem 0.45rem;
  padding-left: 0.35rem;
}

.site-nav-subitem {
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav-login-link {
  border-top: 1px solid #e2e8f0;
  margin-top: 0.25rem;
  padding-top: 0.6rem;
}

.site-nav-primary-link {
  background: var(--primary);
  color: #fff;
}

.site-nav-primary-link:hover {
  background: #1d4ed8;
  color: #fff;
}

.account-menu {
  position: relative;
}

.account-menu summary {
  list-style: none;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-menu-summary {
  min-width: 88px;
}

.account-menu-list {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
  padding: 0.35rem;
  z-index: 40;
}

.account-menu-link {
  display: block;
  padding: 0.42rem 0.6rem;
  border-radius: 8px;
  color: #334155;
  font-weight: 600;
  text-decoration: none;
}

.account-menu-link:hover {
  background: #f8fafc;
  text-decoration: none;
}

.account-menu-form {
  display: block;
  margin: 0;
}

.account-menu-button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.92rem;
}

.provider-nav-card {
  margin-bottom: 1rem;
  padding: 0.65rem;
}

.provider-nav-list {
  display: grid;
  gap: 0.72rem;
}

.provider-side {
  border: 1px solid #d8e3f3;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0.72rem;
}

/* Safety net: if a view accidentally renders the provider nav twice, keep only one. */
.provider-shell .provider-side + .provider-side {
  display: none;
}

.provider-side-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.provider-side-header p {
  margin: 0.28rem 0 0.2rem;
  color: #64748b;
  font-size: 0.82rem;
}

.provider-nav-group {
  border-top: 1px solid #e2e8f0;
  padding-top: 0.56rem;
}

.provider-nav-group:first-child {
  border-top: 0;
  padding-top: 0.2rem;
}

.provider-nav-group-title {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  color: #64748b;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.provider-nav-group-items {
  display: grid;
  gap: 0.34rem;
}

.provider-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.56rem;
  border: 1px solid #dbe4f2;
  border-radius: 10px;
  color: #334155;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  background: #ffffff;
}

.provider-nav-icon {
  display: inline-grid;
  place-items: center;
  min-width: 1.45rem;
  height: 1.45rem;
  border-radius: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  font-weight: 800;
  border: 1px solid #c9d6ea;
  color: #475569;
  background: #f8fafc;
}

.provider-nav-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.provider-nav-link:hover {
  text-decoration: none;
  border-color: #b8c9e6;
  box-shadow: 0 6px 16px rgba(30, 41, 59, 0.08);
  background: #f8fbff;
}

.provider-nav-link.active {
  border-color: #99b6ea;
  background: linear-gradient(90deg, #eff5ff 0%, #e7f0ff 100%);
  color: #1e3a8a;
}

.provider-nav-link.active .provider-nav-icon {
  border-color: #8eaee9;
  color: #1d4ed8;
  background: #dbeafe;
}

.provider-nav-link.active::before {
  content: '';
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: #2563eb;
  margin-right: 0.08rem;
}

.provider-nav-link-disabled {
  cursor: default;
  color: #64748b;
  background: #f8fafc;
}

.provider-nav-link-disabled .provider-nav-icon {
  color: #94a3b8;
  background: #f8fafc;
}

.provider-nav-hint {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.page-main {
  flex: 1 0 auto;
  min-height: 0;
  padding-bottom: 2rem;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5ff 100%);
  border-bottom: 1px solid var(--border);
}

.grid-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
  padding: 3rem 0;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.2;
}

.hero p {
  margin-bottom: 1.1rem;
  color: #334155;
}

.hero-search {
  margin-top: 1rem;
}

.hero-search h2 {
  margin: 0;
  font-size: 1.02rem;
}

.home-hero-card {
  max-width: 760px;
  width: 100%;
}

.hero-assistant-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border-color: rgba(254, 103, 0, 0.3);
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 55%, #eef6ff 100%);
}

.hero-assistant-cta h2 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.18rem;
  line-height: 1.3;
}

.hero-assistant-cta p {
  margin: 0;
}

.hero-assistant-cta .btn {
  white-space: nowrap;
}

.home-mini-assistant {
  background: #f8fafc;
  border-color: #dbe3ee;
}

.home-mini-assistant .eyebrow {
  margin-bottom: 0;
}

.home-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.home-sidebar-card {
  min-width: 0;
}

.home-newsletter-inline {
  margin-top: 0;
}

.home-newsletter-inline h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.newsletter-inline-form {
  gap: 0.6rem;
}

.home-sidebar-news {
  display: grid;
  gap: 0.75rem;
}

.home-sidebar-news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-sidebar-news-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.home-sidebar-news-head a {
  white-space: nowrap;
}

.home-sidebar-news-list {
  display: grid;
  gap: 0.6rem;
}

.home-sidebar-news-item {
  padding-top: 0.62rem;
  border-top: 1px solid #e2e8f0;
}

.home-sidebar-news-item p,
.home-sidebar-news-item h4 {
  margin: 0;
}

.home-sidebar-news-item h4 {
  margin-top: 0.12rem;
  font-size: 0.98rem;
  line-height: 1.35;
}

.newsletter-consent-row {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  line-height: 1.4;
  color: #334155;
  font-weight: 600;
}

.newsletter-consent-row input[type="checkbox"] {
  width: auto;
  margin: 0.15rem 0 0;
  flex: 0 0 auto;
}

.newsletter-consent-row span {
  display: block;
  min-width: 0;
}

.newsletter-legal-links {
  margin: 0.1rem 0 0.15rem;
}

.offer-price-label {
  margin: 0.25rem 0 0.1rem;
  font-size: 0.8rem;
}

.offer-price-main {
  margin-top: 0.05rem;
  font-size: 1.2rem;
}

.home-section-subtitle {
  margin: 0.35rem 0 0;
  max-width: 62ch;
}

.home-news-grid .card,
.home-provider-card {
  height: 100%;
}

.home-offer-grid {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.home-offer-view-root {
  display: grid;
  gap: 1rem;
}

.home-provider-view-root,
.home-news-view-root {
  display: grid;
  gap: 0.85rem;
}

.home-section-head-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
}

.home-offer-view-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-section-view-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-offer-view-switch .btn,
.home-provider-view-switch .btn,
.home-news-view-switch .btn {
  cursor: pointer;
}

[data-home-offer-view-panel][hidden],
[data-home-provider-view-panel][hidden],
[data-home-news-view-panel][hidden] {
  display: none !important;
}

[data-home-offer-view-switch][hidden],
[data-home-provider-view-switch][hidden],
[data-home-news-view-switch][hidden] {
  display: none !important;
}

.home-offer-section + .home-offer-section {
  margin-top: 1.2rem;
}

.home-offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  min-height: 100%;
}

.home-badge-verified-provider {
  border-color: #b3dcc3;
  background: #e9f8ef;
  color: #1f6938;
}

.home-badge-money-back {
  border-color: #b9e0ca;
  background: #edf9f2;
  color: #236c3e;
}

.home-badge-platform-owned {
  border-color: #ead4a4;
  background: #fff6e3;
  color: #78551e;
}

.home-badge-test-account {
  border-color: #cddcf4;
  background: #f3f7ff;
  color: #2f4f86;
}

.home-offer-badge-zone {
  min-height: 5.35rem;
  display: grid;
  gap: 0.22rem;
  align-content: start;
}

.home-offer-title {
  margin: 0.08rem 0 0.02rem;
  line-height: 1.25;
  min-height: 1.9rem;
}

.home-offer-title a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-offer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.05rem;
}

.home-offer-summary {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
  line-height: 1.35;
}

.home-offer-facts {
  margin: 0.05rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.42rem;
  min-height: 6.65rem;
  align-content: start;
}

.home-offer-fact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  border: 1px solid #dbe4f1;
  border-radius: 9px;
  background: #f8fbff;
  padding: 0.3rem 0.46rem;
  min-width: 0;
  font-size: 0.77rem;
  line-height: 1.25;
  color: #1f2937;
  min-height: 2.05rem;
}

.home-offer-fact-label {
  color: #475569;
  white-space: nowrap;
}

.home-offer-fact-value {
  font-weight: 600;
  min-width: 0;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-offer-table-card {
  margin-top: 0.8rem;
}

.home-offer-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.offers-table-view.home-offer-table {
  min-width: 940px;
}

.home-offer-table col.home-offer-table-col-tariff {
  width: 21%;
}

.home-offer-table col.home-offer-table-col-provider {
  width: 14%;
}

.home-offer-table col.home-offer-table-col-category {
  width: 12%;
}

.home-offer-table col.home-offer-table-col-facts {
  width: 18%;
}

.home-offer-table col.home-offer-table-col-trust {
  width: 18%;
}

.home-offer-table col.home-offer-table-col-price {
  width: 10%;
}

.home-offer-table col.home-offer-table-col-action {
  width: 7%;
}

.home-offer-table .offers-table-badges {
  margin-top: 0.38rem;
}

.forum-bbcode-quote {
  margin: 0.65rem 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid #c7d9f7;
  border-left: 4px solid #60a5fa;
  background: #eef4ff;
  border-radius: 8px;
  color: #1f2937;
}

.forum-bbcode-quote-author {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e3a8a;
}

.forum-bbcode-code {
  margin: 0.65rem 0;
  padding: 0.72rem 0.85rem;
  border-radius: 8px;
  background: #0f172a;
  color: #e2e8f0;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.85rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.forum-bbcode-code code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.forum-bbcode-list {
  margin: 0.55rem 0 0.55rem 1.2rem;
  padding: 0;
}

.forum-bbcode-list li {
  margin: 0.2rem 0;
}

.forum-bbcode-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.65rem 0;
  border: 1px solid #dbe3ee;
}

.forum-post {
  border: 1px solid #d9e1ec;
  padding: 0.76rem 0.9rem;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  margin-bottom: 0.42rem;
}

.forum-post.forum-post-bg-a,
.card.soft.forum-post.forum-post-bg-a,
.card.soft.forum-post[data-forum-post-bg="a"] {
  background: #f7fbff;
  border-color: #d9e7f2;
}

.forum-post.forum-post-bg-b,
.card.soft.forum-post.forum-post-bg-b,
.card.soft.forum-post[data-forum-post-bg="b"] {
  background: #eff7ff;
  border-color: #c9ddeb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.forum-post.forum-post-admin {
  border-left: 4px solid #d4dde9;
}

.forum-post.forum-post-admin.forum-post-bg-a,
.card.soft.forum-post.forum-post-admin.forum-post-bg-a,
.card.soft.forum-post.forum-post-admin[data-forum-post-bg="a"] {
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 0, rgba(148, 163, 184, 0.12) 12px, rgba(255, 255, 255, 0) 12px),
    #f7fbff;
  border-color: #d9e7f2;
}

.forum-post.forum-post-admin.forum-post-bg-b,
.card.soft.forum-post.forum-post-admin.forum-post-bg-b,
.card.soft.forum-post.forum-post-admin[data-forum-post-bg="b"] {
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.14) 0, rgba(148, 163, 184, 0.14) 12px, rgba(255, 255, 255, 0) 12px),
    #eff7ff;
  border-color: #c9ddeb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.forum-post-header {
  margin-bottom: 0.56rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5eaf1;
}

.forum-post.forum-post-bg-a .forum-post-header {
  border-bottom-color: #dce9f4;
}

.forum-post.forum-post-bg-b .forum-post-header {
  border-bottom-color: #d5e7f5;
}

.forum-post-body {
  border: 0;
  border-radius: 0;
  padding: 0.3rem 0.08rem 0.1rem;
  background: transparent;
  box-shadow: none;
}

.forum-post.forum-post-bg-a .forum-post-body {
  background: transparent;
  border-color: transparent;
}

.forum-post.forum-post-bg-b .forum-post-body {
  background: transparent;
  border-color: transparent;
}

.forum-post.forum-post-admin.forum-post-bg-a .forum-post-body {
  background: transparent;
  border-color: transparent;
}

.forum-post.forum-post-admin.forum-post-bg-b .forum-post-body {
  background: transparent;
  border-color: transparent;
}

.forum-post-removed {
  border-style: dashed;
  background: #f8fafc;
  box-shadow: none;
}

.forum-post-removed-row {
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.4rem 0.68rem;
}

.forum-post-removed-row .muted {
  margin: 0;
  font-size: 0.82rem;
}

.forum-post-links {
  margin-top: 0.24rem;
}

.forum-post-links a {
  font-size: 0.86rem;
}

.forum-post-head-left {
  min-width: 0;
  flex: 1 1 34rem;
}

.forum-post-meta-line {
  row-gap: 0.32rem;
}

.forum-post-inline-actions {
  margin-left: 0.2rem;
}

.forum-post-inline-actions form {
  margin: 0;
}

.forum-post-inline-actions .btn {
  padding: 0.2rem 0.48rem;
  min-height: 1.62rem;
  font-size: 0.77rem;
  line-height: 1.15;
}

.forum-post-actions {
  margin-top: 0.28rem;
}

.forum-post-actions .btn {
  padding: 0.22rem 0.5rem;
  min-height: 1.72rem;
  font-size: 0.79rem;
  line-height: 1.2;
}

.forum-thread-row-actions form {
  margin: 0;
}

.forum-thread-row-action-btn {
  padding: 0.2rem 0.5rem;
  min-height: 1.66rem;
  font-size: 0.78rem;
  line-height: 1.2;
}

.forum-latest-topics {
  background: #e7f0ff;
  border-color: #bfd3e7;
  box-shadow: inset 0 0 0 1px rgba(191, 211, 231, 0.45);
}

.forum-latest-empty {
  margin: 0.32rem 0 0;
}

.forum-latest-table {
  display: grid;
  gap: 0.24rem;
}

.forum-latest-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) minmax(140px, 0.8fr) 80px 150px 170px;
  gap: 0.28rem 0.62rem;
  align-items: center;
  padding: 0.36rem 0.5rem;
  border: 1px solid #d0e0ee;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.74);
}

.forum-latest-row-head {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #44566d;
  text-transform: uppercase;
}

.forum-latest-row-head .forum-latest-cell {
  white-space: nowrap;
}

.forum-latest-cell {
  min-width: 0;
  font-size: 0.83rem;
  line-height: 1.25;
  color: #1f2937;
}

.forum-latest-cell-topic {
  display: grid;
  gap: 0.08rem;
}

.forum-latest-topic-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.forum-latest-topic-sub {
  margin: 0;
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.forum-latest-cell-forum {
  font-size: 0.8rem;
  color: #475569;
}

.forum-latest-cell-replies,
.forum-latest-row-head .forum-latest-cell-replies {
  text-align: center;
  justify-self: center;
  width: 100%;
}

.forum-latest-cell-replies {
  font-weight: 700;
}

.forum-latest-cell-activity {
  font-size: 0.77rem;
  color: #475569;
  white-space: nowrap;
}

.forum-latest-cell-status {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  align-items: flex-end;
  justify-self: end;
}

.forum-latest-statuses {
  gap: 0.2rem;
  justify-content: flex-end;
}

.forum-latest-statuses .badge {
  margin: 0;
  font-size: 0.66rem;
  padding: 0.08rem 0.34rem;
}

.forum-latest-actions {
  gap: 0.2rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.forum-latest-actions .btn,
.forum-latest-actions .forum-thread-row-action-btn {
  min-height: 1.32rem;
  padding: 0.08rem 0.34rem;
  font-size: 0.68rem;
  line-height: 1.1;
  white-space: nowrap;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .forum-latest-row {
    grid-template-columns: minmax(180px, 1.45fr) minmax(115px, 0.75fr) 66px 118px 145px;
    gap: 0.26rem 0.44rem;
    padding: 0.32rem 0.44rem;
  }

  .forum-latest-cell,
  .forum-latest-topic-link {
    font-size: 0.8rem;
  }

  .forum-latest-cell-activity,
  .forum-latest-topic-sub {
    font-size: 0.7rem;
  }

  .forum-latest-actions .btn,
  .forum-latest-actions .forum-thread-row-action-btn {
    font-size: 0.64rem;
    padding: 0.06rem 0.3rem;
  }
}

@media (max-width: 760px) {
  .forum-latest-row-head {
    display: none;
  }

  .forum-latest-row {
    grid-template-columns: 1fr;
    gap: 0.16rem;
    padding: 0.4rem 0.5rem;
  }

  .forum-latest-cell {
    display: grid;
    grid-template-columns: 7.8rem minmax(0, 1fr);
    gap: 0.24rem;
    align-items: start;
  }

  .forum-latest-cell::before {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #5b6f87;
  }

  .forum-latest-cell-topic {
    display: block;
  }

  .forum-latest-cell-topic::before {
    display: block;
    margin-bottom: 0.08rem;
  }

  .forum-latest-cell-topic > * {
    display: block;
  }

  .forum-latest-cell-status {
    justify-items: start;
  }

  .forum-latest-statuses,
  .forum-latest-actions {
    justify-content: flex-start;
  }

  .forum-latest-actions {
    flex-wrap: wrap;
  }
}

.home-offer-provider-signals {
  margin: 0.15rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  min-height: 2.8rem;
}

.home-offer-provider-signals div {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  padding: 0.25rem 0.4rem;
  min-width: 0;
  min-height: 2.5rem;
}

.home-offer-provider-signals dt {
  margin: 0;
  font-size: 0.72rem;
  color: #64748b;
}

.home-offer-provider-signals dd {
  margin: 0.08rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-offer-signal-neutral {
  border-color: #e2e8f0;
  background: #f8fafc;
}

.home-provider-badge-row .badge {
  margin: 0;
}

.home-offer-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-top: -0.08rem;
}

.home-offer-billing {
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
}

.home-offer-price {
  font-size: clamp(1.22rem, 2vw, 1.45rem);
  font-weight: 700;
}

.home-offer-pricing-note {
  margin: 0.05rem 0 0;
  font-size: 0.82rem;
}

.home-offer-provider {
  margin-top: 0.15rem;
  font-size: 0.84rem;
}

.home-offer-bottom {
  margin-top: auto;
  padding-top: 0.22rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.55rem;
  min-height: 3.2rem;
}

.home-offer-price-block {
  min-width: 0;
}

.home-offer-cta {
  white-space: nowrap;
  flex: 0 0 auto;
}

.home-special-offers-section {
  margin-bottom: 1rem;
}

.home-provider-card h3 {
  margin-bottom: 0.3rem;
}

.home-provider-card {
  display: grid;
  grid-template-rows: minmax(3.5rem, auto) minmax(1.45rem, auto) minmax(2.95rem, auto) minmax(3.75rem, auto) auto 1fr;
  gap: 0.4rem;
}

.home-provider-logo-wrap {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
}

.home-provider-badge-zone {
  min-height: 52px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.home-provider-badge-row {
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.home-provider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.4rem;
  min-height: 3.5rem;
}

.home-provider-logo {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.home-provider-logo-image {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 42px;
  object-fit: contain;
  display: block;
}

.home-provider-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 0.82rem;
}

.home-provider-meta {
  margin: 0;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #f8fafc;
  padding: 0.36rem 0.46rem;
  min-height: 2.9rem;
}

.home-provider-title {
  margin: 0.08rem 0 0;
  min-height: 2.95rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-provider-description {
  margin: 0;
  min-height: 3.95em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-provider-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
  align-content: start;
  min-height: 8.85rem;
}

.home-provider-meta span {
  display: block;
  font-size: 0.76rem;
}

.home-provider-meta strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-provider-actions {
  margin-top: auto;
  align-self: end;
}

.home-provider-table-card {
  margin-top: 0.15rem;
}

.home-provider-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.offers-table-view.home-provider-table {
  min-width: 930px;
}

.home-provider-table col.home-provider-table-col-provider {
  width: 23%;
}

.home-provider-table col.home-provider-table-col-location {
  width: 13%;
}

.home-provider-table col.home-provider-table-col-offers {
  width: 10%;
}

.home-provider-table col.home-provider-table-col-rating {
  width: 10%;
}

.home-provider-table col.home-provider-table-col-performance {
  width: 18%;
}

.home-provider-table col.home-provider-table-col-trust {
  width: 17%;
}

.home-provider-table col.home-provider-table-col-action {
  width: 9%;
}

.home-news-card {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.home-news-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.6rem;
}

.home-news-date {
  margin: 0;
  font-size: 0.82rem;
}

.home-news-source {
  margin-top: auto;
}

.home-news-list {
  display: grid;
  gap: 0.7rem;
}

.home-news-list-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.26fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
}

.home-news-list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.home-news-list-meta .muted {
  font-size: 0.82rem;
  font-weight: 700;
}

.home-news-list-body {
  min-width: 0;
}

.home-news-list-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.home-news-list-body p {
  margin: 0.22rem 0 0;
  color: #334155;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 760px) {
  .home-section-head-actions {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .home-section-view-toolbar {
    width: 100%;
    justify-content: flex-start;
  }

  .provider-directory-view-toolbar {
    justify-content: flex-start;
    margin-left: 0;
  }

  .offers-table-view.home-provider-table {
    min-width: 880px;
  }

  .offers-table-view.provider-directory-table {
    min-width: 820px;
  }

  .home-news-list-item {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .home-news-list-item .btn {
    width: 100%;
    text-align: center;
  }
}

.home-faq-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.home-faq-item {
  border: 1px solid #dbe4f1;
  border-radius: 12px;
  background: #fcfdff;
  padding: 0.2rem 0.65rem 0.55rem;
}

.home-faq-item > summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.45rem 0.1rem 0.35rem;
}

.home-faq-item > summary::-webkit-details-marker {
  display: none;
}

.home-faq-item > summary::after {
  content: '+';
  float: right;
  color: #64748b;
  font-weight: 700;
}

.home-faq-item[open] > summary::after {
  content: '−';
}

.home-faq-item > p {
  margin: 0.2rem 0 0.1rem;
}

.home-award-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.awards-hoster-month-page {
  display: grid;
  gap: 0.75rem;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.page-main:has(.awards-hoster-month-page) {
  min-height: auto;
  padding-bottom: 1.2rem;
}

.awards-empty-state-card {
  display: grid;
  gap: 0.35rem;
}

.awards-empty-state-card p {
  margin: 0;
}

.award-monitoring-section {
  display: grid;
  gap: 0.65rem;
}

.award-monitoring-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.award-monitoring-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.72rem;
  display: grid;
  gap: 0.52rem;
  min-width: 0;
}

.award-monitoring-card h3 {
  margin: 0;
  font-size: 1rem;
}

.award-monitoring-table-wrap {
  overflow-x: auto;
}

.award-monitoring-table {
  min-width: 520px;
}

.award-monitoring-table td {
  vertical-align: middle;
}

.award-monitoring-table .badge {
  margin-top: 0.25rem;
}

.award-monitoring-empty {
  margin: 0;
  color: #475569;
}

.uptime-speedtest-page {
  display: grid;
  gap: 0.8rem;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}

.page-main:has(.uptime-speedtest-page) {
  min-height: auto;
  padding-bottom: 1.2rem;
}

.uptime-speedtest-intro,
.uptime-speedtest-section {
  display: grid;
  gap: 0.75rem;
}

.uptime-speedtest-intro h1,
.uptime-speedtest-section h2 {
  margin: 0;
}

.uptime-speedtest-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.uptime-speedtest-facts span {
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  background: #eff6ff;
  color: #1e3a8a;
  font-weight: 700;
  padding: 0.68rem 0.75rem;
}

.uptime-speedtest-section-head {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 0.85rem;
}

.uptime-speedtest-section-head p {
  margin: 0;
}

.uptime-speedtest-podium {
  margin-top: 0.2rem;
}

.uptime-speedtest-good-list {
  display: grid;
  gap: 0.6rem;
}

.uptime-speedtest-good-list h3 {
  margin: 0;
}

.uptime-speedtest-good-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.uptime-speedtest-good-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  display: grid;
  gap: 0.55rem;
  padding: 0.72rem;
}

.uptime-speedtest-good-card h4 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
}

.uptime-speedtest-good-card p,
.uptime-speedtest-empty p,
.uptime-speedtest-transparency p {
  margin: 0;
}

.uptime-speedtest-table td {
  vertical-align: middle;
}

.uptime-speedtest-transparency {
  display: grid;
  gap: 0.45rem;
}

.uptime-speedtest-transparency ul {
  margin: 0;
  padding-left: 1.1rem;
}

.uptime-speedtest-transparency li + li {
  margin-top: 0.25rem;
}

.home-award-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0.7rem;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.65rem;
  align-items: start;
}

.home-award-item-image {
  width: 64px;
  height: auto;
  display: block;
}

.home-award-item-body h3 {
  margin: 0.1rem 0 0.28rem;
  font-size: 1rem;
}

.home-award-item-body .muted {
  margin: 0;
  font-size: 0.88rem;
}

.section {
  padding: 1.5rem 0;
}

.narrow {
  width: min(860px, calc(100% - 2rem));
}

.tender-create-page.narrow {
  width: min(1180px, calc(100% - 2rem));
}

.legal-content-wide {
  width: min(1240px, calc(100% - 2rem));
}

.legal-content-wide .prose {
  max-width: none;
}

.legal-content-wide .legal-table {
  width: 100%;
  table-layout: auto;
}

.section-head h2 {
  margin: 0;
}

.section-head.row {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 0.75rem;
}

.section-head.row > * {
  min-width: 0;
}

.section-head.row > a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.card.soft {
  background: var(--surface-soft);
}

.share-box {
  display: grid;
  gap: 0.65rem;
}

.share-box-content {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.share-box-content h2 {
  margin: 0 0 0.25rem;
}

.share-box-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.share-box-url {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  margin: 0;
  overflow-wrap: anywhere;
  padding: 0.55rem 0.65rem;
}

.share-box-status {
  margin: 0;
  min-height: 1.2em;
}

@media (max-width: 680px) {
  .share-box-content {
    display: grid;
  }

  .share-box-actions {
    justify-content: flex-start;
  }

  .prose .legal-table,
  .prose .legal-table thead,
  .prose .legal-table tbody,
  .prose .legal-table tr,
  .prose .legal-table th,
  .prose .legal-table td {
    display: block;
    width: 100%;
  }

  .prose .legal-table thead {
    display: none;
  }

  .prose .legal-table tr {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 0.65rem;
    overflow: hidden;
  }

  .prose .legal-table th,
  .prose .legal-table td {
    border: 0;
    border-bottom: 1px solid var(--border);
  }

  .prose .legal-table th:last-child,
  .prose .legal-table td:last-child {
    border-bottom: 0;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.list-cards {
  display: grid;
  gap: 0.75rem;
}

.list-cards .card h2,
.list-cards .card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.list-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
  background: #fff;
}

.ad-slot-admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.ad-slot-admin-head h2 {
  margin: 0;
}

.ad-slot-placement-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  border-radius: 8px;
  width: 54px;
  height: 36px;
  flex: 0 0 auto;
}

.ad-slot-placement-canvas {
  position: relative;
  display: block;
  width: 42px;
  height: 26px;
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 4px;
}

.ad-slot-placement-marker {
  position: absolute;
  background: #cbd5e1;
  border-radius: 2px;
  opacity: 0.35;
}

.ad-slot-placement-marker-top {
  left: 3px;
  right: 3px;
  top: 3px;
  height: 5px;
}

.ad-slot-placement-marker-sidebar {
  top: 10px;
  right: 3px;
  width: 8px;
  bottom: 3px;
}

.ad-slot-placement-marker-inline {
  left: 3px;
  right: 13px;
  top: 16px;
  height: 5px;
}

.ad-slot-placement-top .ad-slot-placement-marker-top,
.ad-slot-placement-sidebar .ad-slot-placement-marker-sidebar,
.ad-slot-placement-inline .ad-slot-placement-marker-inline {
  opacity: 1;
  background: #2563eb;
}

.ad-slot-placement-generic .ad-slot-placement-marker {
  opacity: 0.6;
  background: #64748b;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stack-vertical {
  display: grid;
  gap: 1rem;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.span-2 { grid-column: span 2; }
.span-6 { grid-column: span 6; }

.offers-headline h1 {
  margin-bottom: 0.12rem;
}

.offers-result-count {
  margin: 0;
  font-size: 0.94rem;
  color: #475569;
}

.offers-result-count strong {
  color: #0f172a;
  font-weight: 800;
}

.offers-filter-form {
  display: grid;
  gap: 0.72rem;
}

.offers-filter-sections {
  display: grid;
  gap: 0.58rem;
}

.offers-filter-section {
  border: 1px solid #dbe4f1;
  background: #f8fbff;
  border-radius: 11px;
  padding: 0.64rem;
}

.offers-filter-section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offers-filter-section-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: #64748b;
}

.offers-filter-section-title-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offers-filter-fields {
  display: grid;
  gap: 0.68rem;
}

.offers-filter-fields-search {
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
}

.offers-filter-fields-price {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offers-filter-fields-trust {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offers-filter-help {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
}

.offers-filter-help a {
  color: #334155;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.offers-filter-options {
  display: grid;
  gap: 0.35rem;
  background: #ffffff;
  border-style: dashed;
}

.offers-filter-options-title {
  margin-bottom: 0.2rem;
}

.offers-filter-toggle {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  color: #1e293b;
  font-size: 0.92rem;
  font-weight: 600;
}

.offers-filter-toggle input {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
}

.offers-filter-toggle span {
  display: block;
  line-height: 1.35;
  flex: 1 1 auto;
}

.offers-filter-option-help {
  margin: 0;
  font-size: 0.79rem;
  color: #64748b;
  line-height: 1.35;
}

.offers-filter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.offers-compare-summary {
  padding: 0.9rem 1rem;
}

.offers-compare-summary-empty {
  padding: 0.72rem 0.95rem;
}

.offers-compare-summary-head {
  gap: 0.45rem;
}

.offers-compare-summary-title {
  margin: 0;
  font-size: 1.03rem;
}

.offers-compare-summary-note {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

label {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  padding: 0.58rem 0.68rem;
  background: #fff;
}

textarea {
  min-height: 110px;
}

fieldset {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
}

legend {
  font-weight: 600;
  color: #334155;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.check {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}

.check input {
  width: auto;
  margin-top: 0.2rem;
}

.inline-form {
  display: inline-flex;
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plain-list li + li {
  margin-top: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.42rem 0.72rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-strong);
  text-decoration: none;
}

.btn-light {
  background: #fff;
  border-color: #cbd5e1;
  color: #334155;
}

.btn-light:hover {
  background: #f8fafc;
  text-decoration: none;
}

.btn-danger {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #9f1239;
}

.btn-danger:hover {
  background: #ffe4e6;
  text-decoration: none;
}

.btn-caution {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #9f1239;
}

.btn-caution:hover {
  background: #ffe4e6;
  text-decoration: none;
}

.table-wrap .btn,
.list-card .btn,
.card .inline-form .btn {
  padding: 0.34rem 0.56rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-ok {
  background: var(--ok-bg);
  color: var(--ok);
}

.badge-muted {
  background: #eef2f7;
  color: #475569;
}

.badge-error {
  background: #fee2e2;
  color: #b91c1c;
}

.badge.home-badge-verified-provider {
  background: #e9f8ef;
  color: #1f6938;
  border: 1px solid #b3dcc3;
}

.badge.home-badge-money-back {
  background: #edf9f2;
  color: #236c3e;
  border: 1px solid #b9e0ca;
}

.badge.home-badge-platform-owned {
  background: #fff6e3;
  color: #78551e;
  border: 1px solid #ead4a4;
}

.badge.home-badge-test-account {
  background: #f3f7ff;
  color: #2f4f86;
  border: 1px solid #cddcf4;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-btn {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #1f2937;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.chip-btn:hover {
  background: #eef2ff;
}

.view-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.offers-view-switch-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.offers-view-switch-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
}

.offers-view-switch {
  align-items: center;
  gap: 0.35rem;
  background: #f8fafc;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  padding: 0.24rem;
}

.offers-view-switch .inline-form {
  display: inline-flex;
}

.offers-view-switch .btn {
  border-radius: 999px;
  padding: 0.34rem 0.66rem;
  font-size: 0.82rem;
  min-height: 32px;
}

.offers-view-switch .btn-light {
  border-color: transparent;
  background: transparent;
}

.offers-view-switch .btn-light:hover {
  background: #e2e8f0;
}

.offers-view-switch .btn-primary {
  border-color: #1e40af;
}

.marketplace-head-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  margin-left: auto;
}

.marketplace-view-switch-wrap {
  justify-content: flex-end;
}

.marketplace-view-switch .btn {
  min-width: 76px;
}

.domain-market-table th,
.domain-market-table td,
.project-market-table th,
.project-market-table td,
.it-directory-table th,
.it-directory-table td {
  padding: 0.72rem 0.78rem;
}

.domain-market-table .badge,
.project-market-table .badge,
.it-directory-table .badge,
.it-directory-table .it-specialization-chip,
.it-directory-table .it-availability-badge {
  line-height: 1.2;
  margin: 0.08rem 0;
}

.domain-market-filter-options,
.project-market-filter-options {
  display: grid;
  gap: 0.42rem 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.domain-market-filter-options .providers-filter-group-title,
.domain-market-filter-options .providers-filter-option-help,
.project-market-filter-options .providers-filter-group-title,
.project-market-filter-options .providers-filter-option-help {
  grid-column: 1 / -1;
}

@media (max-width: 680px) {
  .marketplace-head-actions,
  .marketplace-view-switch-wrap {
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 0;
    width: 100%;
  }

  .domain-market-filter-options,
  .project-market-filter-options {
    grid-template-columns: 1fr;
  }
}

.offers-results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1rem;
  align-items: start;
}

.providers-results-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 336px);
}

.offers-results-layout-full {
  grid-template-columns: minmax(0, 1fr);
}

.offers-results-layout-table {
  grid-template-columns: minmax(0, 1fr);
}

.offers-results-main {
  min-width: 0;
}

.offers-results-sidebar {
  position: sticky;
  top: 86px;
  align-self: start;
}

.offers-results-layout-table .offers-results-sidebar {
  display: none;
}

.offers-category-group-nav {
  padding: 0.82rem 0.9rem;
}

.offers-category-group-title {
  margin: 0;
  font-size: 1.02rem;
}

.offers-category-group-chips {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.offers-category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #1e293b;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.offers-category-chip:hover,
.offers-category-chip:focus-visible {
  background: #e2e8f0;
  border-color: #94a3b8;
}

.offers-category-chip.is-active {
  border-color: #1d4ed8;
  background: #dbeafe;
  color: #1e40af;
}

.offer-grid-list,
.offer-grid-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.offer-grid-market {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.offer-card {
  min-height: 100%;
  overflow: hidden;
}

.offer-card-list {
  border-left: 4px solid #bfdbfe;
}

.offer-card-compact {
  padding: 0.72rem;
  border-left: 3px solid #dbeafe;
}

.offer-card-market {
  padding: 0.95rem;
  border-left: 4px solid #c7d2fe;
}

.offer-card-compact h2 {
  margin-top: 0;
  margin-bottom: 0.2rem;
  font-size: 1.08rem;
}

.offer-card-compact p {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}

.offer-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: 1rem;
  align-items: start;
}

.offer-showcase-compact {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
}

.offer-showcase-market {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.02fr) minmax(265px, 0.82fr);
}

.offer-showcase-without-meta {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
}

.offer-showcase-main,
.offer-showcase-meta {
  min-width: 0;
}

.offer-showcase-side {
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  background: #fbfdff;
  padding: 0.62rem 0.68rem;
  display: grid;
  gap: 0.42rem;
  align-content: start;
  min-width: 0;
}

.offer-showcase-side .price {
  margin: 0;
  line-height: 1.15;
}

.offer-showcase-side .muted {
  margin: 0;
  line-height: 1.28;
  font-size: 0.79rem;
}

.offer-showcase-side-compact {
  gap: 0.35rem;
  border: 0;
  background: transparent;
  padding: 0;
}

.offer-showcase-side-compact .price {
  margin-bottom: 0.1rem;
  font-size: 1.25rem;
}

.offer-showcase-side-compact .muted {
  font-size: 0.78rem;
  margin: 0;
}

.offer-side-actions {
  display: grid;
  gap: 0.34rem;
}

.offer-side-actions .btn {
  width: 100%;
  text-align: center;
}

.offer-side-compare-form {
  width: 100%;
}

.offer-side-rating {
  border: 1px solid #dbe7ff;
  background: #f8fbff;
  border-radius: 10px;
  padding: 0.34rem 0.5rem;
}

.offer-side-rating .offer-rating-stars {
  margin: 0 0 0.12rem;
  font-size: 0.95rem;
}

.offer-side-rating .offer-rating-meta {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.33;
}

.offer-side-meta {
  display: grid;
  gap: 0.14rem;
}

.offer-side-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.offer-side-trust-chips .badge {
  margin: 0;
  font-size: 0.74rem;
  padding: 0.18rem 0.52rem;
}

.offer-side-award {
  border: 1px solid #dbeafe;
  background: #f8fbff;
  border-radius: 10px;
  padding: 0.46rem 0.55rem;
}

.offer-side-award .badge {
  margin-bottom: 0.26rem;
}

.offer-side-award .muted {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.offer-card-title {
  margin-top: 0.35rem;
  margin-bottom: 0.25rem;
  line-height: 1.28;
}

.offer-provider-line {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #475569;
  font-weight: 600;
}

.offer-summary-inline {
  margin: 0 0 0.65rem;
  color: #334155;
}

.offer-summary-inline-list,
.offer-summary-inline-market,
.offer-summary-inline-compact {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-summary-inline-list {
  -webkit-line-clamp: 2;
}

.offer-summary-inline-market {
  -webkit-line-clamp: 2;
}

.offer-summary-inline-compact {
  -webkit-line-clamp: 1;
  margin-bottom: 0.45rem;
}

.offer-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.5rem;
}

.offer-metric-item {
  border: 1px solid #dbe7ff;
  border-radius: 10px;
  background: #f5f9ff;
  padding: 0.46rem 0.55rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.35;
}

.offer-card-compact .offer-metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.34rem;
  margin-bottom: 0.35rem;
}

.offer-card-compact .offer-metric-item {
  padding: 0.36rem 0.45rem;
  font-size: 0.78rem;
  line-height: 1.3;
}

.offer-card-market .offer-metric-item {
  background: #f8faff;
  border-color: #d9e3ff;
}

.offer-quick-facts {
  margin: 0.35rem 0 0.45rem;
  padding-left: 1rem;
  color: #1f2937;
  font-size: 0.9rem;
}

.offer-quick-facts li {
  margin: 0 0 0.22rem;
}

.offer-quick-facts-inline {
  margin: 0.2rem 0 0.55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 0.85rem;
}

.offer-quick-facts-inline li {
  margin: 0;
  list-style: none;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #334155;
  background: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-quick-facts-inline-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
}

.offer-quick-facts-inline-compact li {
  font-size: 0.72rem;
  padding: 0.14rem 0.45rem;
}

.offer-quick-facts-inline-market li {
  border-color: #d7def0;
  background: #f9fbff;
}

.offer-market-monitoring {
  margin: 0.15rem 0 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.offer-market-monitoring-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d6e1fb;
  background: #f7faff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 0.16rem 0.56rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-info-panel {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.85rem 0.9rem;
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.42rem;
}

.offer-info-panel h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
}

.offer-card-list .offer-info-panel {
  padding: 0.78rem 0.82rem;
}

.offer-card-market .offer-info-panel {
  border-color: #d6def8;
  background: #f7faff;
}

.offer-info-panel-side {
  margin-top: 0.2rem;
}

.offer-info-panel-market {
  align-self: stretch;
}

.offer-promo-banner {
  margin: 0 0 0.55rem;
  padding: 0.42rem 0.55rem;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.offer-promo-note {
  margin: 0 0 0.48rem;
  color: #334155;
  font-size: 0.8rem;
  line-height: 1.4;
}

.offer-market-strengths {
  border: 1px solid #dbe7ff;
  background: #f8fbff;
  border-radius: 10px;
  padding: 0.45rem 0.56rem;
  margin: 0 0 0.5rem;
}

.offer-market-strengths h4 {
  margin: 0 0 0.24rem;
  font-size: 0.8rem;
  color: #334155;
}

.offer-market-strengths ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.16rem;
}

.offer-market-strengths li {
  font-size: 0.82rem;
  color: #1e293b;
  line-height: 1.36;
}

.offer-market-profile {
  margin: 0;
  border: 1px solid #d7e3fb;
  border-radius: 10px;
  background: #f9fbff;
  padding: 0.42rem 0.52rem;
  display: grid;
  gap: 0.25rem;
}

.offer-market-profile dt {
  margin: 0;
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 700;
}

.offer-market-profile div {
  display: grid;
  grid-template-columns: minmax(88px, 40%) minmax(0, 1fr);
  gap: 0.35rem;
  align-items: baseline;
}

.offer-market-profile dd {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.33;
  color: #1e293b;
}

.offer-insight-list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.38rem;
}

.offer-insight-list-wide {
  gap: 0.34rem;
}

.offer-insight-list div {
  display: grid;
  grid-template-columns: minmax(120px, 42%) minmax(0, 1fr);
  gap: 0.4rem;
  align-items: baseline;
  min-width: 0;
  border-bottom: 1px dashed #dce6f8;
  padding-bottom: 0.24rem;
}

.offer-insight-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.offer-insight-list dt {
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
}

.offer-insight-list dd {
  margin: 0;
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 600;
  overflow-wrap: anywhere;
  line-height: 1.34;
}

.offer-insight-points {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.28rem;
}

.offer-insight-points li {
  font-size: 0.82rem;
  line-height: 1.36;
  color: #1e293b;
}

.offer-card-list .offer-insight-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.24rem 0.62rem;
}

.offer-rating-meta {
  margin-top: 0.28rem;
  margin-bottom: 0;
}

.offer-card-compact .offer-rating-meta {
  font-size: 0.78rem;
}

.offer-detail-lines {
  margin: 0.5rem 0 0.2rem;
  display: grid;
  gap: 0.28rem;
}

.offer-detail-lines div {
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  gap: 0.5rem;
  align-items: baseline;
}

.offer-detail-lines dt {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.offer-detail-lines dd {
  margin: 0;
  color: #1f2937;
  font-size: 0.82rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.offer-detail-lines-compact {
  margin-top: 0.45rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.32rem 0.85rem;
}

.offer-detail-lines-compact div {
  grid-template-columns: minmax(92px, 45%) minmax(0, 1fr);
  gap: 0.36rem;
}

.offer-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 0.85rem;
}

.offer-spec-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem;
  align-content: start;
  border: 1px solid #dbe3ee;
  background: #f8fbff;
  border-radius: 12px;
  padding: 0.75rem;
}

.offer-spec-card h3 {
  margin: 0;
  font-size: 1rem;
  grid-column: 1 / -1;
}

.offer-spec-card--wide {
  grid-column: 1 / -1;
}

.offer-spec-card--colocation {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.offer-spec-card--colocation .offer-spec-row {
  grid-template-columns: minmax(130px, 32%) minmax(0, 1fr);
}

.offer-spec-card--webspace,
.offer-spec-card--managed,
.offer-spec-card--email,
.offer-spec-card--server,
.offer-spec-card--vps,
.offer-spec-card--software,
.offer-spec-card--ssl,
.offer-spec-card--backup,
.offer-spec-card--cdn,
.offer-spec-card--cloud,
.offer-spec-card--game,
.offer-spec-card--shop {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.offer-spec-card--webspace .offer-spec-row,
.offer-spec-card--managed .offer-spec-row,
.offer-spec-card--email .offer-spec-row,
.offer-spec-card--server .offer-spec-row,
.offer-spec-card--vps .offer-spec-row,
.offer-spec-card--software .offer-spec-row,
.offer-spec-card--ssl .offer-spec-row,
.offer-spec-card--backup .offer-spec-row,
.offer-spec-card--cdn .offer-spec-row,
.offer-spec-card--email .offer-spec-row,
.offer-spec-card--cloud .offer-spec-row,
.offer-spec-card--game .offer-spec-row,
.offer-spec-card--shop .offer-spec-row {
  grid-template-columns: minmax(130px, 34%) minmax(0, 1fr);
}

.offer-spec-subsection {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  min-width: 0;
}

.offer-spec-card--webspace .offer-spec-subgrid,
.offer-spec-card--backup .offer-spec-subgrid,
.offer-spec-card--cdn .offer-spec-subgrid,
.offer-spec-card--email .offer-spec-subgrid,
.offer-spec-card--cloud .offer-spec-subgrid,
.offer-spec-card--game .offer-spec-subgrid,
.offer-spec-card--shop .offer-spec-subgrid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 0.65rem;
}

.offer-spec-card--server > .offer-specs-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.offer-spec-card--webspace .offer-spec-row,
.offer-spec-card--backup .offer-spec-row,
.offer-spec-card--cdn .offer-spec-row,
.offer-spec-card--email .offer-spec-row,
.offer-spec-card--cloud .offer-spec-row,
.offer-spec-card--game .offer-spec-row,
.offer-spec-card--shop .offer-spec-row {
  grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
  column-gap: 0.75rem;
}

.offer-spec-card--webspace .offer-spec-row dt,
.offer-spec-card--webspace .offer-spec-row dd,
.offer-spec-card--backup .offer-spec-row dt,
.offer-spec-card--backup .offer-spec-row dd,
.offer-spec-card--cdn .offer-spec-row dt,
.offer-spec-card--cdn .offer-spec-row dd,
.offer-spec-card--email .offer-spec-row dt,
.offer-spec-card--email .offer-spec-row dd,
.offer-spec-card--cloud .offer-spec-row dt,
.offer-spec-card--cloud .offer-spec-row dd,
.offer-spec-card--game .offer-spec-row dt,
.offer-spec-card--game .offer-spec-row dd,
.offer-spec-card--shop .offer-spec-row dt,
.offer-spec-card--shop .offer-spec-row dd {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.offer-spec-subsection--full {
  grid-column: 1 / -1;
}

.offer-spec-subsection--full p {
  margin: 0.25rem 0 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.offer-spec-subsection h4 {
  margin: 0 0 0.45rem;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.offer-spec-table {
  margin: 0;
  display: grid;
  gap: 0.1rem;
}

.offer-spec-row {
  display: grid;
  grid-template-columns: minmax(120px, 38%) minmax(90px, 1fr);
  gap: 0.5rem;
  align-items: baseline;
  border-top: 1px dashed #e2e8f0;
  padding: 0.24rem 0;
}

.offer-spec-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.offer-spec-row:last-child {
  padding-bottom: 0;
}

.offer-spec-row dt {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.offer-spec-row dd {
  margin: 0;
  color: #0f172a;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: normal;
}

.offer-spec-card--webspace .offer-spec-row,
.offer-spec-card--backup .offer-spec-row,
.offer-spec-card--cdn .offer-spec-row,
.offer-spec-card--email .offer-spec-row,
.offer-spec-card--cloud .offer-spec-row,
.offer-spec-card--game .offer-spec-row,
.offer-spec-card--shop .offer-spec-row {
  grid-template-columns: minmax(210px, 46%) minmax(0, 1fr);
  gap: 0.3rem 1.1rem;
  align-items: start;
}

.offer-spec-card--webspace .offer-spec-row dt,
.offer-spec-card--webspace .offer-spec-row dd,
.offer-spec-card--backup .offer-spec-row dt,
.offer-spec-card--backup .offer-spec-row dd,
.offer-spec-card--cdn .offer-spec-row dt,
.offer-spec-card--cdn .offer-spec-row dd,
.offer-spec-card--email .offer-spec-row dt,
.offer-spec-card--email .offer-spec-row dd,
.offer-spec-card--cloud .offer-spec-row dt,
.offer-spec-card--cloud .offer-spec-row dd,
.offer-spec-card--game .offer-spec-row dt,
.offer-spec-card--game .offer-spec-row dd,
.offer-spec-card--shop .offer-spec-row dt,
.offer-spec-card--shop .offer-spec-row dd {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 540px) {
  .offer-spec-card--webspace .offer-spec-row,
  .offer-spec-card--backup .offer-spec-row,
  .offer-spec-card--cdn .offer-spec-row,
  .offer-spec-card--email .offer-spec-row,
  .offer-spec-card--cloud .offer-spec-row,
  .offer-spec-card--game .offer-spec-row,
  .offer-spec-card--shop .offer-spec-row {
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }
}

.offer-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: start;
}

.offer-detail-main {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.offer-detail-aside {
  position: sticky;
  top: 84px;
  align-self: start;
}

.offer-hero-card {
  display: grid;
  gap: 0.72rem;
}

.offer-hero-card h1 {
  margin: 0;
}

.offer-hero-summary {
  margin: 0;
  color: #334155;
}

.offer-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.offer-hero-badges .badge {
  margin: 0;
}

.offer-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.offer-hero-fact {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe3ee;
  background: #f8fbff;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1f2937;
}

.offer-hero-pricing {
  display: grid;
  gap: 0.2rem;
  border: 1px solid #dbeafe;
  background: #f8fbff;
  border-radius: 12px;
  padding: 0.62rem 0.72rem;
}

.offer-hero-price-main {
  margin: 0;
  color: #0f172a;
  font-size: 1.72rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.offer-hero-price-main span {
  font-size: 0.93rem;
  font-weight: 700;
  color: #475569;
}

.offer-hero-price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.72rem;
}

.offer-hero-price-meta p {
  margin: 0;
  font-size: 0.84rem;
  color: #334155;
}

.offer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.offer-hero-actions .btn {
  min-height: 38px;
}

.offer-provider-card {
  display: grid;
  gap: 0.5rem;
  text-align: center;
}

.offer-provider-card > h2 {
  margin: 0;
  text-align: center;
}

.offer-provider-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.offer-provider-logo-image {
  max-width: 178px;
  max-height: 104px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.offer-provider-trust {
  display: grid;
  gap: 0.38rem;
  justify-items: center;
  text-align: center;
}

.offer-provider-group {
  border-top: 1px solid #dbe3ee;
  padding-top: 0.55rem;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
}

.offer-provider-group h3 {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.offer-provider-trust .badge {
  margin: 0;
}

.offer-provider-transparency {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.offer-provider-location {
  margin: 0;
}

.offer-provider-verified-image {
  width: min(150px, 100%);
  max-width: 100%;
  height: auto;
  display: block;
}

.offer-provider-trust-caption {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
}

.offer-provider-awards {
  margin-top: 0.3rem;
  border-top: 1px solid #dbe3ee;
  padding-top: 0.58rem;
}

.offer-provider-awards h3 {
  margin: 0 0 0.48rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.offer-provider-awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.45rem;
}

.offer-provider-award-item {
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.44rem 0.5rem;
  display: grid;
  gap: 0.24rem;
  align-content: start;
}

.offer-provider-award-image {
  width: min(96px, 100%);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.offer-provider-award-text {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  border-radius: 8px;
  padding: 0.35rem 0.45rem;
  font-weight: 800;
  font-size: 0.84rem;
  color: #1e3a8a;
  text-align: center;
}

.offer-provider-award-title {
  margin: 0;
  font-size: 0.77rem;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
}

.offer-provider-award-meta {
  margin: 0;
  font-size: 0.74rem;
  color: #64748b;
  text-align: center;
}

.offer-provider-name {
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
}

.offer-monitoring-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.offer-alternative-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.offer-alternative-column {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.offer-alternative-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-alternative-column h3 {
  margin: 0;
  font-size: 1rem;
}

.offer-alternative-card {
  display: grid;
  gap: 0.38rem;
  align-content: start;
}

.offer-alternative-card h4 {
  margin: 0;
  font-size: 1rem;
}

.offer-alternative-card p {
  margin: 0;
}

.offer-provider-contact .list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
  width: 100%;
  text-align: left;
}

.offer-provider-contact .list li {
  margin: 0;
  border: 1px solid #dbe3ee;
  border-radius: 9px;
  background: #f8fbff;
  padding: 0.34rem 0.5rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #334155;
}

.offer-provider-card .row {
  justify-content: center;
}

.offer-provider-actions .btn,
.offer-provider-compare-actions .btn {
  min-width: 162px;
}

.ad-slot {
  border-style: dashed;
}

.ad-slot-admin-hint {
  border-style: solid;
  border-color: #dbe5f4;
  background: #f8fbff;
}

.ad-slot-label {
  margin-top: 0;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
}

.ad-slot img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ad-slot-creative {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  text-align: center;
}

.ad-slot-creative > * {
  max-width: 100%;
}

.ad-slot-creative .ad-slot-image-link {
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
}

.ad-slot-creative img,
.ad-slot-creative iframe {
  max-width: 100%;
}

.ad-slot-home-middle {
  margin-bottom: 2rem;
}

.ad-slot-consent-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background: #f8fafc;
  display: grid;
  gap: 0.55rem;
}

.ad-slot-consent-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.providers-filter-card {
  display: grid;
  gap: 0.85rem;
}

.providers-filter-sections {
  display: grid;
  gap: 0.75rem;
}

.providers-filter-group {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fbfdff;
  padding: 0.65rem;
  display: grid;
  gap: 0.55rem;
}

.providers-filter-group-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.providers-filter-group-title-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  flex: 0 0 auto;
}

.providers-filter-group-title-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.providers-filter-grid {
  display: grid;
  gap: 0.55rem;
}

.providers-filter-grid-primary {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

.providers-filter-grid-trust {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.providers-filter-grid-sort {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.providers-filter-field {
  display: grid;
  gap: 0.28rem;
}

.providers-filter-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
}

.providers-filter-field select,
.providers-filter-field input {
  margin: 0;
}

.providers-filter-options {
  border-style: dashed;
  background: #ffffff;
}

.providers-filter-toggle {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  color: #1e293b;
  font-size: 0.92rem;
  font-weight: 600;
}

.providers-filter-toggle input {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
}

.providers-filter-toggle span {
  display: block;
  line-height: 1.35;
  flex: 1 1 auto;
}

.providers-filter-option-help {
  margin: 0;
  font-size: 0.79rem;
  color: #64748b;
  line-height: 1.35;
}

.providers-filter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.providers-filter-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.providers-filter-bottom-row .providers-filter-options {
  flex: 1 1 360px;
  margin: 0;
}

.providers-filter-bottom-row .providers-filter-actions {
  flex: 0 0 auto;
}

.providers-directory-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
}

.provider-compare-box {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.provider-compare-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.provider-compare-box-head h2 {
  margin: 0;
}

.provider-compare-box.is-empty {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.provider-compare-empty {
  margin: 0.38rem 0 0;
  font-size: 0.9rem;
}

.provider-logo-wrap {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.provider-logo-image {
  width: auto;
  height: auto;
  max-width: 220px;
  max-height: 44px;
  object-fit: contain;
  display: block;
}

.public-related-links {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.public-related-links-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.public-related-links-items {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.public-related-links a {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.34rem 0.52rem;
  text-decoration: none;
}

.public-related-links a:hover {
  border-color: rgba(37, 99, 235, 0.42);
  color: var(--primary);
}

.provider-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.providers-directory-head {
  align-items: flex-start;
  margin-bottom: 0.95rem;
}

.providers-headline .lead {
  margin-bottom: 0;
}

.provider-directory-view-root {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.provider-directory-view-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin-left: auto;
}

.provider-directory-view-switch .btn {
  cursor: pointer;
}

[data-provider-directory-view-panel][hidden],
[data-provider-directory-view-switch][hidden] {
  display: none !important;
}

.provider-directory-table-card {
  min-width: 0;
  overflow: hidden;
}

.provider-directory-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.offers-table-view.provider-directory-table {
  min-width: 820px;
}

.provider-directory-table col.provider-directory-table-col-provider {
  width: 18%;
}

.provider-directory-table col.provider-directory-table-col-location {
  width: 10%;
}

.provider-directory-table col.provider-directory-table-col-since {
  width: 6%;
}

.provider-directory-table col.provider-directory-table-col-offers {
  width: 8%;
}

.provider-directory-table col.provider-directory-table-col-rating {
  width: 10%;
}

.provider-directory-table col.provider-directory-table-col-performance {
  width: 13%;
}

.provider-directory-table col.provider-directory-table-col-trust {
  width: 16%;
}

.provider-directory-table col.provider-directory-table-col-action {
  width: 104px;
}

.provider-directory-table th,
.provider-directory-table td {
  padding-left: 0.36rem;
  padding-right: 0.36rem;
}

.provider-directory-table th:last-child,
.provider-directory-table td:last-child {
  min-width: 104px;
  padding-left: 0.28rem;
  padding-right: 0.28rem;
}

.provider-directory-table-note {
  margin: 0.24rem 0 0;
  color: #78551e;
  font-size: 0.76rem;
  line-height: 1.28;
  font-weight: 700;
}

.provider-directory-table-platform-note {
  display: inline-grid;
  gap: 0.02rem;
  line-height: 1.12;
}

.provider-directory-table-platform-note span {
  display: block;
}

.provider-directory-table-value,
.provider-directory-table-sub {
  display: block;
}

.provider-directory-table-sub {
  margin-top: 0.18rem;
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.3;
}

.provider-directory-table-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  align-items: flex-start;
}

.provider-directory-table-platform-badge {
  display: inline-grid;
  gap: 0.02rem;
  padding: 0.18rem 0.42rem;
  line-height: 1.12;
  text-align: center;
  white-space: normal;
}

.provider-directory-table-platform-badge span {
  display: block;
}

.provider-directory-table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  width: auto;
  white-space: nowrap;
  text-align: center;
}

.provider-directory-card {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  min-height: 100%;
}

.provider-directory-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.provider-directory-identity {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-width: 0;
}

.provider-directory-title-wrap {
  min-width: 0;
}

.provider-directory-badge-zone {
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
}

.provider-directory-card-title {
  margin: 0.04rem 0 0;
  line-height: 1.25;
}

.provider-directory-card-title a {
  overflow-wrap: anywhere;
}

.provider-directory-rating-line {
  margin: 0.2rem 0 0;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
}

.provider-directory-card-description {
  margin: 0;
  color: #334155;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.provider-directory-focus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.provider-directory-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.provider-directory-fact {
  margin: 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.42rem 0.52rem;
  min-height: 2.8rem;
}

.provider-directory-fact span {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.2;
}

.provider-directory-fact strong {
  display: block;
  margin-top: 0.06rem;
  font-size: 0.91rem;
  line-height: 1.2;
  color: #1f2937;
  overflow-wrap: anywhere;
}

.provider-directory-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 1.5rem;
}

.provider-directory-avatar {
  width: 44px;
  height: 44px;
}

.provider-directory-actions {
  margin-top: auto;
  align-self: end;
}

.it-directory-page .lead {
  max-width: 74ch;
}

.it-directory-page .provider-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.it-directory-sort-note {
  margin: 0.3rem 0 0.15rem;
  font-size: 0.84rem;
  line-height: 1.35;
}

.it-directory-filter-card {
  margin-top: 0.8rem;
  padding: 0.9rem;
}

.it-directory-filter-sections {
  gap: 0.72rem;
}

.it-directory-filter-options {
  border-style: dashed;
  background: #fff;
}

.it-directory-filter-toggle {
  align-items: center;
  min-height: 100%;
}

.it-directory-card .provider-directory-card-description {
  -webkit-line-clamp: 4;
}

.it-directory-ad-slot {
  border-style: solid;
  border-color: #dbe5f2;
  background: #f8fbff;
  padding: 0.7rem 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.it-directory-ad-slot .ad-slot-label {
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.it-directory-ad-slot .ad-slot-image-link img {
  max-height: 180px;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.it-directory-ad-slot .ad-slot-consent-placeholder {
  padding: 0.6rem 0.7rem;
  gap: 0.45rem;
}

.it-directory-ad-slot .ad-slot-consent-placeholder p {
  font-size: 0.84rem;
}

.ad-slot-it-directory-bottom {
  margin-bottom: 0.35rem;
}

.it-directory-card-compact {
  grid-column: 1 / -1;
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.48rem 1rem;
}

.it-directory-card-compact .provider-directory-card-head,
.it-directory-card-compact .provider-directory-card-description,
.it-directory-card-compact .it-specialization-chips,
.it-directory-card-compact .it-availability-badges {
  grid-column: 1 / 2;
}

.it-directory-card-compact .provider-directory-card-description {
  max-width: 76ch;
  -webkit-line-clamp: 2;
}

.it-directory-card-compact .provider-directory-actions {
  grid-column: 2 / 3;
  grid-row: 1 / span 4;
  align-self: center;
  justify-content: flex-end;
  margin-top: 0;
}

.it-specialization-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  min-width: 0;
}

.it-specialization-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #d8e4f1;
  background: #f4f8fd;
  color: #334155;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
}

.it-specialization-chip-more {
  background: #edf3fb;
  border-color: #cfdeef;
  color: #475569;
}

.it-provider-detail-page {
  display: grid;
  gap: 0.9rem;
}

.it-provider-hero {
  display: grid;
  gap: 0.75rem;
}

.it-provider-hero-top {
  display: grid;
  grid-template-columns: minmax(64px, 80px) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: flex-start;
}

.it-provider-hero-logo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.it-provider-hero-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 1px solid #d7e3ef;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.3rem;
  display: block;
}

.it-provider-hero-logo-fallback {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
}

.it-provider-hero-main {
  display: grid;
  gap: 0.68rem;
  min-width: 0;
}

.it-provider-hero-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}

.it-provider-hero-head h1 {
  margin: 0;
}

.it-provider-hero-badges {
  justify-content: flex-end;
  align-items: flex-start;
}

.it-provider-hero-summary {
  margin: 0;
  color: #334155;
}

.it-provider-both-note {
  margin: 0;
}

.it-provider-both-note a {
  font-weight: 600;
}

.it-provider-hero-actions {
  margin-top: 0.1rem;
}

.it-provider-facts-grid {
  margin-top: 0.45rem;
}

.it-availability-block {
  margin: 0.95rem 0 1.15rem;
}

.it-availability-label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  line-height: 1.2;
  color: #6b7280;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.it-availability-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.it-availability-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.58rem;
  border-radius: 999px;
  border: 1px solid #E2B866;
  background: #FFF4DE;
  color: #6B4A12;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.it-availability-badges-compact {
  margin-top: 0.16rem;
}

.it-availability-badges-compact .it-availability-badge {
  padding: 0.22rem 0.48rem;
  font-size: 0.76rem;
}

.it-provider-content-block h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.it-provider-content-block p {
  margin: 0;
  color: #334155;
}

.it-specialization-group-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  align-items: stretch;
  margin-top: 0.2rem;
}

.it-specialization-group-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  border: 1px solid #dfe8f3;
  border-radius: 11px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0.66rem 0.72rem;
}

.it-specialization-group-label {
  margin: 0;
  font-size: 0.77rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.it-specialization-group-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.42rem;
  height: 1.42rem;
  border-radius: 999px;
  border: 1px solid #d9e5f2;
  background: #edf3fb;
  color: #334155;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.it-provider-detail-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.it-provider-content-panel {
  border: 1px solid #dfe8f3;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0.75rem 0.78rem;
  height: 100%;
}

.it-provider-content-panel h3 {
  margin-bottom: 0.36rem;
}

.it-provider-content-text {
  line-height: 1.58;
  color: #334155;
  overflow-wrap: anywhere;
}

.it-provider-contact-grid {
  display: grid;
  gap: 0.42rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.it-provider-contact-grid p {
  margin: 0;
  border: 1px solid #dfe8f3;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.5rem 0.6rem;
}

.it-provider-contact-grid span {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

.it-provider-contact-grid strong {
  display: block;
  margin-top: 0.08rem;
  overflow-wrap: anywhere;
  color: #1f2937;
}

.it-provider-contact-grid strong a {
  color: #1d4ed8;
}

.home-domain-price-card {
  margin-top: 0.75rem;
}

.home-domain-price-card h3 {
  margin: 0 0 0.2rem;
}

.home-domain-price-subtitle {
  margin: 0 0 0.6rem;
}

.home-domain-price-note {
  margin: -0.25rem 0 0.58rem;
  font-size: 0.82rem;
}

.home-domain-price-table {
  width: 100%;
  border-collapse: collapse;
}

.home-domain-price-table th,
.home-domain-price-table td {
  padding: 0.52rem 0.6rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: middle;
  font-size: 0.88rem;
}

.home-domain-price-table th {
  font-size: 0.78rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.home-domain-price-table tbody tr:last-child td {
  border-bottom: none;
}

.home-domain-price-cta {
  white-space: nowrap;
}

.home-domain-price-more-link {
  margin-top: 0.3rem;
}

.home-domain-provider-badges {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}

.home-domain-provider-badges .badge {
  font-size: 0.68rem;
  padding: 0.11rem 0.38rem;
}

.domains-page {
  display: grid;
  gap: 0.72rem;
}

.domains-page.section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.page-main:has(.domains-page) {
  min-height: auto;
  padding-bottom: 1.2rem;
}

.domains-head .lead {
  margin-bottom: 0.2rem;
}

.domains-info-note {
  margin: 0;
  max-width: 80ch;
}

.domains-filter-card {
  margin-top: 0.1rem;
}

.domains-filter-grid-search {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
}

.domains-filter-grid-display {
  grid-template-columns: minmax(0, 220px);
}

.domains-filter-display-panel {
  background: #ffffff;
  box-shadow: none;
  flex: 1 1 520px;
  margin: 0;
  max-width: none;
}

.domains-filter-display-panel .providers-filter-group-title {
  margin-bottom: 0.35rem;
}

.domains-filter-options-content {
  align-items: end;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(0, 220px) minmax(260px, 1fr);
}

.domains-filter-option-stack {
  display: grid;
  gap: 0.35rem;
}

.domains-filter-actions {
  align-self: flex-end;
  margin-top: 0;
}

.domains-filter-bottom-row {
  justify-content: space-between;
}

.domains-result-meta {
  margin: 0.05rem 0 0;
}

.domains-transparency-note {
  align-items: flex-start;
  background: #e2f2ff;
  border-color: #7db8dc;
  color: #0b2948;
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
}

.domains-transparency-note p {
  line-height: 1.55;
  margin: 0;
}

.domains-transparency-note p + p {
  margin-top: 0.32rem;
}

.domains-transparency-label {
  color: #0a3761;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.domains-transparency-icon {
  align-items: center;
  background: #0b5c91;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 800;
  height: 1.65rem;
  justify-content: center;
  line-height: 1;
  margin-top: 0.05rem;
  width: 1.65rem;
}

.domains-ad-slot {
  margin-top: 0.2rem;
}

.domains-section-card {
  display: grid;
  gap: 0.6rem;
}

.domains-section-head {
  display: grid;
  gap: 0.15rem;
}

.domains-section-head h2 {
  margin: 0;
}

.domains-section-head .muted {
  margin: 0;
}

.domains-empty-note {
  margin: 0;
}

.domains-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 940px;
}

.domains-table-wrap {
  overflow-x: auto;
}

.domains-table th,
.domains-table td {
  padding: 0.58rem 0.62rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
  font-size: 0.89rem;
}

.domains-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #64748b;
}

.domains-table tbody tr:last-child td {
  border-bottom: none;
}

.domains-tld-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  border: 1px solid #cbdaf2;
  background: #eef4ff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 0.14rem 0.52rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.domains-renewal-highlight {
  color: #0f3f86;
  font-size: 0.95rem;
}

.domains-provider-badges {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.domains-offer-cta {
  white-space: nowrap;
}

.domains-offer-name {
  margin: 0.32rem 0 0;
  font-size: 0.79rem;
  max-width: 24ch;
  line-height: 1.28;
}

@media (max-width: 760px) {
  .awards-hoster-month-page {
    padding-top: 0.82rem;
    padding-bottom: 0.9rem;
  }

  .uptime-speedtest-page {
    padding-top: 0.82rem;
    padding-bottom: 0.9rem;
  }

  .award-monitoring-grid {
    grid-template-columns: 1fr;
  }

  .uptime-speedtest-facts,
  .uptime-speedtest-section-head,
  .uptime-speedtest-good-grid {
    grid-template-columns: 1fr;
  }

  .uptime-speedtest-podium .provider-podium-rank-1 {
    transform: none;
  }

  .domains-page.section {
    padding-top: 0.86rem;
    padding-bottom: 0.88rem;
  }

  .domains-table th,
  .domains-table td {
    padding: 0.48rem 0.5rem;
    font-size: 0.83rem;
  }

  .domains-table th {
    font-size: 0.72rem;
  }
}

.provider-card-grid-sidebar {
  grid-template-columns: 1fr;
}

.provider-monitoring-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: 0.45rem;
  margin: 0.55rem 0 0.45rem;
  min-width: 0;
}

.provider-monitoring-grid div {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.45rem 0.5rem;
  display: grid;
  gap: 0.14rem;
  min-width: 0;
}

.provider-monitoring-grid span {
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
  font-size: 0.78rem;
}

.provider-monitoring-grid strong {
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.provider-monitoring-page {
  display: grid;
  gap: 0.88rem;
}

.provider-monitoring-head .lead {
  margin-bottom: 0.12rem;
}

.provider-monitoring-lead-note {
  margin: 0;
  font-size: 0.85rem;
}

.monitoring-clarity-box {
  margin: 0.65rem 0 0.8rem;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.6rem 0.75rem;
}

.monitoring-clarity-box p {
  margin: 0 0 0.25rem;
}

.monitoring-clarity-list {
  margin: 0;
  padding-left: 1rem;
}

.monitoring-clarity-list li {
  margin-bottom: 0.18rem;
}

.monitoring-target-status {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.provider-monitoring-shell {
  display: grid;
  gap: 0.72rem;
}

.provider-monitoring-next-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.provider-monitoring-next-step h2 {
  margin: 0;
}

.provider-monitoring-next-step .muted {
  margin: 0.18rem 0 0;
}

.provider-monitoring-next-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.provider-monitoring-next-step.is-ok {
  border-color: #bbf7d0;
  background: #f4fdf7;
}

.provider-monitoring-next-step.is-ok .provider-monitoring-next-kicker {
  color: #166534;
}

.provider-monitoring-next-step.is-info {
  border-color: #bfdbfe;
  background: #f3f8ff;
}

.provider-monitoring-next-step.is-info .provider-monitoring-next-kicker {
  color: #1d4ed8;
}

.provider-monitoring-next-step.is-warning,
.provider-monitoring-next-step.is-critical {
  border-color: #fdba74;
  background: #fff8f1;
}

.provider-monitoring-next-step.is-critical {
  border-color: #fecdd3;
  background: #fff6f8;
}

.provider-monitoring-next-step.is-warning .provider-monitoring-next-kicker {
  color: #9a3412;
}

.provider-monitoring-next-step.is-critical .provider-monitoring-next-kicker {
  color: #9f1239;
}

.provider-monitoring-award-highlight {
  background: #f6fbff;
}

.provider-monitoring-award-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.provider-monitoring-award-highlight-grid p {
  margin: 0;
}

.provider-monitoring-block {
  border: 1px solid #dbe4f0;
  border-radius: 11px;
  background: #f8fafd;
  padding: 0.72rem 0.78rem;
  display: grid;
  gap: 0.5rem;
}

.provider-monitoring-block .form-section-title {
  margin: 0;
}

.provider-monitoring-block .muted {
  margin: 0;
}

.provider-monitoring-status-grid {
  margin-top: 0.15rem;
}

.provider-monitoring-kpi-hint {
  margin: 0;
  font-size: 0.79rem;
  color: #475569;
  line-height: 1.35;
}

.provider-monitoring-status-grid .provider-performance-card.monitoring-state-ok {
  border-color: #bbf7d0;
  background: #f4fdf7;
}

.provider-monitoring-status-grid .provider-performance-card.monitoring-state-info {
  border-color: #bfdbfe;
  background: #f3f8ff;
}

.provider-monitoring-status-grid .provider-performance-card.monitoring-state-warning {
  border-color: #fdba74;
  background: #fff8f1;
}

.provider-monitoring-form-grid {
  margin-top: 0.1rem;
}

.provider-monitoring-empty-card {
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.66rem 0.72rem;
  display: grid;
  gap: 0.32rem;
}

.provider-monitoring-empty-card p {
  margin: 0;
}

.provider-monitoring-empty-card .btn {
  justify-self: start;
}

.provider-monitoring-target-list {
  display: grid;
  gap: 0.66rem;
}

.provider-monitoring-target-card {
  border: 1px solid #dbe4f0;
  border-radius: 11px;
  background: #ffffff;
  padding: 0.66rem 0.72rem;
  display: grid;
  gap: 0.52rem;
}

.provider-monitoring-target-card.state-ok {
  border-color: #bbf7d0;
  background: #f8fdf9;
}

.provider-monitoring-target-card.state-error {
  border-color: #fdba74;
  background: #fff8f1;
}

.provider-monitoring-target-card.state-paused {
  border-style: dashed;
  background: #fbfcfe;
}

.provider-monitoring-target-head {
  display: flex;
  justify-content: space-between;
  gap: 0.55rem;
  align-items: flex-start;
}

.provider-monitoring-target-head h4 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
  color: #0f172a;
}

.provider-monitoring-target-id {
  margin: 0 0 0.12rem;
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 700;
}

.provider-monitoring-target-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  justify-content: flex-end;
}

.provider-monitoring-target-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.provider-monitoring-meta-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d6deea;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  padding: 0.2rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.provider-monitoring-meta-chip.is-ok {
  border-color: #bbf7d0;
  background: #f4fdf7;
  color: #166534;
}

.provider-monitoring-target-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.provider-monitoring-address-label {
  margin: 0 0 0.12rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
  font-weight: 700;
}

.provider-monitoring-address-value {
  margin: 0;
  font-size: 0.86rem;
  color: #1e293b;
  word-break: break-word;
  line-height: 1.4;
}

.provider-monitoring-target-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.provider-monitoring-metric-label {
  margin: 0 0 0.14rem;
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.provider-monitoring-metric-value {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
}

.provider-monitoring-target-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.provider-monitoring-target-actions .btn {
  min-width: 120px;
}

.provider-monitoring-history-list {
  margin-top: 0.1rem;
}

.provider-monitoring-history-list li {
  display: grid;
  gap: 0.2rem;
}

.provider-monitoring-timeline {
  margin: 0.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.provider-monitoring-timeline-item {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #fff;
  padding: 0.54rem 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.55rem;
}

.provider-monitoring-timeline-item.is-ok {
  border-color: #bbf7d0;
  background: #f8fdf9;
}

.provider-monitoring-timeline-item.is-error {
  border-color: #fdba74;
  background: #fff8f1;
}

.provider-monitoring-timeline-item .muted {
  margin-top: 0.12rem;
}

.provider-monitoring-timeline-side {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
}

.provider-monitoring-award-note {
  background: #f8fbff;
}

.provider-monitoring-awards-list .muted {
  margin-top: 0;
}

.provider-monitoring-award-cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.provider-monitoring-award-card {
  display: grid;
  gap: 0.35rem;
}

.provider-monitoring-awards-empty {
  border-style: dashed;
  background: #f8fafc;
}

.provider-badge-row {
  margin: 0.4rem 0 0.2rem;
}

.provider-speed-badge {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
}

.provider-speed-podium {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: end;
}

.provider-podium-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem;
}

.provider-podium-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  font-size: 1.02rem;
}

.provider-podium-rank-1 {
  transform: translateY(-8px);
  border-color: #f0b429;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.provider-podium-rank-2 {
  border-color: #94a3b8;
}

.provider-podium-rank-3 {
  border-color: #c2410c;
}

.provider-logo-image-lg {
  width: auto;
  height: auto;
  max-width: 300px;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

.provider-verified-flag {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.provider-verified-badge-image {
  width: clamp(96px, 10vw, 115px);
  height: auto;
  display: block;
}

.provider-image-preview {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.65rem;
}

.provider-image-preview img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #dbe3ee;
  background: #fff;
}

.provider-image-preview-logo img {
  width: min(220px, 100%);
  height: 220px;
  object-fit: contain;
  padding: 0.35rem;
}

.provider-image-preview-cover img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.provider-upload-note {
  margin: 0.3rem 0 0;
  color: #64748b;
  font-size: 0.8rem;
}

.provider-cover-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.provider-cover-image {
  width: 100%;
  height: auto;
  display: block;
}

.provider-profile-hero {
  padding: 0;
  overflow: hidden;
}

.provider-profile-hero,
.provider-quickfacts-card,
.provider-company-data,
.provider-offers-section,
.provider-certification-block,
.provider-section-anchor,
#provider-infrastructure,
#provider-about,
#provider-categories,
#provider-contact,
#provider-legal-links,
#monitoring-awards,
#bewertungen {
  scroll-margin-top: 96px;
}

.provider-profile-hero .provider-cover-wrap {
  margin: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
  padding: 0.55rem 0.75rem 0.45rem;
}

.provider-profile-hero .provider-cover-image {
  height: clamp(220px, 34vw, 340px);
  object-fit: contain;
  object-position: center center;
  border-radius: 8px;
  background: #f8fafc;
}

.provider-profile-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding: 0.95rem 1rem 0;
}

.provider-profile-identity {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.provider-profile-identity h1 {
  margin: 0;
}

.provider-profile-hero-body {
  padding: 0.75rem 1rem 1rem;
}

.provider-profile-lead {
  margin: 0 0 0.65rem;
  color: #1f2937;
  font-weight: 500;
}

.provider-profile-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.provider-meta-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  color: #334155;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.provider-meta-chip-link {
  text-decoration: none;
}

.provider-meta-chip-link:hover,
.provider-meta-chip-link:focus-visible {
  background: #eef2ff;
  border-color: #bfdbfe;
  text-decoration: none;
}

.provider-quickfacts-card {
  border-color: #dbeafe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.provider-quickfacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 0.6rem;
}

.provider-quickfact {
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  background: #fff;
  padding: 0.7rem 0.75rem;
  min-height: 104px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.provider-quickfact-label {
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.provider-quickfact-value {
  margin: 0.35rem 0 0;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.35;
}

.provider-quickfact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.18rem;
  height: 1.18rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 0.74rem;
  line-height: 1;
}

.provider-quickfact-verified.is-verified {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.provider-quickfact-verified.is-verified .provider-quickfact-icon {
  background: #dcfce7;
  color: #15803d;
}

.provider-quickfact-verified.is-verified .provider-quickfact-value {
  color: #166534;
}

.provider-quickfact-rating.is-empty {
  border-color: #dbe3ee;
  background: #f8fafc;
}

.provider-quickfact-chip-list {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.provider-quickfact-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  color: #334155;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.provider-profile-jump-nav {
  margin: 1rem 0;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.provider-profile-jump-label {
  flex: 0 0 auto;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.provider-profile-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.provider-profile-jump-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  background: #f8fafc;
  color: #1e3a8a;
  padding: 0.35rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.provider-profile-jump-links a:hover,
.provider-profile-jump-links a:focus-visible {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
  text-decoration: none;
}

.provider-profile-layout {
  display: block;
}

.provider-profile-main-flow {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.provider-profile-side-nav {
  display: none;
}

.provider-profile-side-card {
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
  padding: 0.72rem;
}

.provider-profile-side-title {
  margin: 0 0 0.5rem;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.provider-profile-side-links {
  display: grid;
  gap: 0.25rem;
}

.provider-profile-side-links a {
  display: flex;
  align-items: center;
  min-height: 34px;
  border-radius: 10px;
  color: #334155;
  padding: 0.34rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.25;
  transition: background 0.15s ease, color 0.15s ease;
}

.provider-profile-side-links a:hover,
.provider-profile-side-links a:focus-visible {
  background: #eff6ff;
  color: #1d4ed8;
  text-decoration: none;
}

.provider-profile-side-subnav {
  display: grid;
  gap: 0.12rem;
  margin: -0.1rem 0 0.2rem 0.45rem;
  padding: 0.1rem 0 0.15rem 0.55rem;
  border-left: 1px solid #dbe3ee;
}

.provider-profile-side-links .provider-profile-side-sub-link {
  min-height: 26px;
  border-radius: 8px;
  color: #64748b;
  padding: 0.22rem 0.38rem;
  font-size: 0.74rem;
  font-weight: 650;
  gap: 0.35rem;
}

.provider-profile-side-links .provider-profile-side-sub-link:hover,
.provider-profile-side-links .provider-profile-side-sub-link:focus-visible {
  background: #f8fafc;
  color: #1e3a8a;
}

.provider-profile-side-sub-count {
  flex: 0 0 auto;
  margin-left: auto;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 800;
}

@media (min-width: 1200px) {
  .provider-profile-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }

  .provider-profile-side-nav {
    display: block;
    position: sticky;
    top: 96px;
    align-self: start;
  }

  .provider-profile-side-card {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-gutter: stable;
  }
}

.provider-company-data {
  border-color: #dbe3ee;
}

.provider-company-data-intro {
  margin-top: -0.25rem;
}

.provider-company-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.6rem;
}

.provider-company-data-item {
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  background: #fff;
  padding: 0.68rem 0.72rem;
  min-height: 92px;
}

.provider-company-data-label {
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.provider-company-data-value {
  margin: 0.36rem 0 0;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.35;
}

.provider-company-data-value .provider-rating-stars {
  margin-left: 0.3rem;
  font-size: 0.95rem;
}

.provider-company-data-item-links {
  grid-column: 1 / -1;
}

.provider-section-anchor {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.provider-company-data-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem 0.72rem;
}

.provider-company-data-links a {
  font-weight: 700;
}

.provider-certification-block {
  margin-top: 1rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 0.9rem;
}

.provider-certification-block h3 {
  margin-top: 0;
}

.provider-offers-section {
  border-color: #dbeafe;
}

.provider-offers-list {
  display: grid;
  gap: 0.75rem;
}

.provider-offer-card {
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.provider-offer-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.provider-offer-card-title {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.25;
}

.provider-offer-card-title a {
  color: #0f172a;
  text-decoration: none;
}

.provider-offer-card-title a:hover,
.provider-offer-card-title a:focus-visible {
  text-decoration: underline;
}

.provider-offer-card-summary {
  margin: 0.3rem 0 0;
}

.provider-offer-card-category {
  white-space: nowrap;
}

.provider-offer-card-body {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: minmax(185px, 225px) 1fr;
  gap: 0.8rem;
}

.provider-offer-card-price-main {
  margin: 0;
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 800;
}

.provider-offer-card-price .muted {
  margin: 0.2rem 0 0;
  display: block;
}

.provider-offer-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.provider-offer-highlight-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  color: #1f2937;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  font-size: 0.77rem;
  font-weight: 600;
}

.provider-offer-card-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.provider-offer-card-actions {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.provider-offer-card-actions .provider-offer-btn {
  width: auto;
  min-width: 128px;
  text-align: center;
}

.provider-offers-table-wrap {
  overflow-x: auto;
}

.provider-offers-table {
  min-width: 920px;
}

.provider-offers-actions-cell {
  min-width: 140px;
}

.provider-offers-actions {
  display: grid;
  gap: 0.45rem;
}

.provider-offers-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.62rem;
}

.provider-offers-focus-card {
  display: grid;
  gap: 0.44rem;
}

.provider-offers-focus-head {
  display: grid;
  gap: 0.16rem;
}

.provider-offers-focus-kicker {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.provider-offers-focus-head strong {
  font-size: 1rem;
  line-height: 1.35;
}

.provider-offers-focus-card.focus-critical {
  border-color: #fecdd3;
  background: #fff7fa;
}

.provider-offers-focus-card.focus-critical .provider-offers-focus-kicker {
  color: #9f1239;
}

.provider-offers-focus-card.focus-important {
  border-color: #fcd6aa;
  background: #fffaf1;
}

.provider-offers-focus-card.focus-important .provider-offers-focus-kicker {
  color: #9a3412;
}

.provider-offers-focus-card.focus-hint {
  border-color: #bfdbfe;
  background: #f8fbff;
}

.provider-offers-focus-card.focus-hint .provider-offers-focus-kicker {
  color: #1e3a8a;
}

.provider-month-report-intro {
  margin: 0.2rem 0 0.55rem;
  color: #64748b;
  font-size: 0.86rem;
}

.provider-month-report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(165px, 220px);
  gap: 0.58rem;
  align-items: stretch;
}

.provider-month-report-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.provider-month-report-metric {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  padding: 0.52rem 0.58rem;
  background: #f8fbff;
  display: grid;
  gap: 0.08rem;
  min-height: 84px;
}

.provider-month-report-label {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  color: #64748b;
  font-weight: 700;
}

.provider-month-report-value {
  font-size: 1.04rem;
  line-height: 1.2;
  color: #0f172a;
}

.provider-month-report-sub {
  color: #64748b;
  font-size: 0.74rem;
}

.provider-month-report-visual {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.5rem 0.58rem;
  display: grid;
  gap: 0.28rem;
  justify-items: center;
  align-content: center;
}

.provider-month-ctr-donut {
  --ctr: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 58%, transparent 59%),
    conic-gradient(#2563eb calc(var(--ctr) * 1%), #dbe4f0 0);
  display: grid;
  place-items: center;
}

.provider-month-ctr-donut span {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1e293b;
}

.provider-month-ctr-donut.is-zero {
  background:
    radial-gradient(circle at center, #ffffff 58%, transparent 59%),
    conic-gradient(#cbd5e1 100%, #cbd5e1 0);
}

.provider-month-ctr-donut.has-value {
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.provider-month-report-interpretation {
  margin: 0.52rem 0 0;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  padding: 0.44rem 0.6rem;
  background: #f8fafc;
  font-size: 0.84rem;
}

.provider-month-report-interpretation.is-warning {
  border-color: #fcd6aa;
  background: #fff8eb;
  color: #9a3412;
}

.provider-month-report-interpretation.is-ok {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.provider-month-report-interpretation.is-muted {
  border-color: #dbe4f0;
  background: #f8fafc;
  color: #334155;
}

.provider-month-top-grid {
  margin-top: 0.56rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

.provider-month-top-card {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #fdfefe;
  padding: 0.56rem 0.62rem;
  display: grid;
  gap: 0.34rem;
}

.provider-month-top-card h3 {
  margin: 0;
  font-size: 0.92rem;
}

.provider-month-top-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.provider-month-top-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.provider-month-top-stats span {
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  padding: 0.1rem 0.46rem;
  font-size: 0.73rem;
  color: #334155;
  background: #fff;
  font-weight: 600;
}

.provider-month-top-cta {
  justify-self: start;
}

.provider-month-top-empty {
  margin: 0;
  font-size: 0.84rem;
}

.provider-empty-state {
  border: 1px dashed #cdd8ea;
  border-radius: 11px;
  padding: 0.95rem;
  background: #f8fbff;
  display: grid;
  gap: 0.45rem;
}

.provider-empty-state h3,
.provider-empty-state p {
  margin: 0;
}

.provider-empty-state .btn {
  justify-self: flex-start;
}

.provider-offer-category-nav {
  margin: 0 0 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.provider-offer-category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.62rem;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
}

.provider-offer-category-chip:hover {
  border-color: #93c5fd;
  background: #f8fbff;
  text-decoration: none;
}

.provider-offer-category-chip.is-all {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #334155;
}

.provider-offer-category-sections {
  display: grid;
  gap: 0.95rem;
}

.provider-offer-category-section {
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  background: #fbfdff;
  padding: 0.72rem;
  scroll-margin-top: 5.6rem;
}

.provider-offer-category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.provider-offer-category-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.provider-offer-category-count {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.15rem 0.54rem;
  white-space: nowrap;
}

.provider-offer-category-table-wrap {
  margin-top: 0.55rem;
}

.provider-offer-category-table th,
.provider-offer-category-table td {
  padding: 0.46rem 0.5rem;
  font-size: 0.84rem;
  line-height: 1.35;
}

.provider-offer-row + .provider-offer-row td {
  border-top: 1px solid #edf2f8;
}

.provider-dashboard-offers-table td {
  vertical-align: top;
}

.provider-offer-cell-main {
  min-width: 170px;
}

.provider-offer-cell-metric {
  white-space: nowrap;
}

.provider-offer-cell-metric strong {
  font-size: 0.86rem;
}

.provider-offer-cell-total small {
  display: block;
  line-height: 1.28;
}

.provider-offer-name {
  font-weight: 700;
  line-height: 1.25;
}

.provider-offer-meta,
.provider-offer-meta-sep,
.provider-offer-price,
.provider-offer-updated {
  color: #475569;
  font-size: 0.82rem;
}

.provider-offer-price {
  font-weight: 700;
}

.provider-offer-meta-sep {
  margin: 0 0.22rem;
}

.provider-offer-updated {
  display: inline-block;
  margin-top: 0.16rem;
}

.provider-offer-health {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.provider-offer-health-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #dbe4f0;
  padding: 0.1rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.provider-offer-health-badge.is-critical {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #9f1239;
}

.provider-offer-health-badge.is-warning {
  border-color: #fcd6aa;
  background: #fff8eb;
  color: #9a3412;
}

.provider-offer-health-badge.is-muted {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #475569;
}

.provider-offer-health-badge.is-ok {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.provider-offer-health-badge.is-neutral {
  border-color: #dbe4f0;
  background: #ffffff;
  color: #334155;
}

.provider-dashboard-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  align-items: center;
  min-width: 190px;
}

.provider-dashboard-offer-actions .btn {
  width: auto;
  min-height: 30px;
  padding: 0.28rem 0.5rem;
  font-size: 0.76rem;
  line-height: 1.15;
}

.provider-dashboard-offer-toggle-form {
  display: inline-flex;
  width: auto;
  margin: 0;
}

.provider-dashboard-offer-actions > .btn-primary {
  flex: 1 1 100%;
}

.provider-offer-btn {
  width: 100%;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.46rem 0.78rem;
  text-decoration: none;
}

.provider-offer-btn:hover {
  text-decoration: none;
}

.provider-offer-btn-detail {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

.provider-offer-btn-detail:hover {
  border-color: #93c5fd;
  background: #f8fbff;
}

.provider-offer-btn-go {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 56%, #1e40af 100%);
  box-shadow: 0 6px 14px rgba(29, 78, 216, 0.24);
}

.provider-offer-btn-go:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 8px 16px rgba(30, 64, 175, 0.3);
}

.provider-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.provider-gallery-item {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.provider-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

.compare-table th {
  white-space: nowrap;
}

.compare-matrix-intro {
  margin: 0.35rem 0 0.85rem;
}

.compare-matrix-intro-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
}

.compare-matrix-intro-text {
  margin: 0.28rem 0 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.4;
}

.compare-scroll-hint {
  display: none;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  color: #64748b;
}

.compare-table .compare-feature-col {
  color: #475569;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.compare-table .compare-offer-col {
  vertical-align: top;
}

.compare-offer-head {
  display: grid;
  gap: 0.15rem;
  padding: 0.2rem 0;
}

.compare-offer-title {
  font-size: 1.08rem;
  color: #0f172a;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.compare-offer-meta {
  display: block;
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.25;
}

.compare-offer-provider {
  margin-top: 0.08rem;
}

.compare-offer-category {
  color: #94a3b8;
}

.compare-table .compare-group-row th {
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #334155;
  background: #f1f5f9;
  border-top: 1px solid #dbe4ef;
  padding-top: 0.62rem;
  padding-bottom: 0.52rem;
}

.compare-table td,
.compare-table th {
  min-width: 150px;
}

.compare-table td {
  color: #1f2937;
}

.compare-value-default {
  display: inline-block;
}

.compare-rating-text {
  display: inline-block;
  color: #0f172a;
}

.compare-rating-link {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted #94a3b8;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.compare-rating-link:hover,
.compare-rating-link:focus-visible {
  color: #0369a1;
  border-bottom-color: #0369a1;
}

.compare-value-price {
  display: inline-block;
  font-weight: 700;
  color: #0f172a;
}

.compare-value-missing {
  color: #94a3b8;
}

.compare-bool-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.compare-bool-yes {
  color: #166534;
  background: #dcfce7;
}

.compare-bool-no {
  color: #9f1239;
  background: #ffe4e6;
  border: 1px solid #fecdd3;
}

.compare-cta-row th {
  white-space: nowrap;
}

.compare-matrix-actions {
  display: grid;
  gap: 0.35rem;
  min-width: 140px;
}

.compare-matrix-actions .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 760px) {
  .compare-scroll-hint {
    display: block;
  }
}

.offers-table-wrap {
  overflow-x: auto;
}

.offers-table-view {
  width: 100%;
  min-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.offers-table-view col.offers-col-main {
  width: 27%;
}

.offers-table-view col.offers-col-price {
  width: 12%;
}

.offers-table-view col.offers-col-category {
  width: 12%;
}

.offers-table-view col.offers-col-core {
  width: 16%;
}

.offers-table-view col.offers-col-traffic {
  width: 12%;
}

.offers-table-view col.offers-col-rating {
  width: 12%;
}

.offers-table-view col.offers-col-actions {
  width: 9%;
}

.offers-table-view th,
.offers-table-view td {
  font-size: 0.86rem;
  line-height: 1.3;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  vertical-align: top;
  padding-top: 0.52rem;
  padding-bottom: 0.52rem;
}

.offers-table-view th {
  font-size: 0.8rem;
  color: #475569;
  text-transform: none;
}

.offers-table-view th:nth-child(3),
.offers-table-view td:nth-child(3) {
  padding-right: 0.72rem;
}

.offers-table-view th:nth-child(4),
.offers-table-view td:nth-child(4) {
  padding-left: 0.72rem;
}

.offers-table-title {
  display: block;
  margin: 0;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offers-table-title:hover,
.offers-table-title:focus-visible {
  text-decoration: underline;
}

.offers-table-provider {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
}

.offers-table-provider a {
  color: #1e3a8a;
  text-decoration: none;
}

.offers-table-provider a:hover,
.offers-table-provider a:focus-visible {
  text-decoration: underline;
}

.offers-table-summary {
  margin: 0.26rem 0 0;
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: normal;
}

.offers-table-updated {
  margin: 0.24rem 0 0;
  font-size: 0.74rem;
  color: #64748b;
}

.offers-table-price-main {
  display: block;
  font-weight: 800;
  color: #0f172a;
}

.offers-table-price-sub {
  margin-top: 0.18rem;
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.3;
}

.offers-table-category-badge {
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 0.72rem;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  line-height: 1.24;
  vertical-align: top;
}

.offers-table-category-sub {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  line-height: 1.25;
}

.offers-table-facts {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.22rem;
}

.offers-table-facts li {
  margin: 0;
}

.offers-table-stack {
  display: grid;
  gap: 0.22rem;
}

.offers-table-stack span,
.offers-table-stack a {
  display: block;
}

.offers-table-award-note {
  margin-top: 0.2rem;
  font-size: 0.72rem;
}

.offers-table-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
}

.offers-table-actions {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.offers-table-actions .btn {
  width: 100%;
  text-align: center;
  font-size: 0.74rem;
  line-height: 1.22;
  white-space: normal;
  overflow-wrap: anywhere;
  padding: 0.34rem 0.4rem;
}

.lead {
  margin-top: 0.25rem;
  color: #334155;
}

.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.inline-info {
  border: 1px solid #99f6e4;
  background: #ecfeff;
  color: #155e75;
  border-radius: 10px;
  padding: 0.68rem 0.8rem;
}

.inline-info-error {
  border-color: #fecaca;
  background: var(--error-bg);
  color: var(--error);
}

.inline-info-title {
  display: block;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #0f766e;
}

.inline-info-error .inline-info-title {
  color: var(--error);
}

.inline-info p {
  margin: 0;
}

.price {
  margin: 0.35rem 0;
  color: var(--brand-strong);
  font-weight: 800;
}

.offer-rating-stars {
  margin: 0.25rem 0 0.2rem;
  color: #f59e0b;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
  font-weight: 700;
}

.rating-anchor-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.rating-anchor-link-stars {
  display: inline-block;
}

.rating-anchor-link-inline {
  display: inline-block;
}

.rating-anchor-link:hover,
.rating-anchor-link:focus-visible {
  color: #0f172a;
  border-bottom-color: #94a3b8;
}

.provider-rating-panel {
  border: 1px solid #bfdbfe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.provider-rating-stars {
  margin: 0.2rem 0;
  color: #f59e0b;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
}

.rating-radio-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
}

.rating-radio-option {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem 0.55rem;
  background: #fff;
}

.rating-radio-option input {
  width: auto;
  margin-right: 0.35rem;
}

.provider-rating-form .rating-radio-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.6rem;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.provider-rating-form .rating-radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.provider-rating-form .rating-radio-option:has(input:focus-visible) {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 2px;
}

.provider-rating-form .rating-radio-option:has(input:checked) {
  border-color: #f59e0b;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.18);
}

.provider-rating-form .rating-radio-option:hover {
  border-color: #f59e0b;
  transform: translateY(-1px);
}

.rating-star-choice {
  display: grid;
  gap: 0.15rem;
  text-align: center;
  line-height: 1.1;
}

.rating-star-symbols {
  color: #f59e0b;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.rating-star-value {
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
}

.provider-rating-entry {
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  background: #fff;
}

.provider-rating-entry-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  cursor: default;
  list-style: none;
}

.provider-rating-entry-summary::-webkit-details-marker {
  display: none;
}

.provider-rating-entry-title {
  font-weight: 700;
  color: #0f172a;
}

.provider-rating-entry p {
  margin: 0.55rem 0 0;
}

.provider-rating-entry-details {
  border-top: 1px solid #e2e8f0;
  padding-top: 0.55rem;
}

.provider-rating-entry-details-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #1d4ed8;
  cursor: pointer;
  font-weight: 700;
  list-style-position: inside;
}

.provider-rating-entry-details-summary:hover {
  color: #1e40af;
}

.provider-rating-entry-detail-card {
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 0.75rem;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.provider-rating-entry-detail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.8rem;
  margin-bottom: 0.5rem;
}

.provider-rating-entry-detail-head h4,
.provider-rating-entry-detail-head p {
  margin: 0;
}

.provider-rating-entry-criteria-list {
  display: grid;
  gap: 0.45rem;
}

.provider-rating-entry-criterion {
  display: grid;
  grid-template-columns: minmax(150px, 1.1fr) minmax(120px, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
}

.provider-rating-entry-criterion-label {
  color: #475569;
  font-weight: 700;
}

.provider-rating-mini-meter {
  width: 100%;
  height: 0.55rem;
}

.provider-rating-mini-meter::-webkit-meter-bar {
  border: 0;
  border-radius: 999px;
  background: #e2e8f0;
}

.provider-rating-mini-meter::-webkit-meter-optimum-value {
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.provider-rating-mini-meter::-moz-meter-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.provider-rating-entry-recommendation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.provider-rating-list .list-card {
  border-color: #dbeafe;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.provider-rating-empty {
  margin-top: 0.65rem;
}

.provider-rating-form-details {
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  padding: 0.28rem 0.82rem 0.82rem;
}

.provider-rating-form-summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
  list-style: none;
}

.provider-rating-form-summary::-webkit-details-marker {
  display: none;
}

.provider-rating-form-summary::after {
  content: "▾";
  margin-left: 0.42rem;
  color: #64748b;
  font-size: 0.82rem;
}

.provider-rating-form-details[open] .provider-rating-form-summary::after {
  content: "▴";
}

.provider-rating-form {
  margin-top: 0.78rem;
}

.flash {
  width: min(1320px, calc(100% - 1.4rem));
  margin: 0.75rem auto 0;
  border-radius: 10px;
  padding: 0.68rem 0.8rem;
  border: 1px solid transparent;
  font-weight: 600;
}

.flash-success {
  background: var(--ok-bg);
  color: var(--ok);
  border-color: #86efac;
}

.flash-error {
  background: var(--error-bg);
  color: var(--error);
  border-color: #fecaca;
}

.flash-info {
  background: var(--info-bg);
  color: var(--info);
  border-color: #99f6e4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.stat p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.stat strong {
  font-size: 1.7rem;
}

.stat .stat-compare {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.stat .stat-compare-up {
  color: #065f46;
}

.stat .stat-compare-down {
  color: #991b1b;
}

.stat .stat-compare-neutral {
  color: #475569;
}

.table-wrap {
  overflow-x: auto;
}

.analytics-trend-panel {
  margin: 0.7rem 0 1rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fbfdff;
}

.analytics-trend-panel h3,
.analytics-trend-panel h4 {
  margin: 0 0 0.25rem;
}

.analytics-trend-list {
  display: grid;
  gap: 0.55rem;
}

.analytics-trend-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.7rem;
  align-items: center;
}

.analytics-trend-date {
  font-weight: 700;
  font-size: 0.86rem;
  color: #0f172a;
}

.analytics-trend-bars {
  display: grid;
  gap: 0.35rem;
}

.analytics-trend-bar-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 0.55rem;
  align-items: center;
}

.analytics-trend-label {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.analytics-trend-track {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.analytics-trend-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.analytics-trend-fill-primary {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.analytics-trend-fill-accent {
  background: linear-gradient(90deg, #0f766e, #14b8a6);
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 0.5rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.prose p {
  margin-top: 0;
}

.prose h2,
.prose h3 {
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
}

.prose ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.prose li {
  margin-bottom: 0.3rem;
}

.prose address {
  font-style: normal;
  line-height: 1.6;
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

.prose .legal-meta {
  color: #475569;
  font-size: 0.92rem;
}

.prose .legal-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 0.75rem;
  color: #1e3a8a;
}

.prose .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.6rem;
}

.prose .legal-table th,
.prose .legal-table td {
  border: 1px solid var(--border);
  padding: 0.45rem 0.5rem;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: normal;
}

.provider-badge-showcase {
  margin: 0.75rem 0 1rem;
  padding: 0.9rem;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

.provider-badge-showcase img {
  max-width: min(100%, 280px);
  height: auto;
  display: block;
}

.provider-badge-showcase-large img {
  max-width: min(100%, 340px);
}

.provider-verification-badge-card .muted {
  margin-top: 0.2rem;
}

.provider-badge-placeholder {
  margin: 0.75rem 0 0.35rem;
  border: 1px dashed #93c5fd;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  gap: 0.26rem;
  justify-items: center;
  text-align: center;
}

.provider-badge-placeholder strong {
  font-size: 1rem;
  color: #1e3a8a;
}

.provider-badge-placeholder span {
  color: #334155;
  font-size: 0.86rem;
}

.provider-verification-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.provider-verification-benefit {
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.62rem 0.7rem;
}

.provider-verification-benefit h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: #1d4ed8;
}

.provider-verification-benefit p {
  margin: 0;
  color: #334155;
  font-size: 0.85rem;
  line-height: 1.45;
}

.provider-verification-page {
  display: grid;
  gap: 0.85rem;
}

.provider-verification-status-card {
  display: grid;
  gap: 0.75rem;
}

.provider-verification-status-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.provider-verification-status-main h2 {
  margin-bottom: 0.22rem;
}

.provider-verification-status-badge-line {
  margin: 0.34rem 0 0;
}

.provider-verification-status-badge-preview {
  min-width: 140px;
}

.provider-verification-status-badge-preview img {
  width: clamp(96px, 10vw, 122px);
  height: auto;
  display: block;
}

.provider-verification-next-step {
  border: 1px solid #dbe6f5;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.65rem 0.72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.provider-verification-next-step h3 {
  margin: 0 0 0.22rem;
  font-size: 0.98rem;
}

.provider-verification-next-step .muted {
  margin: 0;
  max-width: 680px;
}

.provider-verification-status-approved {
  border-color: #a7f3d0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.provider-verification-status-pending {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.provider-verification-status-needs-changes {
  border-color: #fcd34d;
  background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.provider-verification-status-not-requested {
  border-color: #dbe4f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.provider-verification-quickfacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.58rem;
}

.provider-verification-quickfact {
  border: 1px solid #dbe6f5;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.58rem 0.66rem;
  display: grid;
  gap: 0.2rem;
}

.provider-verification-quickfact h3 {
  margin: 0;
  font-size: 0.9rem;
  color: #1d4ed8;
}

.provider-verification-quickfact p {
  margin: 0;
  font-size: 0.83rem;
  color: #334155;
  line-height: 1.45;
}

.provider-verification-checklist {
  margin-top: 0.66rem;
}

.provider-verification-checklist h3 {
  margin: 0 0 0.22rem;
  font-size: 0.96rem;
}

.provider-verification-form-card h2 {
  margin-bottom: 0.2rem;
}

.provider-verification-form-card .card.soft h3 {
  margin: 0 0 0.24rem;
  font-size: 0.92rem;
}

.provider-verification-details {
  display: grid;
  gap: 0.45rem;
}

.provider-verification-details h2 {
  margin-bottom: 0.1rem;
}

.provider-verification-timeline {
  margin-top: 0.35rem;
}

.provider-membership-page {
  display: grid;
  gap: 0.88rem;
}

.provider-membership-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.62rem;
  align-items: stretch;
}

.provider-membership-status-card {
  border: 1px solid #dbe6f5;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.68rem 0.72rem;
  display: grid;
  gap: 0.18rem;
  align-content: start;
  min-height: 118px;
}

.provider-membership-status-label {
  margin: 0;
  color: #64748b;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.provider-membership-status-value {
  margin: 0;
  color: #0f172a;
  font-size: 1.22rem;
  line-height: 1.15;
  font-weight: 800;
}

.provider-membership-status-value .badge {
  font-size: 0.78rem;
}

.provider-membership-status-hint {
  margin: 0;
  color: #475569;
  font-size: 0.8rem;
  line-height: 1.4;
}

.provider-membership-status-card-maturity {
  border-color: #cfe0f8;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.provider-membership-status-card-maturity .provider-membership-maturity-progress {
  margin-top: 0.12rem;
}

.provider-membership-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
  margin-top: 0.72rem;
}

.provider-membership-insight-card {
  border: 1px solid #dbe6f5;
  border-radius: 10px;
  background: #fff;
  padding: 0.68rem 0.72rem;
  display: grid;
  gap: 0.2rem;
}

.provider-membership-insight-value {
  margin: 0;
  color: #0f172a;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 800;
}

.provider-membership-link-wrap {
  font-size: 1rem;
}

.provider-membership-link {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 700;
}

.provider-membership-link:hover,
.provider-membership-link:focus-visible {
  text-decoration: underline;
}

.provider-membership-next-step {
  border-color: #d8e3f3;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.provider-membership-next-step h2 {
  margin-bottom: 0.2rem;
}

.provider-membership-next-step h3 {
  margin: 0 0 0.22rem;
  font-size: 1.02rem;
}

.provider-membership-next-step .muted {
  margin: 0;
  max-width: 700px;
}

.provider-membership-next-step.is-critical {
  border-color: #fecaca;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
}

.provider-membership-next-step.is-important {
  border-color: #fcd34d;
  background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.provider-membership-next-step.is-info {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.provider-membership-next-step.is-ok {
  border-color: #a7f3d0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.provider-membership-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem;
}

.provider-membership-section-card {
  border: 1px solid #dce6f4;
  border-radius: 10px;
  background: #fbfdff;
  padding: 0.64rem 0.68rem;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 0.26rem;
}

.provider-membership-section-card h3 {
  margin: 0;
  font-size: 0.95rem;
  color: #0f172a;
}

.provider-membership-section-status {
  margin: 0;
  font-size: 0.83rem;
  color: #1e293b;
  font-weight: 700;
}

.provider-membership-section-card .muted {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.42;
}

.provider-membership-section-card .btn {
  justify-self: start;
  align-self: end;
  margin-top: 0.14rem;
}

.provider-membership-maturity-card {
  border-color: #cfe0f8;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.provider-membership-maturity-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.provider-membership-maturity-progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
}

.provider-membership-signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.provider-membership-signal-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.16rem 0.48rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.provider-membership-signal-chip.is-active {
  background: #dcfce7;
  color: #166534;
}

.provider-membership-signal-chip.is-open {
  background: #fef3c7;
  color: #92400e;
}

.align-end {
  display: flex;
  align-items: end;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
}

.provider-shell {
  grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.provider-main-shell {
  min-width: 0;
}

.provider-main-header {
  margin-bottom: 0.86rem;
}

.provider-main-header .lead {
  margin-bottom: 0;
}

.provider-dashboard-sections-compact {
  display: grid;
  gap: 0.62rem;
}

.provider-dashboard-sections-compact h2 {
  margin: 0;
}

.provider-dashboard-sections-compact .muted {
  margin: 0;
}

.provider-profile-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.58rem;
}

.provider-profile-summary-item {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.56rem 0.62rem;
  display: grid;
  gap: 0.2rem;
}

.provider-profile-summary-label {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
  font-weight: 700;
}

.provider-profile-summary-item strong {
  color: #0f172a;
  font-size: 0.92rem;
  line-height: 1.35;
  word-break: break-word;
}

.provider-area-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.62rem;
}

.provider-area-card {
  border: 1px solid #d8e3f3;
  border-radius: 11px;
  background: #fbfdff;
  padding: 0.64rem 0.7rem;
  display: grid;
  gap: 0.42rem;
}

.provider-area-card h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #1e293b;
}

.provider-area-card .muted {
  font-size: 0.82rem;
  line-height: 1.38;
}

.provider-area-card-actions {
  display: grid;
  gap: 0.34rem;
}

.provider-area-card-actions .btn {
  width: 100%;
}

.provider-dashboard-collapsible {
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: 12px;
}

.provider-dashboard-collapsible > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}

.provider-dashboard-collapsible > summary::-webkit-details-marker {
  display: none;
}

.provider-dashboard-collapsible > summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 0.35rem;
  color: #334155;
  transition: transform 0.2s ease;
}

.provider-dashboard-collapsible[open] > summary::before {
  transform: rotate(90deg);
}

.provider-dashboard-collapsible > .muted {
  margin: 0.32rem 0 0;
}

.provider-dashboard-collapsible-content {
  margin-top: 0.62rem;
  display: grid;
  gap: 0.9rem;
}

.provider-focus-block {
  border: 1px solid #d8e3f3;
  border-radius: 13px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0.85rem;
  display: grid;
  gap: 0.72rem;
}

.provider-focus-header {
  display: grid;
  gap: 0.32rem;
}

.provider-focus-header h2 {
  margin: 0;
}

.provider-focus-header .muted {
  margin: 0;
}

.provider-focus-block > .card {
  margin: 0;
}

.provider-snippet-card {
  border-color: #cfddef;
}

.provider-snippet-helper {
  border: 1px solid #dbeafe;
  background: #f8fbff;
  border-radius: 10px;
  padding: 0.52rem 0.62rem;
}

.provider-snippet-helper p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.35;
  color: #1e3a8a;
}

.provider-snippet-grid {
  align-items: start;
}

.provider-snippet-preview {
  border: 1px dashed #bfd3f5;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.56rem;
}

.provider-snippet-preview-award {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 122px;
}

.provider-snippet-list {
  gap: 0.62rem;
}

.provider-snippet-list-card {
  border-color: #d9e7fb;
  background: #fbfdff;
}

.provider-snippet-input {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.81rem;
  background: #f8fafc;
}

.provider-snippet-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.79rem;
  line-height: 1.42;
  min-height: 108px;
  background: #f8fafc;
  width: 100%;
  overflow: auto;
}

.provider-visibility-page {
  display: grid;
  gap: 0.88rem;
}

.provider-visibility-head .lead {
  margin-bottom: 0.1rem;
}

.provider-visibility-next-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.provider-visibility-next-step h2 {
  margin: 0;
}

.provider-visibility-next-step .muted {
  margin: 0.2rem 0 0;
}

.provider-visibility-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.provider-visibility-next-step.is-ok {
  border-color: #bbf7d0;
  background: #f4fdf7;
}

.provider-visibility-next-step.is-info {
  border-color: #bfdbfe;
  background: #f3f8ff;
}

.provider-visibility-next-step.is-warning {
  border-color: #fdba74;
  background: #fff8f1;
}

.provider-visibility-status-card {
  display: grid;
  gap: 0.6rem;
}

.provider-visibility-status-card.is-verified {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #ffffff 0%, #f4fdf7 100%);
}

.provider-visibility-status-card.is-pending {
  border-color: #fdba74;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
}

.provider-visibility-status-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.provider-visibility-status-header h2 {
  margin: 0;
}

.provider-visibility-status-header .muted {
  margin: 0.18rem 0 0;
}

.provider-visibility-snippet-stack {
  display: grid;
  gap: 0.72rem;
}

.provider-visibility-verified-preview {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.provider-visibility-verified-preview img {
  width: min(210px, 100%);
  height: auto;
}

.provider-visibility-field-help {
  margin: 0.16rem 0 0.28rem;
  font-size: 0.78rem;
  color: #475569;
}

.provider-visibility-example-box {
  margin-bottom: 0.4rem;
}

.provider-visibility-archive-card .provider-visibility-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.provider-visibility-award-card {
  display: grid;
  gap: 0.62rem;
}

.provider-visibility-speed-list {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.provider-visibility-speed-item {
  display: grid;
  gap: 0.34rem;
}

.provider-visibility-empty-state {
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.68rem 0.72rem;
  display: grid;
  gap: 0.3rem;
}

.provider-visibility-empty-state p {
  margin: 0;
}

.provider-sensitive-section {
  position: relative;
}

.provider-sensitive-header {
  margin-bottom: 0.36rem;
}

.provider-sensitive-header h2 {
  margin: 0;
}

.provider-sensitive-header .muted {
  margin: 0.24rem 0 0;
  font-size: 0.83rem;
  line-height: 1.38;
}

.provider-sensitive-neutral {
  border-color: #cdd8ea;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.provider-sensitive-warning {
  border-color: #f1d6a2;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
}

.provider-sensitive-warning .provider-sensitive-header h2 {
  color: #9a3412;
}

.provider-sensitive-danger {
  border-color: #f5c2c7;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f6 100%);
}

.provider-sensitive-danger .provider-sensitive-header h2 {
  color: #9f1239;
}

.provider-channel-card {
  display: grid;
  gap: 0.5rem;
}

.provider-channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.55rem;
}

.provider-channel-link {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.58rem 0.62rem;
  color: #0f172a;
  text-decoration: none;
  display: grid;
  gap: 0.22rem;
}

.provider-channel-link strong {
  font-size: 0.92rem;
}

.provider-channel-link span {
  font-size: 0.8rem;
  color: #334155;
  line-height: 1.4;
}

.provider-channel-link:hover,
.provider-channel-link:focus-visible {
  border-color: #a7bcd9;
  box-shadow: 0 0 0 2px rgba(56, 85, 133, 0.12);
}

.provider-channel-link.is-active {
  border-color: #a3c3f4;
  background: #edf4ff;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.26);
}

.provider-ticket-status-overview h2,
.provider-ticket-legend h2,
.provider-ticket-form-card h2 {
  margin-bottom: 0.28rem;
}

.provider-ticket-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 0.52rem;
}

.provider-ticket-kpi-card {
  border: 1px solid #dce6f4;
  background: #f8fafd;
  border-radius: 10px;
  padding: 0.52rem 0.6rem;
  display: grid;
  gap: 0.18rem;
}

.provider-ticket-kpi-label {
  margin: 0;
  color: #64748b;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.provider-ticket-kpi-value {
  margin: 0;
  color: #0f172a;
  font-size: 1.34rem;
  line-height: 1.1;
  font-weight: 800;
}

.provider-ticket-kpi-hint {
  margin: 0;
  font-size: 0.76rem;
  color: #475569;
}

.provider-status-legend {
  margin: 0.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.provider-status-legend li {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  color: #334155;
  font-size: 0.84rem;
  line-height: 1.4;
}

.provider-ticket-form-card .muted {
  margin-bottom: 0.2rem;
}

.provider-ticket-history-head {
  margin-bottom: 0.35rem;
}

.provider-ticket-history-head h2 {
  margin-bottom: 0.2rem;
}

.provider-ticket-history-head .muted {
  margin: 0;
}

.provider-ticket-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.65rem 0.72rem;
}

.provider-ticket-empty p {
  margin: 0;
}

.provider-delete-process-card {
  border-color: #d9e2f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.provider-delete-process-list {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: #334155;
}

.provider-delete-process-list li {
  line-height: 1.45;
}

.provider-feature-history {
  margin-top: 0.7rem;
}

.provider-feature-card {
  display: grid;
  gap: 0.66rem;
}

.provider-ticket-card {
  padding: 0;
  overflow: hidden;
}

.provider-ticket-card > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.72rem 0.78rem;
}

.provider-ticket-card > summary::-webkit-details-marker {
  display: none;
}

.provider-ticket-summary-main {
  min-width: 0;
  flex: 1 1 360px;
}

.provider-ticket-summary-side {
  display: grid;
  gap: 0.42rem;
  justify-items: end;
}

.provider-ticket-excerpt {
  margin: 0.2rem 0 0;
}

.provider-ticket-dates {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
}

.provider-ticket-toggle {
  font-size: 0.79rem;
  color: #334155;
  font-weight: 600;
}

.provider-ticket-card .provider-ticket-toggle-open {
  display: none;
}

.provider-ticket-card[open] .provider-ticket-toggle-open {
  display: inline;
}

.provider-ticket-card[open] .provider-ticket-toggle-closed {
  display: none;
}

.provider-ticket-content {
  display: grid;
  gap: 0.58rem;
  padding: 0 0.78rem 0.78rem;
}

.provider-ticket-card[open] {
  border-color: #c9d8ee;
}

.provider-feature-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #e2e8f0;
}

.provider-feature-card-head h3 {
  margin: 0.15rem 0 0;
  font-size: 1.02rem;
}

.provider-feature-ticket-id {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #475569;
}

.provider-feature-card-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.34rem;
}

.provider-feature-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem 0.8rem;
  font-size: 0.82rem;
}

.provider-feature-message-box,
.provider-feature-answer-box {
  margin: 0;
}

.provider-feature-message-box h4,
.provider-feature-answer-box h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.provider-feature-message-box p,
.provider-feature-answer-box p {
  margin: 0;
  color: #334155;
  line-height: 1.52;
}

.provider-feature-answer-box {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.provider-performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.62rem;
}

.provider-performance-card {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fafd;
  padding: 0.65rem 0.7rem;
  display: grid;
  gap: 0.26rem;
}

.provider-performance-label {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
  font-weight: 700;
}

.provider-performance-value {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
}

.provider-performance-card .muted {
  margin: 0;
  font-size: 0.79rem;
  color: #475569;
  line-height: 1.35;
}

.provider-award-history-intro {
  margin: 0.15rem 0 0.75rem;
}

.provider-award-summary-grid {
  margin-bottom: 0.85rem;
}

.provider-award-history-list {
  margin-top: 0.65rem;
}

.provider-award-history-card {
  display: grid;
  grid-template-columns: minmax(56px, 72px) minmax(0, 1fr);
  align-items: center;
  gap: 0.72rem;
}

.provider-award-history-card-text-only {
  grid-template-columns: minmax(0, 1fr);
}

.provider-award-history-image {
  display: block;
  width: auto;
  max-width: 72px;
  max-height: 64px;
}

.provider-award-history-body {
  min-width: 0;
}

.provider-award-history-body h4 {
  margin: 0.34rem 0 0;
}

.provider-award-history-body p {
  margin: 0.28rem 0 0;
}

.provider-award-history-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.provider-award-history-link {
  font-size: 0.88rem;
}

.provider-ratings-page {
  display: grid;
  gap: 0.88rem;
}

.provider-ratings-head .lead {
  margin-bottom: 0;
}

.provider-ratings-next-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.provider-ratings-next-step h2 {
  margin: 0;
}

.provider-ratings-next-step .muted {
  margin: 0.2rem 0 0;
}

.provider-ratings-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.provider-ratings-next-step.is-ok {
  border-color: #bbf7d0;
  background: #f4fdf7;
}

.provider-ratings-next-step.is-info {
  border-color: #bfdbfe;
  background: #f3f8ff;
}

.provider-ratings-next-step.is-warning {
  border-color: #fdba74;
  background: #fff8f1;
}

.provider-ratings-kpi-card {
  display: grid;
  gap: 0.6rem;
}

.provider-ratings-kpi-card h2 {
  margin: 0;
}

.provider-ratings-kpi-grid .provider-performance-card.provider-ratings-kpi-total {
  border-color: #bfdbfe;
  background: #f3f8ff;
}

.provider-ratings-kpi-grid .provider-performance-card.provider-ratings-kpi-pending {
  border-color: #fdba74;
  background: #fff8f1;
}

.provider-ratings-kpi-grid .provider-performance-card.provider-ratings-kpi-approved {
  border-color: #bbf7d0;
  background: #f4fdf7;
}

.provider-ratings-kpi-grid .provider-performance-card.provider-ratings-kpi-action {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.provider-ratings-process-card {
  display: grid;
  gap: 0.56rem;
}

.provider-ratings-process-card h2 {
  margin: 0;
}

.provider-ratings-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.56rem;
}

.provider-ratings-process-step {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fafd;
  padding: 0.56rem 0.62rem;
  display: grid;
  gap: 0.2rem;
}

.provider-ratings-process-step h3 {
  margin: 0;
  font-size: 0.86rem;
}

.provider-ratings-process-step p {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.4;
  color: #334155;
}

.provider-ratings-list-card > h2 {
  margin: 0;
}

.provider-ratings-list-card > .muted {
  margin: 0.2rem 0 0;
}

.provider-ratings-list {
  margin-top: 0.62rem;
}

.provider-rating-ticket-card.is-approved[open] {
  border-color: #bbf7d0;
}

.provider-rating-ticket-card.is-pending[open] {
  border-color: #fdba74;
}

.provider-rating-ticket-card.is-muted[open] {
  border-color: #d5dee9;
}

.provider-rating-ticket-card.rating-tone-critical {
  box-shadow: inset 4px 0 0 #f97316;
}

.provider-rating-ticket-card.rating-tone-neutral {
  box-shadow: inset 4px 0 0 #3b82f6;
}

.provider-rating-ticket-card.rating-tone-positive {
  box-shadow: inset 4px 0 0 #22c55e;
}

.provider-ratings-badges {
  max-width: 270px;
}

.provider-ratings-secondary-actions {
  background: #f8fafc;
  border-color: #dbe4f0;
}

.provider-ratings-inline-details {
  border-top: 1px dashed #d5dee9;
  padding-top: 0.45rem;
}

.provider-ratings-inline-details + .provider-ratings-inline-details {
  margin-top: 0.5rem;
}

.provider-ratings-inline-details > summary {
  cursor: pointer;
  color: #1e293b;
}

.provider-ratings-inline-details > summary::-webkit-details-marker {
  display: none;
}

.provider-ratings-inline-details > summary::after {
  content: '▸';
  margin-left: 0.35rem;
  color: #64748b;
  font-size: 0.82rem;
}

.provider-ratings-inline-details[open] > summary::after {
  content: '▾';
}

.provider-ratings-empty-state {
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.7rem 0.75rem;
  display: grid;
  gap: 0.35rem;
}

.provider-ratings-empty-state p {
  margin: 0;
}

.provider-tenders-page {
  display: grid;
  gap: 0.88rem;
}

.provider-tenders-head .lead {
  margin-bottom: 0;
}

.provider-tenders-kpi-card {
  display: grid;
  gap: 0.58rem;
}

.provider-tenders-kpi-grid .provider-kpi-card {
  min-height: 0;
}

.provider-tenders-kpi-note {
  margin: 0;
  font-size: 0.82rem;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 0.45rem 0.56rem;
}

.provider-tenders-filter-card {
  gap: 0.72rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.provider-tenders-filter-head {
  display: grid;
  gap: 0.18rem;
}

.provider-tenders-filter-head h2 {
  margin: 0;
}

.provider-tenders-filter-head .muted {
  margin: 0;
  font-size: 0.84rem;
}

.provider-tenders-filter-actions {
  justify-content: flex-end;
}

.provider-tenders-results-summary {
  margin: 0;
  font-size: 0.83rem;
}

.provider-tenders-response-card h2 {
  margin-bottom: 0.25rem;
}

.provider-tenders-response-card .muted {
  margin-top: 0;
}

.provider-tenders-prefill-note {
  margin: 0 0 0.55rem;
  padding: 0.5rem 0.58rem;
  border-radius: 8px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 0.84rem;
  font-weight: 600;
}

.provider-tenders-empty-note {
  margin: 0 0 0.55rem;
  padding: 0.5rem 0.58rem;
  border-radius: 8px;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  color: #475569;
  font-size: 0.84rem;
}

.provider-tenders-respond-btn {
  justify-self: start;
}

.provider-tenders-list-head .muted {
  margin: 0.15rem 0 0;
}

.provider-tender-card-list {
  gap: 0.68rem;
}

.provider-tender-card {
  --tender-accent: #3b82f6;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.56rem;
  border-color: #bfdbfe;
  border-left: 4px solid var(--tender-accent);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.provider-tender-card.is-verified-only {
  --tender-accent: #16a34a;
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #ffffff 0%, #f4fdf7 100%);
}

.provider-tender-card.is-urgent {
  --tender-accent: #d97706;
  border-color: #fdba74;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
}

.provider-tender-card.is-answered {
  --tender-accent: #1d4ed8;
  border-style: dashed;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.provider-tender-card-head {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  justify-content: space-between;
}

.provider-tender-card-id {
  margin: 0 0 0.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}

.provider-tender-card-head h3 {
  margin: 0;
  font-size: 1.04rem;
  color: #0f172a;
}

.provider-tender-send-btn {
  white-space: nowrap;
}

.provider-tender-status-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.provider-tender-status-open {
  background: #eff6ff;
  color: #1d4ed8;
}

.provider-tender-status-answered {
  background: #eaf2ff;
  color: #1e40af;
}

.provider-tender-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.provider-tender-meta-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d6deea;
  background: #f8fafc;
  color: #334155;
  padding: 0.2rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.provider-tender-meta-chip.is-warning {
  border-color: #fdba74;
  background: #fff7ed;
  color: #9a3412;
}

.provider-tender-budget-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
  background: #eef2ff;
  color: #3730a3;
  padding: 0.22rem 0.56rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.provider-tender-card-summary {
  margin: 0;
  line-height: 1.52;
  color: #1e293b;
}

.provider-tender-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem;
}

.provider-tender-detail {
  border-top: 1px solid #dbe4f0;
  padding-top: 0.4rem;
  flex: 1 1 auto;
}

.provider-tender-detail > summary {
  cursor: pointer;
  color: #475569;
  font-weight: 600;
  font-size: 0.84rem;
}

.provider-tender-detail-content {
  margin-top: 0.35rem;
}

.provider-tender-detail-content p {
  margin: 0;
}

.provider-tenders-pagination {
  align-items: center;
}

.provider-tenders-history {
  display: grid;
  gap: 0.62rem;
}

.provider-tender-history-list {
  display: grid;
  gap: 0.56rem;
}

.provider-tender-history-item {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.62rem 0.7rem;
  display: grid;
  gap: 0.32rem;
}

.provider-tender-history-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  justify-content: space-between;
  align-items: flex-start;
}

.provider-tender-history-head h3 {
  margin: 0;
  font-size: 0.96rem;
}

.provider-tender-history-head .muted {
  margin: 0.14rem 0 0;
}

.provider-tender-history-text {
  margin: 0;
  color: #334155;
  line-height: 1.48;
}

.public-tenders-page {
  display: grid;
  gap: 0.9rem;
}

.public-tenders-hero {
  display: grid;
  gap: 0.72rem;
  border-color: #dbe5f4;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.public-tenders-hero-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.public-tenders-hero-copy h1 {
  margin: 0;
}

.public-tenders-hero-kicker {
  margin: 0 0 0.12rem;
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #475569;
}

.public-tenders-hero-copy .lead {
  margin: 0.35rem 0 0;
  max-width: 72ch;
}

.public-tenders-create-btn {
  white-space: nowrap;
}

.public-tenders-hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.public-tenders-filter-card {
  gap: 0.82rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.public-tenders-static-status {
  margin: 0;
  border: 1px solid #dbe4f0;
  border-radius: 9px;
  background: #f8fafc;
  color: #475569;
  padding: 0.55rem 0.65rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 0.83rem;
  font-weight: 600;
}

.public-tenders-results-summary {
  margin: 0;
  font-size: 0.89rem;
}

.public-tender-card-list {
  gap: 0.72rem;
}

.public-tender-card {
  gap: 0.62rem;
}

.public-tender-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.72rem;
}

.public-tender-head-main {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 0.36rem;
}

.public-tender-head-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.public-tender-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.22rem;
  line-height: 1.28;
}

.public-tender-side-meta {
  display: grid;
  gap: 0.34rem;
  justify-items: flex-end;
  flex: 0 0 auto;
}

.public-tender-summary {
  margin: 0;
  color: #1e293b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.public-tender-meta-row {
  gap: 0.35rem;
}

.public-tender-detail {
  border-top: 1px solid #dbe4f0;
  padding-top: 0.45rem;
}

.public-tender-detail-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2dceb;
  border-radius: 9px;
  background: #ffffff;
  color: #1f2937;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.38rem 0.72rem;
}

.public-tender-detail-summary::-webkit-details-marker {
  display: none;
}

.public-tender-detail[open] .public-tender-detail-summary {
  border-color: #bfd0e8;
  background: #f8fbff;
}

.public-tender-detail-summary:hover {
  border-color: #bfcde2;
}

.public-tender-detail-content {
  margin-top: 0.48rem;
  display: grid;
  gap: 0.4rem;
}

.public-tender-detail-content p {
  margin: 0;
}

.public-tenders-pagination {
  align-items: center;
}

.public-tenders-empty-state {
  display: grid;
  gap: 0.55rem;
  border-style: dashed;
  background: #f8fbff;
}

.public-tenders-empty-state h2 {
  margin: 0;
}

.provider-profile-sections {
  display: grid;
  gap: 0.85rem;
}

.provider-form-card {
  border: 1px solid #dbe4f0;
  border-radius: 11px;
  background: #f8fafd;
  padding: 0.8rem 0.9rem;
  display: grid;
  gap: 0.66rem;
}

.provider-form-card .form-section-title {
  margin: 0;
}

.provider-form-help {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
}

.provider-form-card fieldset {
  margin: 0;
  background: #fff;
}

.provider-form-actions {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
  padding: 0.68rem 0.75rem;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fbff;
}

.it-specialization-picker {
  display: grid;
  gap: 0.55rem;
}

.it-specialization-picker-title {
  margin: 0;
}

.it-specialization-groups {
  display: grid;
  gap: 0.5rem;
}

.it-specialization-group-card {
  border: 1px solid #d6e2f0;
  border-radius: 10px;
  background: #fbfdff;
  padding: 0.45rem 0.55rem;
}

.it-specialization-group-summary {
  cursor: pointer;
  font-weight: 700;
  color: #334155;
  list-style: none;
}

.it-specialization-group-summary::-webkit-details-marker {
  display: none;
}

.it-specialization-grid {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.it-specialization-check {
  margin: 0;
  min-width: 0;
  padding: 0.42rem 0.5rem;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #ffffff;
}

.it-specialization-check span {
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.it-specialization-check input:disabled + span {
  opacity: 0.55;
}

.it-specialization-helper-note {
  margin-top: 0.15rem;
}

.provider-category-checkbox-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem 0.62rem;
  align-items: stretch;
}

.provider-category-check {
  margin: 0;
  min-width: 0;
  min-height: 48px;
  padding: 0.52rem 0.58rem;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fbff;
  line-height: 1.35;
}

.provider-category-check input {
  flex: 0 0 auto;
}

.provider-category-check span {
  min-width: 0;
  hyphens: auto;
  word-break: normal;
  overflow-wrap: break-word;
}

@media (max-width: 1180px) {
  .provider-category-checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .provider-category-checkbox-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .it-specialization-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.provider-overview-card {
  padding: 0.92rem;
}

.provider-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.62rem;
}

.provider-kpi-card {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.65rem 0.7rem;
  display: grid;
  gap: 0.28rem;
}

.provider-kpi-label {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
  font-weight: 700;
}

.provider-kpi-value {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
}

.provider-kpi-hint {
  margin: 0;
  font-size: 0.79rem;
  color: #475569;
  line-height: 1.35;
}

.provider-next-step-card {
  border: 1px solid #cfe0ff;
  border-radius: 11px;
  background: linear-gradient(120deg, #eef4ff 0%, #f8fbff 100%);
  padding: 0.78rem 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.provider-next-step-head {
  display: grid;
  gap: 0.2rem;
}

.provider-next-step-kicker {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1e40af;
  font-weight: 700;
}

.provider-next-step-head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: #0f172a;
}

.provider-next-step-head p {
  margin: 0;
  font-size: 0.84rem;
  color: #334155;
  line-height: 1.42;
}

.provider-next-step-action {
  white-space: nowrap;
}

.provider-kpi-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.provider-onboarding-card {
  border: 1px solid #dbe4f0;
  border-radius: 11px;
  background: #f8fbff;
  padding: 0.72rem;
  display: grid;
  gap: 0.62rem;
}

.provider-onboarding-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.provider-onboarding-label {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
  font-weight: 700;
}

.provider-onboarding-head h2 {
  margin: 0.08rem 0 0.18rem;
  font-size: 1.2rem;
}

.provider-onboarding-ratio {
  margin: 0;
  font-size: 0.81rem;
  color: #475569;
  font-weight: 700;
}

.provider-onboarding-progress {
  width: 100%;
  height: 11px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.provider-onboarding-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
}

.provider-missing-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.provider-missing-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  border: 1px solid #cfd9ea;
  background: #fff;
  color: #334155;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
}

.provider-missing-chip:hover,
.provider-missing-chip:focus-visible {
  border-color: #93c5fd;
  color: #1d4ed8;
}

.provider-missing-chip-note {
  margin: 0;
  font-size: 0.8rem;
  color: #166534;
}

.provider-onboarding-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.provider-onboarding-item {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem 0.55rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.55rem;
}

.provider-onboarding-item-main {
  display: flex;
  gap: 0.45rem;
  min-width: 0;
}

.provider-onboarding-item-main strong {
  display: block;
  margin-bottom: 0.12rem;
  font-size: 0.88rem;
  color: #0f172a;
}

.provider-onboarding-item-main p {
  margin: 0;
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.33;
}

.provider-onboarding-state-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  min-width: 70px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid #dbe4f0;
  background: #f8fafc;
  color: #334155;
}

.provider-onboarding-item.is-done {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.provider-onboarding-item.is-done .provider-onboarding-state-badge {
  border-color: #86efac;
  background: #dcfce7;
  color: #166534;
}

.provider-onboarding-item.is-open {
  border-color: #dbe4f0;
}

.provider-onboarding-action {
  white-space: nowrap;
}

.provider-onboarding-coming-soon {
  white-space: nowrap;
  align-self: center;
}

.provider-onboarding-overview-link {
  justify-self: flex-start;
}

.provider-quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
}

.provider-quick-actions-grid .btn {
  width: 100%;
}

.provider-quick-actions-request {
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.14);
}

.provider-marketplace-request-page .lead {
  max-width: 760px;
}

.provider-marketplace-request-kicker {
  margin: 0 0 0.35rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-marketplace-request-panel {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(20, 184, 166, 0.08)),
    var(--surface);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

.provider-marketplace-request-head {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.provider-marketplace-request-head h2 {
  margin: 0.45rem 0 0;
}

.provider-marketplace-request-notice {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  margin: 1rem 0;
  padding: 0.9rem 1rem;
}

.provider-marketplace-request-notice p {
  margin: 0.35rem 0 0;
}

.provider-marketplace-request-form textarea {
  min-height: 230px;
}

.provider-marketplace-request-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.provider-marketplace-page .lead,
.provider-marketplace-form-page .lead {
  max-width: 820px;
}

.provider-marketplace-form {
  gap: 1.25rem;
}

.provider-marketplace-form > section {
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  padding-bottom: 1.2rem;
}

.provider-marketplace-form > section:last-of-type {
  border-bottom: 0;
}

.notice {
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}

.notice-info {
  background: rgba(37, 99, 235, 0.06);
  color: #1e3a8a;
}

.notice-success {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.2);
  color: #166534;
}

.notice-error {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.22);
  color: #991b1b;
}

.notice-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.24);
  color: #92400e;
}

.checkbox-card {
  align-items: flex-start;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  display: flex;
  gap: 0.8rem;
  line-height: 1.45;
  margin: 0;
  padding: 0.95rem 1rem;
  width: 100%;
}

.checkbox-card:hover {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.checkbox-card:has(input:checked) {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.45);
}

.checkbox-card:has(input:focus-visible) {
  outline: 3px solid rgba(37, 99, 235, 0.2);
  outline-offset: 2px;
}

.checkbox-card input[type="checkbox"],
.checkbox-card input[type="radio"] {
  accent-color: var(--primary);
  align-self: flex-start;
  box-sizing: border-box;
  flex: 0 0 1rem;
  height: 1rem;
  min-height: 1rem;
  min-width: 1rem;
  margin-top: 0.25rem;
  padding: 0;
  width: 1rem;
}

.checkbox-card span {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
  white-space: normal;
}

.checkbox-card strong {
  display: block;
}

.checkbox-card small {
  color: var(--text-muted);
  display: block;
  font-weight: 500;
  line-height: 1.55;
  margin-top: 0.35rem;
}

.table-responsive {
  overflow-x: auto;
}

.text-right {
  text-align: right;
}

.provider-inquiry-filters {
  align-items: end;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(8rem, 1fr));
}

.provider-inquiry-filter-search {
  grid-column: span 2;
}

.provider-inquiry-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.provider-inquiry-list {
  display: grid;
  gap: 1rem;
}

.provider-inquiry-item {
  background: linear-gradient(135deg, #fff, #f8fbff 72%, #eef6ff);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-left: 5px solid rgba(245, 158, 11, 0.78);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

.provider-inquiry-item--read {
  border-left-color: rgba(37, 99, 235, 0.72);
}

.provider-inquiry-item--done {
  border-left-color: rgba(22, 163, 74, 0.72);
}

.provider-inquiry-item--archived {
  background: linear-gradient(135deg, #fff, #f8fafc);
  border-left-color: rgba(100, 116, 139, 0.72);
}

.provider-inquiry-item-head {
  align-items: flex-start;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
}

.provider-inquiry-item h3 {
  margin: 0;
  overflow-wrap: anywhere;
}

.provider-inquiry-date,
.provider-inquiry-label {
  color: var(--text-muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  margin: 0;
}

.provider-inquiry-badges,
.provider-inquiry-actions,
.provider-inquiry-pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.provider-inquiry-status-new {
  background: #fff7ed;
  border: 1px solid rgba(245, 158, 11, 0.34);
  color: #9a3412;
}

.provider-inquiry-status-read {
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, 0.24);
  color: #1d4ed8;
}

.provider-inquiry-status-done {
  background: #ecfdf5;
  border: 1px solid rgba(22, 163, 74, 0.24);
  color: #15803d;
}

.provider-inquiry-status-archived {
  background: #f1f5f9;
  border: 1px solid rgba(100, 116, 139, 0.28);
  color: #475569;
}

.provider-inquiry-type-badge {
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: #64748b;
  font-weight: 650;
}

.provider-inquiry-body {
  display: grid;
  gap: 0.85rem;
}

.provider-inquiry-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  box-shadow: inset 3px 0 0 rgba(37, 99, 235, 0.16);
  padding: 0.85rem;
}

.provider-inquiry-panel-message {
  background: rgba(239, 246, 255, 0.55);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: inset 3px 0 0 rgba(37, 99, 235, 0.34);
}

.provider-inquiry-panel-head {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.provider-inquiry-panel-head span {
  color: #0f172a;
  font-weight: 800;
}

.provider-inquiry-panel-head small {
  color: var(--text-muted);
  font-weight: 650;
  text-align: right;
}

.provider-inquiry-summary-grid,
.provider-inquiry-detail-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.provider-inquiry-summary-grid > div,
.provider-inquiry-detail-grid > div {
  background: rgba(248, 250, 252, 0.72);
  border-radius: 10px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 0.55rem 0.6rem;
}

.provider-inquiry-details {
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(248, 250, 252, 0.72);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.provider-inquiry-details summary {
  color: var(--primary);
  cursor: pointer;
  font-weight: 750;
}

.provider-inquiry-detail-grid {
  margin-top: 0.75rem;
}

.provider-inquiry-message {
  grid-column: 1 / -1;
}

.provider-inquiry-message-preview {
  color: #334155;
  font-weight: 650;
  line-height: 1.55;
  margin: 0;
}

.provider-inquiry-message p {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  margin: 0.25rem 0 0;
  padding: 0.75rem;
}

.provider-inquiry-action-hint {
  color: var(--text-muted);
  flex: 1 1 16rem;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.provider-inquiry-delete-form {
  border-left: 1px solid rgba(148, 163, 184, 0.28);
  margin-left: 0.2rem;
  padding-left: 0.65rem;
}

.provider-quick-actions-note {
  margin-top: 0.72rem;
  padding-top: 0.72rem;
  border-top: 1px solid #dbe4f0;
  display: grid;
  gap: 0.5rem;
}

.provider-quick-actions-note .muted {
  margin: 0;
}

.provider-todo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.provider-todo-item {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.56rem 0.62rem;
  border-radius: 10px;
  border: 1px solid #dbe4f0;
  background: #f8fafc;
}

.provider-todo-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  color: #0f172a;
}

.provider-todo-item p {
  margin: 0;
  color: #334155;
  font-size: 0.82rem;
  line-height: 1.35;
}

.provider-todo-item .btn {
  white-space: nowrap;
}

.provider-todo-list-compact {
  gap: 0.45rem;
}

.provider-todo-item-priority {
  background: #fff;
}

.provider-priority-badge {
  margin: 0 0 0.22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #dbe4f0;
  padding: 0.08rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.provider-priority-critical {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #9f1239;
}

.provider-priority-important {
  background: #fff8eb;
  border-color: #f5d4a5;
  color: #9a3412;
}

.provider-priority-hint {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e3a8a;
}

.provider-todo-priority-critical {
  border-color: #fbcfe8;
  background: #fff7fa;
}

.provider-todo-priority-important {
  border-color: #f5d4a5;
  background: #fffaf1;
}

.provider-todo-priority-hint {
  border-color: #bfdbfe;
  background: #f8fbff;
}

.provider-todo-warning {
  border-color: #f5d4a5;
  background: #fff8ef;
}

.provider-todo-info {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.admin-main {
  min-width: 0;
}

.admin-side {
  position: sticky;
  top: 84px;
  height: fit-content;
}

.admin-side h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.admin-nav-list {
  display: grid;
  gap: 0.75rem;
}

.admin-nav-group {
  border-top: 1px solid #e2e8f0;
  padding-top: 0.62rem;
}

.admin-nav-group:first-child {
  border-top: 0;
  padding-top: 0.12rem;
}

.admin-nav-group-title {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #64748b;
}

.admin-nav-group-items {
  display: grid;
  gap: 0.32rem;
}

.admin-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  width: 100%;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  border: 1px solid transparent;
  color: #334155;
  font-weight: 600;
}

.admin-nav-icon {
  display: inline-grid;
  place-items: center;
  min-width: 1.45rem;
  height: 1.45rem;
  border-radius: 8px;
  border: 1px solid #d4dce9;
  color: #475569;
  background: #f8fafc;
}

.admin-nav-icon svg {
  width: 0.94rem;
  height: 0.94rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-nav-label {
  min-width: 0;
  line-height: 1.28;
  white-space: normal;
}

.admin-nav-badge {
  margin-left: auto;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.38rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.admin-nav-link:hover {
  background: #f8fafc;
  text-decoration: none;
}

.admin-nav-link.active {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e3a8a;
}

.admin-nav-link.active .admin-nav-icon {
  border-color: #9db8e8;
  background: #dbeafe;
  color: #1d4ed8;
}

.admin-kpi-grid .stat {
  padding: 0.75rem 0.8rem;
}

.admin-kpi-grid .stat strong {
  font-size: 1.45rem;
}

.admin-kpi-card {
  border: 1px solid #d9e2ef;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-kpi-link {
  display: grid;
  gap: 0.18rem;
  color: inherit;
  text-decoration: none;
}

.admin-kpi-title {
  margin: 0;
  font-size: 0.86rem;
  color: #5b6b84;
  font-weight: 600;
}

.admin-kpi-context {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.18rem;
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #475569;
  background: #eef2f8;
}

.admin-kpi-card:hover {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.admin-kpi-card:hover .admin-kpi-link,
.admin-kpi-card:focus-within .admin-kpi-link {
  text-decoration: none;
}

.admin-kpi-card .admin-kpi-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 8px;
}

.admin-kpi-neutral {
  border-color: #d9e2ef;
  background: #ffffff;
}

.admin-kpi-success {
  border-color: #b7e4c7;
  background: #f2fbf5;
}

.admin-kpi-success .admin-kpi-context {
  background: #ddf5e3;
  color: #166534;
}

.admin-kpi-warning {
  border-color: #f2c58a;
  background: #fff8ef;
}

.admin-kpi-warning .admin-kpi-context {
  background: #fee9cd;
  color: #9a3412;
}

.admin-kpi-danger {
  border-color: #efb2b2;
  background: #fff1f1;
}

.admin-kpi-danger .admin-kpi-context {
  background: #fee2e2;
  color: #991b1b;
}

.cron-jobs-summary {
  margin-top: 0.75rem;
}

.cron-jobs-table-wrap {
  overflow-x: auto;
}

.cron-jobs-table {
  min-width: 980px;
}

.cron-jobs-table td,
.cron-jobs-table th {
  vertical-align: top;
}

.cron-jobs-table code {
  white-space: nowrap;
}

.migration-version-hints p {
  margin: 0.35rem 0 0;
}

.migration-inline-badge {
  margin-left: 0.35rem;
}

.migration-inline-note {
  color: #64748b;
  font-size: 0.82rem;
  margin-left: 0.35rem;
}

.migration-log-filter {
  display: grid;
  gap: 0.65rem;
}

.migration-log-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem;
}

.migration-log-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.migration-log-summary {
  margin: 0.65rem 0 0;
}

.migration-log-table td,
.migration-log-table th {
  vertical-align: top;
}

.migration-log-latest-failed td {
  background: #fff4f4;
}

.migration-executed-table {
  font-size: 0.88rem;
}

.migration-executed-table td,
.migration-executed-table th {
  padding-top: 0.42rem;
  padding-bottom: 0.42rem;
}

.migration-executed-latest-success td {
  background: #f4fbf6;
}

.admin-section {
  padding: 0.9rem 0.95rem;
}

.admin-dashboard-collapsible {
  border: 1px dashed #d0dceb;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.68rem 0.74rem;
}

.admin-dashboard-collapsible > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}

.admin-dashboard-collapsible > summary::-webkit-details-marker {
  display: none;
}

.admin-dashboard-collapsible > summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 0.35rem;
  color: #334155;
  transition: transform 0.2s ease;
}

.admin-dashboard-collapsible[open] > summary::before {
  transform: rotate(90deg);
}

.admin-dashboard-collapsible-content {
  margin-top: 0.68rem;
  display: grid;
  gap: 0.72rem;
}

.admin-section-dense .table-wrap {
  margin-top: 0.55rem;
}

.admin-section-dense h3 {
  margin-top: 1rem;
}

.admin-feature-detail {
  display: grid;
  gap: 0.8rem;
}

.admin-feature-detail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #e2e8f0;
}

.admin-feature-detail-main h3 {
  margin: 0.18rem 0 0.25rem;
  font-size: 1.05rem;
}

.admin-feature-ticket-id {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #475569;
  font-weight: 700;
}

.admin-feature-tech-meta {
  margin: 0;
  font-size: 0.79rem;
}

.admin-feature-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.admin-feature-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.55rem;
}

.admin-feature-meta-grid > div {
  display: grid;
  gap: 0.12rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  background: #f8fbff;
}

.admin-feature-message-box {
  margin: 0;
}

.admin-feature-message-box h4 {
  margin: 0 0 0.42rem;
}

.admin-feature-message-text {
  margin: 0;
  color: #334155;
  line-height: 1.52;
}

.admin-feature-work-form {
  margin-top: 0.1rem;
}

.admin-feature-work-grid {
  display: grid;
  gap: 0.58rem;
}

.admin-feature-work-card {
  padding: 0.65rem 0.7rem;
}

.admin-feature-work-card h4 {
  margin: 0 0 0.42rem;
  font-size: 0.9rem;
}

.admin-feature-work-card label {
  font-size: 0.81rem;
}

.admin-ticket-card {
  padding: 0;
  overflow: hidden;
}

.admin-ticket-card > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.8rem 0.9rem;
}

.admin-ticket-card > summary::-webkit-details-marker {
  display: none;
}

.admin-ticket-summary-main {
  min-width: 0;
  flex: 1 1 360px;
}

.admin-ticket-summary-side {
  display: grid;
  gap: 0.42rem;
  justify-items: end;
}

.admin-ticket-excerpt {
  margin: 0.22rem 0 0;
}

.admin-ticket-provider {
  margin: 0.2rem 0 0;
}

.admin-ticket-dates {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
}

.admin-ticket-toggle {
  font-size: 0.79rem;
  color: #334155;
  font-weight: 600;
}

.admin-ticket-card .admin-ticket-toggle-open {
  display: none;
}

.admin-ticket-card[open] .admin-ticket-toggle-open {
  display: inline;
}

.admin-ticket-card[open] .admin-ticket-toggle-closed {
  display: none;
}

.admin-ticket-content {
  display: grid;
  gap: 0.62rem;
  padding: 0 0.9rem 0.9rem;
}

.admin-ticket-card[open] {
  border-color: #c9d8ee;
}

.admin-ticket-low {
  border-left: 4px solid #f59e0b;
}

.admin-ticket-low[open] {
  border-color: #fcd34d;
}

.admin-action-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.7rem;
}

.admin-action-group {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.65rem 0.7rem;
}

.admin-action-group h3 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  color: #334155;
}

.admin-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-action-list .btn {
  padding: 0.32rem 0.58rem;
  font-size: 0.82rem;
}

.admin-table {
  min-width: 980px;
}

.admin-table th {
  white-space: nowrap;
  font-size: 0.79rem;
  letter-spacing: 0.01em;
  color: #475569;
}

.admin-table td {
  font-size: 0.88rem;
}

.domain-marketplace-admin-table-card {
  border: 1px solid #d9e3f1;
  background: #f8fbff;
  padding: 0.5rem;
}

.domain-marketplace-admin-table-wrap {
  margin-top: 0;
}

.domain-marketplace-admin-table {
  background: #ffffff;
  border-collapse: collapse;
}

.domain-marketplace-admin-table thead th {
  background: #f1f5f9;
  border-bottom: 1px solid #cbd5e1;
}

.domain-marketplace-admin-table tbody td {
  border-top: 1px solid #e2e8f0;
}

.domain-marketplace-admin-table tbody tr:nth-child(even) {
  background: #fbfdff;
}

.domain-marketplace-admin-table tbody tr:hover {
  background: #f3f8ff;
}

.verified-provider-anchor-info {
  scroll-margin-top: 6rem;
}

.providers-verified-info summary,
.verified-provider-anchor-info summary {
  cursor: pointer;
  font-weight: 700;
}

.providers-verified-trust {
  border-color: #bfd7ea;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.providers-verified-trust summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: #0f172a;
}

.providers-verified-hero {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.providers-verified-badge-preview {
  border: 1px solid #d9e7f3;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.75rem;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
}

.providers-verified-badge-preview img {
  width: min(132px, 100%);
  height: auto;
  display: block;
}

.providers-verified-copy {
  display: grid;
  gap: 0.48rem;
}

.providers-verified-grid,
.providers-verified-case-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.72rem;
}

.providers-verified-panel,
.providers-verified-mediation {
  border: 1px solid #d9e7f3;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.72rem 0.78rem;
}

.providers-verified-mediation {
  margin-top: 0.9rem;
}

.providers-verified-panel h2,
.providers-verified-panel h3,
.providers-verified-mediation h2,
.providers-verified-mediation h3,
.providers-verified-case-grid h3,
.providers-verified-case-grid h4 {
  margin: 0 0 0.42rem;
  color: #12335b;
  font-size: 0.95rem;
}

.providers-verified-case-grid > div {
  border-left: 3px solid #c8dff1;
  padding-left: 0.72rem;
}

.providers-verified-note {
  margin-top: 0.82rem;
  border-top: 1px solid #d9e7f3;
  padding-top: 0.72rem;
}

.providers-verified-info p {
  margin-top: 0.55rem;
}

.providers-verified-info ul {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.22rem;
}

@media (max-width: 720px) {
  .providers-verified-hero {
    grid-template-columns: 1fr;
  }

  .providers-verified-badge-preview {
    justify-items: start;
  }
}

.admin-table-cell-actions {
  min-width: 220px;
}

.admin-inline-edit-form {
  display: grid;
  gap: 0.45rem;
}

.admin-inline-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.admin-inline-edit-grid-single {
  grid-template-columns: 1fr;
}

.admin-inline-edit-form label {
  font-size: 0.75rem;
  margin-bottom: 0.12rem;
}

.admin-inline-edit-form input,
.admin-inline-edit-form select {
  min-height: 34px;
  padding: 0.33rem 0.5rem;
}

.admin-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.admin-actions-inline .btn {
  min-height: 32px;
  padding: 0.31rem 0.55rem;
  font-size: 0.8rem;
}

.admin-inline-action {
  margin: 0;
}

.admin-actions-compact .btn {
  white-space: nowrap;
}

.admin-users-table .admin-table-cell-actions {
  min-width: 250px;
}

.admin-users-table {
  min-width: 1300px;
}

.admin-users-edit-cell {
  min-width: 340px;
}

.admin-users-password-cell {
  min-width: 280px;
}

.admin-users-support-cell {
  min-width: 240px;
}

.admin-user-edit-grid {
  grid-template-columns: minmax(230px, 1fr) minmax(150px, 0.72fr);
  gap: 0.5rem 0.6rem;
}

.admin-user-row-actions {
  gap: 0.45rem;
}

.admin-user-support-actions {
  justify-content: flex-start;
}

.admin-support-login-btn {
  white-space: nowrap;
}

.admin-user-password-form {
  gap: 0.5rem;
}

.admin-user-password-form .admin-inline-edit-grid-single {
  grid-template-columns: minmax(230px, 1fr);
}

.admin-user-password-form .admin-actions-inline {
  justify-content: flex-start;
}

.admin-users-list {
  display: grid;
  gap: 0.9rem;
}

.admin-user-card {
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  background: #fff;
  padding: 0.82rem;
  display: grid;
  gap: 0.62rem;
}

.admin-user-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-user-card-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.admin-user-card-meta {
  margin-top: 0.14rem;
  font-size: 0.8rem;
}

.admin-user-badge-row {
  display: inline-flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.admin-role-badge {
  letter-spacing: 0.01em;
}

.badge-role-admin {
  background: #ede9fe;
  color: #5b21b6;
}

.badge-role-provider {
  background: #dcfce7;
  color: #166534;
}

.badge-role-visitor {
  background: #e2e8f0;
  color: #334155;
}

.badge-platform-owned {
  background: #ede9fe;
  color: #5b21b6;
}

.admin-provider-status-badges .provider-type-hosting {
  background: #dbeafe;
  color: #1d4ed8;
}

.admin-provider-status-badges .provider-type-it {
  background: #ccfbf1;
  color: #0f766e;
}

.admin-provider-status-badges .provider-type-both {
  background: #d1fae5;
  color: #047857;
}

.admin-provider-status-badges .provider-type-domain {
  background: #ffedd5;
  color: #c2410c;
}

.admin-provider-status-badges .provider-type-project {
  background: #f3e8ff;
  color: #6b21a8;
}

.badge-caution {
  background: #fff1f2;
  color: #9f1239;
}

.badge-award {
  background: #fef3c7;
  color: #92400e;
}

.badge-award-speed {
  background: #dcfce7;
  color: #166534;
}

.badge-award-uptime {
  background: #dbeafe;
  color: #1d4ed8;
}

.admin-user-card-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.9rem;
  font-size: 0.88rem;
}

.admin-user-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.admin-user-card-block {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.58rem;
  display: grid;
  gap: 0.46rem;
}

.admin-user-card-block h4 {
  margin: 0;
  font-size: 0.84rem;
  color: #334155;
}

.admin-user-card-block-actions {
  background: #fff;
}

.admin-user-card-action-group {
  gap: 0.38rem;
  justify-content: flex-start;
}

.admin-self-warning-btn {
  border-style: dashed;
}

.admin-self-warning-text {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
}

.admin-providers-table .admin-table-cell-actions {
  min-width: 290px;
}

.admin-providers-actions-cell {
  min-width: 360px;
}

.admin-provider-meta-list {
  margin-top: 0.42rem;
  display: grid;
  gap: 0.22rem;
}

.admin-provider-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #334155;
}

.admin-provider-awards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  align-items: center;
  margin-top: 0.1rem;
}

.admin-provider-status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  align-items: center;
}

.admin-provider-actions {
  display: grid;
  gap: 0.38rem;
}

.admin-provider-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.admin-provider-action-group .btn {
  white-space: nowrap;
}

.admin-provider-action-group-sensitive {
  padding-top: 0.32rem;
  border-top: 1px dashed #e2e8f0;
}

.activity-bars {
  display: grid;
  gap: 0.45rem;
}

.activity-row {
  display: grid;
  grid-template-columns: 88px 1fr 44px;
  align-items: center;
  gap: 0.55rem;
}

.activity-label {
  font-size: 0.8rem;
  color: #475569;
  white-space: nowrap;
}

.activity-bar-wrap {
  background: #eef2ff;
  border-radius: 999px;
  overflow: hidden;
  height: 10px;
}

.activity-bar {
  background: linear-gradient(90deg, #1d4ed8 0%, #60a5fa 100%);
  height: 100%;
}

.activity-total {
  text-align: right;
  font-weight: 700;
  font-size: 0.82rem;
  color: #1f2937;
}

.form-section-title {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  color: #1e293b;
}

.offer-spec-details {
  margin-top: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 0.7rem 0.85rem 0.85rem;
}

.offer-spec-details > summary {
  cursor: pointer;
  font-weight: 700;
  color: #1e293b;
}

.offer-spec-details[open] > summary {
  margin-bottom: 0.55rem;
}

.backup-spec-details {
  display: grid;
  gap: 0.7rem;
  background: #f8fafc;
}

.backup-spec-panel {
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.7rem 0.8rem;
}

.backup-spec-panel + .backup-spec-panel {
  margin-top: 0.15rem;
}

.backup-spec-panel > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: #1e293b;
}

.backup-spec-panel > summary::-webkit-details-marker {
  display: none;
}

.backup-spec-panel > summary::before {
  content: "▸";
  color: #64748b;
  transition: transform 0.2s ease;
}

.backup-spec-panel[open] > summary::before {
  transform: rotate(90deg);
}

.backup-spec-panel-body {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.75rem;
}

.backup-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.backup-method-card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  border: 1px dashed #dbe4f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0.7rem;
}

.backup-method-card h4 {
  margin: 0;
  font-size: 0.88rem;
  color: #334155;
}

.backup-method-card .check {
  margin: 0;
}

.cdn-spec-accordion .form-grid {
  gap: 0.85rem;
}

.cdn-checkbox-group {
  display: grid;
  gap: 0.55rem;
  border: 1px dashed #dbe4f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 0.7rem;
  min-width: 0;
}

.cdn-checkbox-heading {
  margin: 0;
  font-weight: 700;
  color: #334155;
}

.cdn-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.48rem 0.8rem;
  align-items: start;
}

.cdn-checkbox-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem;
}

.cdn-checkbox-card {
  display: grid;
  gap: 0.45rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.65rem;
  min-width: 0;
}

.cdn-checkbox-card > strong {
  color: #334155;
  font-size: 0.84rem;
}

.cdn-checkbox-card-options {
  display: grid;
  gap: 0.4rem;
}

.cdn-check {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
  margin: 0;
  min-width: 0;
  line-height: 1.3;
}

.cdn-check input {
  width: 1rem;
  height: 1rem;
  margin: 0.14rem 0 0;
  padding: 0;
}

.cdn-check span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.shop-spec-accordion {
  display: grid;
  gap: 0.75rem;
}

.shop-spec-accordion .offer-spec-section {
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0.72rem 0.8rem;
}

.shop-spec-accordion .offer-spec-section > summary {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #1e293b;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.shop-spec-accordion .offer-spec-section > summary::-webkit-details-marker {
  display: none;
}

.shop-spec-accordion .offer-spec-section > summary::before {
  color: #64748b;
  content: "▸";
  transition: transform 0.2s ease;
}

.shop-spec-accordion .offer-spec-section[open] > summary::before {
  transform: rotate(90deg);
}

.shop-spec-accordion .form-grid {
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.shop-boolean-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  margin: 0;
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fafc;
  padding: 0.62rem 0.72rem;
  color: #334155;
  font-weight: 700;
  line-height: 1.35;
}

.shop-boolean-row input[type="hidden"] {
  display: none;
}

.shop-boolean-row input[type="checkbox"] {
  justify-self: end;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  padding: 0;
}

.shop-multi-select-field {
  display: grid;
  gap: 0.35rem;
}

.shop-multi-select {
  min-height: 9.5rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  line-height: 1.35;
  padding: 0.42rem 0.5rem;
}

.shop-multi-select option {
  padding: 0.22rem 0.28rem;
}

.shop-field-hint {
  display: block;
  margin-top: 0.05rem;
  color: #64748b;
  font-size: 0.82rem;
}

.offer-spec-subsection + .offer-spec-subsection {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #dbe4f0;
}

.offer-spec-subsection .form-section-title {
  margin: 0 0 0.5rem;
}

.offer-spec-subsection .grid-two + .grid-two,
.offer-spec-subsection .grid-three + .grid-three,
.offer-spec-subsection .grid-two + .row,
.offer-spec-subsection .grid-three + .row,
.offer-spec-subsection .row + .grid-two,
.offer-spec-subsection .row + .grid-three,
.offer-spec-subsection .grid-two + div,
.offer-spec-subsection .grid-three + div {
  margin-top: 0.55rem;
}

.software-spec-stack {
  display: grid;
  gap: 0.65rem;
}

.software-spec-stack .offer-spec-subsection + .offer-spec-subsection {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.software-spec-card {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0.72rem 0.78rem;
}

.software-spec-card .form-section-title {
  margin-bottom: 0.45rem;
}

.software-spec-card .target-group-select {
  min-height: 9.6rem;
}

.software-spec-hint {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
}

.software-option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.software-option-pill {
  align-items: center;
  border: 1px solid #d3deed;
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  background: #f8fbff;
  line-height: 1.2;
}

.software-option-pill input {
  margin-top: 0;
}

.ssl-spec-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: start;
}

.ssl-spec-stack .offer-spec-subsection + .offer-spec-subsection {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.ssl-spec-card {
  border-color: #d7e6fb;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.ssl-spec-card .form-section-title {
  margin-bottom: 0.34rem;
}

.ssl-spec-hint {
  margin: 0.3rem 0 0.55rem;
  color: #475569;
  font-size: 0.77rem;
  line-height: 1.4;
}

.ssl-provider-select {
  min-height: 10rem;
}

.ssl-option-pills {
  margin-top: 0.58rem;
  gap: 0.45rem;
}

.ssl-option-pill {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
  font-weight: 600;
}

.ssl-option-pill input {
  accent-color: #2563eb;
}

.ssl-spec-stack .ssl-spec-card:last-child {
  grid-column: 1 / -1;
}

.multiline-text {
  white-space: pre-line;
}

.category-hidden {
  display: none !important;
}

.category-warning-text {
  color: #b45309;
}

.offer-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.55rem;
}

.offer-category-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  color: #1f2937;
  background: #ffffff;
  text-decoration: none;
}

.offer-category-link small {
  color: #64748b;
  font-size: 0.78rem;
}

.offer-category-link:hover {
  border-color: #bfdbfe;
  text-decoration: none;
  background: #f8fbff;
}

.offer-category-link.is-active {
  border-color: #93c5fd;
  background: #eff6ff;
}

.offer-link-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.offer-link-title span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  flex: 0 0 auto;
}

.offer-category-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.offer-builder-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
  align-items: start;
}

.offer-builder-sidebar {
  position: sticky;
  top: 1rem;
}

.offer-builder-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.offer-builder-inline-card {
  border: 1px solid #dbe4f0;
  border-radius: 10px;
  background: #f8fbff;
  padding: 0.55rem 0.65rem;
  margin-top: 0.45rem;
  margin-bottom: 0.45rem;
  display: grid;
  gap: 0.45rem;
}

.offer-builder-inline-head {
  display: grid;
  gap: 0.2rem;
}

.offer-builder-inline-head strong {
  font-size: 0.88rem;
  color: #1e293b;
}

.offer-builder-inline-head .muted {
  margin: 0;
  font-size: 0.76rem;
}

.offer-builder-nav.is-inline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem;
}

.offer-builder-nav.is-inline.is-compact {
  align-items: stretch;
}

.offer-builder-link.offer-builder-link-compact {
  gap: 0.12rem;
  padding: 0.36rem 0.45rem;
  border-radius: 8px;
}

.offer-builder-link.offer-builder-link-compact .offer-link-title {
  gap: 0.34rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.12;
}

.offer-builder-link.offer-builder-link-compact .offer-category-icon {
  width: 1.32rem;
  height: 1.32rem;
}

.offer-builder-link.offer-builder-link-compact .offer-category-icon svg {
  width: 0.84rem;
  height: 0.84rem;
}

.offer-builder-link.offer-builder-link-compact .offer-link-meta {
  font-size: 0.68rem;
  color: #6b7280;
  line-height: 1.12;
}

.offer-builder-link {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  color: #1f2937;
  background: #fff;
  text-decoration: none;
}

.offer-builder-link small {
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.2;
}

.offer-builder-link:hover {
  text-decoration: none;
  border-color: #bfdbfe;
  background: #f8fbff;
}

.offer-builder-link.is-active {
  border-color: #93c5fd;
  background: #eff6ff;
}

.offer-form-status-card {
  border: 1px solid #dbe4f0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  display: grid;
  gap: 0.55rem;
}

.offer-form-status-card h2 {
  margin: 0;
  font-size: 1.02rem;
}

.offer-form-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.55rem;
}

.offer-form-status-label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
  font-weight: 700;
}

.offer-form-status-value {
  margin: 0.16rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.offer-form-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.45rem 0.7rem;
  margin-top: 0.2rem;
}

.offer-form-section-head h2 {
  margin: 0;
  font-size: 1.02rem;
  color: #0f172a;
}

.offer-form-section-head .muted {
  margin: 0;
}

.offer-form-required-note {
  margin: 0;
  font-size: 0.78rem;
  color: #64748b;
}

.offer-form-info-box {
  border-color: #dbe4f0;
  background: #f8fbff;
  margin-top: 0.35rem;
}

.offer-form-info-box p {
  margin: 0;
}

.offer-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.target-group-select {
  min-height: 11.5rem;
}

@media (max-width: 720px) {
  .target-group-select {
    min-height: 9.5rem;
  }

  .software-spec-card .target-group-select {
    min-height: 8.4rem;
  }

  .ssl-provider-select {
    min-height: 8.4rem;
  }

  .software-option-pill {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .ssl-spec-stack {
    grid-template-columns: 1fr;
  }

  .ssl-spec-stack .ssl-spec-card:last-child {
    grid-column: auto;
  }
}

.award-winner-card {
  border: 1px solid #c7d2fe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.award-badge-preview {
  width: min(190px, 38vw);
  max-width: 190px;
  height: auto;
  display: block;
}

.award-inline-badge {
  width: min(170px, 40vw);
  max-width: 170px;
  height: auto;
  display: block;
}

.extra-fields-block {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  background: #f8fafc;
}

.extra-fields-block + .extra-fields-block {
  margin-top: 0.75rem;
}

.extra-fields-block summary {
  cursor: pointer;
  font-weight: 700;
  color: #1e293b;
  list-style: none;
}

.extra-fields-block summary::-webkit-details-marker {
  display: none;
}

.extra-fields-block summary::before {
  content: "> ";
  color: #475569;
}

.extra-fields-block[open] summary::before {
  content: "v ";
}

.public-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding-top: 0.7rem;
  padding-bottom: 0;
  color: #64748b;
  font-size: 0.88rem;
}

.public-breadcrumbs a {
  color: #475569;
  font-weight: 700;
  text-decoration: none;
}

.public-breadcrumbs a:hover,
.public-breadcrumbs a:focus-visible {
  color: #1d4ed8;
  text-decoration: underline;
}

.public-breadcrumbs span[aria-current="page"] {
  color: #334155;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid #1e293b;
  margin-top: 2rem;
  padding: 1.35rem 0 0.95rem;
  background: #0f172a;
  color: #dbe7ff;
}

.site-footer a {
  color: #dbe7ff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.site-footer-main {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(260px, 1.25fr) minmax(0, 2fr);
}

.site-footer-brand {
  display: grid;
  gap: 0.38rem;
  align-content: start;
}

.site-footer-brand h2 {
  margin: 0;
  color: #f8fbff;
  font-size: 1.12rem;
}

.site-footer-brand p {
  margin: 0;
  color: #c7d5ea;
  line-height: 1.45;
}

.site-footer-brand-logo {
  margin-top: 0.3rem;
  width: 120px;
  height: 120px;
  max-width: 100%;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #24334f;
  padding: 0.25rem;
}

.site-footer-link-columns {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer-column h3 {
  margin: 0 0 0.5rem;
  color: #f8fbff;
  font-size: 0.98rem;
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.38rem;
}

.site-footer-links li {
  margin: 0;
}

.site-footer-links a {
  color: #c7d5ea;
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer-dynamic-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.85rem;
  grid-template-columns: 1fr;
}

.site-footer-dynamic-card-providers {
  grid-column: 1 / -1;
}

.site-footer-tariff-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer-dynamic-card {
  border: 1px solid #24334f;
  border-radius: 12px;
  background: #111d32;
  padding: 0.75rem 0.9rem;
  display: grid;
  gap: 0.4rem;
}

.site-footer-dynamic-card h3 {
  margin: 0;
  color: #f8fbff;
  font-size: 0.94rem;
}

.site-footer-dynamic-note {
  margin: 0;
  font-size: 0.8rem;
  color: #9cb1d4;
}

.site-footer-ranked-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.site-footer-ranked-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: baseline;
  border-bottom: 1px solid #23314a;
  padding-bottom: 0.3rem;
}

.site-footer-ranked-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.site-footer-ranked-list a {
  color: #e8f1ff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer-ranked-list span {
  color: #a7b8d4;
  font-size: 0.8rem;
  text-align: right;
}

.site-footer-bottom {
  margin-top: 0.82rem;
  padding-top: 0.7rem;
  border-top: 1px solid #1f2e49;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem 1rem;
}

.site-footer-copyright {
  margin: 0;
  color: #d4e1f4;
  font-size: 0.88rem;
}

.site-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
}

.site-footer-bottom-links a {
  color: #c7d5ea;
  font-size: 0.86rem;
  text-decoration: none;
}

.site-footer-bottom-links a:hover,
.site-footer-bottom-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.impersonation-banner {
  background: #dbeafe;
  border-bottom: 1px solid #bfdbfe;
}

.impersonation-banner .container {
  padding: 0.4rem 0;
}

.impersonation-banner p {
  margin: 0;
  color: #1e3a8a;
  font-size: 0.9rem;
}

.footer-nav {
  display: none;
}

.mobile-legal-nav {
  display: none;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.mobile-legal-nav .container {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.mobile-legal-nav a {
  font-weight: 700;
  font-size: 0.88rem;
}

.hidden-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 1.2rem));
  z-index: 80;
}

.cookie-banner-inner {
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
  padding: 0.85rem 0.95rem;
}

.cookie-banner-title {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
}

.cookie-banner-text {
  margin: 0;
  color: #334155;
  font-size: 0.9rem;
}

.cookie-banner-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cookie-banner-note {
  margin: 0.65rem 0 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cookie-settings-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 79;
}

.cookie-modal {
  width: min(620px, calc(100% - 1.2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.24);
}

.cookie-modal::backdrop {
  background: rgba(15, 23, 42, 0.42);
}

.cookie-modal-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.cookie-modal h2,
.cookie-modal p {
  margin: 0;
}

.cookie-modal h2 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.cookie-modal-text {
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-modal code {
  font-size: 0.86em;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.75rem;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #f8fbff;
}

.cookie-option input {
  margin-top: 0.18rem;
}

.cookie-option span {
  display: grid;
  gap: 0.18rem;
}

.cookie-option small {
  color: #475569;
  line-height: 1.4;
}

.mt {
  margin-top: 1rem;
}

.mb {
  margin-bottom: 1rem;
}

.mt-lg {
  margin-top: 1.4rem;
}

@media (max-width: 1240px) {
  .offer-showcase-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr) minmax(220px, 0.7fr);
  }

  .offer-detail-lines-compact {
    grid-template-columns: 1fr;
  }

  .offer-spec-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .grid-hero,
  .grid-two,
  .grid-three,
  .provider-inquiry-filters,
  .provider-inquiry-summary-grid,
  .provider-inquiry-detail-grid,
  .backup-method-grid,
  .stats-grid,
  .offer-builder-layout {
    grid-template-columns: 1fr;
  }

  .provider-inquiry-filter-search {
    grid-column: auto;
  }

  .provider-inquiry-item-head {
    display: grid;
  }

  .provider-inquiry-panel-head {
    align-items: flex-start;
    display: grid;
  }

  .offer-builder-nav.is-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-side {
    position: static;
  }

  .provider-side {
    position: static;
  }

  .provider-nav-group-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-todo-item {
    flex-direction: column;
    align-items: stretch;
  }

  .provider-todo-item .btn {
    width: 100%;
  }

  .provider-onboarding-item {
    flex-direction: column;
    align-items: stretch;
  }

  .provider-next-step-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .provider-next-step-action {
    width: 100%;
  }

  .provider-onboarding-action {
    width: 100%;
  }

  .provider-onboarding-coming-soon {
    align-self: flex-start;
  }

  .provider-feature-card-head {
    flex-direction: column;
  }

  .provider-feature-card-badges {
    justify-content: flex-start;
  }

  .provider-ticket-summary {
    flex-direction: column;
  }

  .provider-channel-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .provider-ratings-next-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .provider-ratings-next-step .btn {
    width: 100%;
  }

  .provider-ratings-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-verification-benefits {
    grid-template-columns: minmax(0, 1fr);
  }

  .provider-verification-status-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .provider-verification-next-step .btn {
    width: 100%;
  }

  .provider-membership-next-step {
    align-items: flex-start;
  }

  .provider-membership-next-step .btn {
    width: 100%;
  }

  .provider-membership-insight-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .provider-membership-sections-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .provider-ticket-summary-side {
    width: 100%;
    justify-items: start;
  }

  .provider-focus-header .row .btn {
    width: 100%;
  }

  .provider-profile-hero .provider-cover-image {
    height: clamp(180px, 42vw, 260px);
  }

  .provider-profile-hero-head {
    align-items: flex-start;
  }

  .provider-offer-card-body {
    grid-template-columns: 1fr;
  }

  .provider-offer-card-actions .provider-offer-btn {
    min-width: 0;
  }

  .provider-month-report-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .provider-month-report-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-month-report-visual {
    justify-items: start;
    grid-template-columns: auto 1fr;
    column-gap: 0.6rem;
    align-items: center;
  }

  .provider-month-top-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .provider-dashboard-offers-table thead {
    display: none;
  }

  .provider-dashboard-offers-table tbody,
  .provider-dashboard-offers-table tr,
  .provider-dashboard-offers-table td {
    display: block;
    width: 100%;
  }

  .provider-dashboard-offers-table tr {
    border-bottom: 1px solid #e2e8f0;
    padding: 0.62rem 0.2rem;
  }

  .provider-dashboard-offers-table td {
    border: 0;
    padding: 0.26rem 0.2rem;
  }

  .provider-offer-cell-main,
  .provider-offer-cell-metric {
    min-width: 0;
    white-space: normal;
  }

  .provider-dashboard-offer-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .provider-dashboard-offer-actions .btn,
  .provider-dashboard-offer-toggle-form {
    width: 100%;
  }

  .provider-dashboard-offers-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 0.14rem;
  }

  .provider-offer-category-nav {
    margin-bottom: 0.65rem;
    gap: 0.35rem;
  }

  .provider-offer-category-chip {
    font-size: 0.74rem;
    padding: 0.2rem 0.54rem;
  }

  .provider-offer-category-section {
    padding: 0.56rem;
  }

  .provider-offer-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .admin-inline-edit-grid {
    grid-template-columns: 1fr;
  }

  .admin-users-table {
    min-width: 1180px;
  }

  .admin-user-edit-grid {
    grid-template-columns: 1fr;
  }

  .admin-user-card-grid {
    grid-template-columns: 1fr;
  }

  .admin-user-card {
    padding: 0.8rem;
  }

  .admin-user-card-block {
    padding: 0.6rem;
  }

  .admin-feature-detail-head {
    flex-direction: column;
  }

  .admin-feature-detail-badges {
    justify-content: flex-start;
  }

  .admin-ticket-summary {
    flex-direction: column;
  }

  .admin-ticket-summary-side {
    width: 100%;
    justify-items: start;
  }

  .admin-table-cell-actions,
  .admin-users-table .admin-table-cell-actions,
  .admin-providers-table .admin-table-cell-actions {
    min-width: 220px;
  }

  .admin-providers-actions-cell {
    min-width: 260px;
  }

  .offers-results-layout,
  .offers-results-layout-full {
    grid-template-columns: 1fr;
  }

  .offer-detail-layout {
    grid-template-columns: 1fr;
  }

  .offer-detail-aside {
    position: static;
  }

  .offer-monitoring-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-alternative-groups {
    grid-template-columns: 1fr;
  }

  .offer-alternative-list {
    grid-template-columns: 1fr;
  }

  .offer-specs-grid {
    grid-template-columns: 1fr;
  }

  .offer-hero-price-main {
    font-size: 1.45rem;
  }

  .offers-results-sidebar {
    position: static;
  }

  .offer-showcase-layout {
    grid-template-columns: 1fr;
  }

  .offer-detail-lines div {
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }

  .offer-showcase-side {
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    padding: 0.58rem 0.62rem;
  }

  .offer-metric-grid,
  .offer-quick-facts-inline,
  .offer-detail-lines-compact {
    grid-template-columns: 1fr;
  }

  .offer-card-list .offer-insight-points {
    grid-template-columns: 1fr;
  }

  .offer-insight-list div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .offer-spec-row {
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }

  .offer-hero-actions .btn {
    width: 100%;
  }

  .offer-provider-awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-speed-podium,
  .provider-monitoring-grid {
    grid-template-columns: 1fr;
  }

  .provider-monitoring-next-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .provider-monitoring-next-step .btn {
    width: 100%;
  }

  .provider-visibility-next-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .provider-visibility-next-step .btn {
    width: 100%;
  }

  .provider-visibility-status-header {
    flex-direction: column;
  }

  .provider-visibility-archive-card .provider-visibility-link-grid {
    grid-template-columns: 1fr;
  }

  .provider-monitoring-award-highlight-grid {
    grid-template-columns: 1fr;
  }

  .provider-monitoring-target-head {
    flex-direction: column;
  }

  .provider-monitoring-target-badges {
    justify-content: flex-start;
  }

  .provider-monitoring-target-addresses,
  .provider-monitoring-target-metrics {
    grid-template-columns: 1fr;
    gap: 0.44rem;
  }

  .provider-monitoring-target-actions .btn {
    width: 100%;
  }

  .provider-monitoring-timeline-item {
    flex-direction: column;
  }

  .provider-monitoring-timeline-side {
    justify-items: start;
  }

  .provider-ratings-process-grid {
    grid-template-columns: 1fr;
  }

  .provider-ratings-inline-details > summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.35rem;
  }

  .provider-ratings-badges {
    max-width: 100%;
  }

  .provider-tenders-filter-actions {
    justify-content: flex-start;
  }

  .provider-tender-card-head {
    flex-direction: column;
  }

  .provider-tender-status-badges {
    justify-content: flex-start;
  }

  .provider-tender-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .provider-tender-send-btn {
    width: 100%;
    text-align: center;
  }

  .analytics-trend-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .analytics-trend-bar-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .analytics-trend-label {
    white-space: normal;
  }

  .offers-view-switch {
    width: 100%;
    border-radius: 12px;
    justify-content: flex-start;
  }

  .offers-view-switch-wrap {
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .offers-filter-fields-search,
  .offers-filter-fields-price,
  .offers-filter-fields-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offers-filter-actions {
    justify-content: flex-start;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-assistant-cta {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .hero-assistant-cta .btn {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
  }

  .form-grid-6 {
    grid-template-columns: 1fr;
  }

  .span-2,
  .span-6 {
    grid-column: span 1;
  }

  .main-nav {
    display: none;
  }

  .site-nav-menu {
    display: block;
  }

  .header-actions > .header-login-link,
  .header-actions > .header-register-btn,
  .header-actions > .header-legal-link {
    display: none;
  }

  .site-header .container {
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-actions {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .mobile-legal-nav {
    display: block;
  }

  .cookie-banner {
    width: calc(100% - 1rem);
    bottom: 0.5rem;
  }

  .cookie-settings-btn {
    right: 0.55rem;
    bottom: 0.55rem;
  }
}

@media (max-width: 1400px) {
  .offer-builder-nav.is-inline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .offer-builder-nav.is-inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .offer-builder-nav.is-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-index-filter-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-filter-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .providers-filter-grid-primary,
  .providers-filter-grid-sort {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .providers-filter-grid-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .it-directory-filter-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .it-directory-page .provider-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .domains-filter-grid-search,
  .domains-filter-grid-display {
    grid-template-columns: minmax(0, 1fr);
  }

  .domains-filter-options-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .provider-directory-card-head {
    flex-direction: column;
  }

  .provider-directory-badge-zone {
    justify-content: flex-start;
  }

  .it-directory-card-compact {
    grid-template-columns: minmax(0, 1fr);
  }

  .it-directory-card-compact .provider-directory-card-head,
  .it-directory-card-compact .provider-directory-card-description,
  .it-directory-card-compact .it-specialization-chips,
  .it-directory-card-compact .it-availability-badges,
  .it-directory-card-compact .provider-directory-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .it-directory-card-compact .provider-directory-actions {
    justify-content: flex-start;
  }

  .it-provider-hero-head {
    flex-direction: column;
  }

  .it-provider-hero-top {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .it-specialization-group-list,
  .it-provider-detail-text-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .public-tenders-hero-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .public-tender-card-head {
    flex-direction: column;
  }

  .public-tender-side-meta {
    width: 100%;
    justify-items: flex-start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .offer-builder-nav.is-inline {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-post-image {
    height: 172px;
  }

  .providers-filter-grid-primary,
  .providers-filter-grid-trust,
  .providers-filter-grid-sort,
  .it-directory-filter-grid,
  .it-directory-page .provider-card-grid,
  .domains-filter-grid-search,
  .domains-filter-grid-display,
  .news-index-filter-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .domains-filter-display-panel {
    flex-basis: 100%;
    max-width: none;
    width: 100%;
  }

  .news-post-body {
    min-height: auto;
  }

  .news-post-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .news-post-footer .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ad-slot-home-middle {
    margin-bottom: 1.5rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .home-offer-facts {
    grid-template-columns: 1fr;
  }

  .home-offer-provider-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-offer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .home-offer-cta {
    width: 100%;
    text-align: center;
  }

  .home-provider-meta-grid,
  .provider-directory-facts-grid {
    grid-template-columns: 1fr;
  }

  .public-tenders-create-btn {
    width: 100%;
    text-align: center;
  }

  .public-tenders-hero-signals {
    gap: 0.3rem;
  }

  .public-tender-side-meta {
    grid-template-columns: 1fr;
  }

  .public-tender-detail-summary {
    width: 100%;
  }

  .providers-filter-grid-primary,
  .providers-filter-grid-trust,
  .providers-filter-grid-sort {
    grid-template-columns: 1fr;
  }

  .providers-filter-actions {
    justify-content: stretch;
  }

  .providers-filter-actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .it-provider-hero-logo,
  .it-provider-hero-logo-fallback {
    width: 64px;
    height: 64px;
  }

  .provider-compare-box-head {
    align-items: flex-start;
  }

  .home-domain-price-table th,
  .home-domain-price-table td {
    padding: 0.45rem 0.45rem;
    font-size: 0.82rem;
  }

  .site-footer-link-columns {
    grid-template-columns: 1fr;
  }

  .site-footer-brand-logo {
    width: 96px;
    height: 96px;
  }

  .site-footer-ranked-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.14rem;
  }

  .site-footer-ranked-list span {
    text-align: left;
  }

  .home-award-grid {
    grid-template-columns: 1fr;
  }

  .provider-gallery-grid {
    grid-template-columns: 1fr;
  }

  .provider-profile-hero-head,
  .provider-profile-hero-body {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .provider-profile-meta-chips {
    gap: 0.35rem;
  }

  .provider-meta-chip {
    font-size: 0.74rem;
  }

  .provider-quickfacts-grid {
    grid-template-columns: 1fr;
  }

  .provider-quickfact {
    min-height: 0;
  }

  .provider-company-data-grid {
    grid-template-columns: 1fr;
  }

  .provider-company-data-item {
    min-height: 0;
  }

  .provider-offer-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .provider-offer-card-actions {
    flex-direction: column;
  }

  .provider-offer-card-actions .provider-offer-btn {
    width: 100%;
  }

  .provider-tender-meta-row {
    gap: 0.3rem;
  }

  .provider-tender-meta-chip,
  .provider-tender-budget-chip {
    font-size: 0.76rem;
  }

  .provider-month-report-metrics {
    grid-template-columns: 1fr;
  }

  .provider-month-report-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .provider-kpi-grid.provider-tenders-kpi-grid {
    grid-template-columns: 1fr;
  }

  .provider-monitoring-meta-chip {
    font-size: 0.75rem;
  }

  .provider-snippet-code,
  .provider-snippet-input {
    font-size: 0.76rem;
  }

  .provider-month-ctr-donut {
    width: 76px;
    height: 76px;
  }

  .rating-radio-grid {
    grid-template-columns: 1fr;
  }

  .provider-rating-entry-criterion {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .account-menu-list {
    right: auto;
    left: 0;
    min-width: 170px;
  }

  .site-nav-list {
    right: auto;
    left: 0;
    min-width: 180px;
  }

  .offers-view-switch .inline-form {
    flex: 1 1 calc(50% - 0.2rem);
  }

  .offers-view-switch .btn {
    width: 100%;
  }

  .offers-filter-fields-search,
  .offers-filter-fields-price,
  .offers-filter-fields-trust {
    grid-template-columns: 1fr;
  }

  .offer-monitoring-metrics {
    grid-template-columns: 1fr;
  }

  .provider-nav-group-items {
    grid-template-columns: 1fr;
  }

  .provider-form-actions {
    justify-content: stretch;
  }

  .provider-form-actions .btn {
    width: 100%;
  }

  .site-header .container {
    min-height: auto;
    padding: 0.65rem 0;
    gap: 0.5rem;
  }

  .section-head.row {
    justify-content: flex-start;
  }

  .section-head.row > a {
    width: 100%;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
  }

  .site-footer-link-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-tariff-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-bottom {
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .header-actions .btn {
    max-width: 100%;
  }

  .header-register-label-desktop {
    display: none;
  }

  .header-register-label-mobile {
    display: inline;
  }
}

/* Hosting assistant final UI overrides */
.hosting-assistant-page .hosting-assistant-result-type {
  border: 1px solid #dbe5f1;
  border-left: 4px solid #fe6700;
  background: #f8fafc;
  color: #1f2937;
}

.hosting-assistant-page .hosting-assistant-block-head h3,
.hosting-assistant-page .hosting-assistant-progress,
.hosting-assistant-page .hosting-assistant-meta {
  color: #1f2937;
}

.hosting-assistant-page .hosting-assistant-progress-track span {
  background: #2563eb;
}

.hosting-assistant-page .hosting-assistant-option:hover,
.hosting-assistant-page .hosting-assistant-option:focus-within,
.hosting-assistant-page .hosting-assistant-option:has(input:checked) {
  border-color: #fe6700;
  box-shadow: 0 0 0 3px rgba(254, 103, 0, 0.14);
}

.hosting-assistant-page .hosting-assistant-option:has(input:checked) {
  background: rgba(254, 103, 0, 0.08);
}

.hosting-assistant-page .hosting-assistant-option input {
  accent-color: #fe6700;
}

.hosting-assistant-page .hosting-assistant-view-toggle {
  gap: 0.15rem;
  padding: 0.25rem;
  border: 1px solid #dbe5f1;
  background: #f8fafc;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.hosting-assistant-page .hosting-assistant-view-toggle-btn {
  border-radius: 999px;
  color: #475569;
}

.hosting-assistant-page .hosting-assistant-view-toggle-btn.is-active {
  border: 1px solid rgba(254, 103, 0, 0.28);
  background: rgba(254, 103, 0, 0.08);
  color: #c2410c;
  box-shadow: none;
}

.hosting-assistant-page .hosting-assistant-offer-cell {
  min-width: 0;
}

.hosting-assistant-page .hosting-assistant-offer-main {
  display: grid;
  gap: 0.34rem;
  align-content: start;
}

.hosting-assistant-page .hosting-assistant-table-title {
  display: block;
  margin: 0;
  color: #0f172a;
  font-size: 0.98rem;
  line-height: 1.25;
}

.hosting-assistant-page .hosting-assistant-table-title a {
  color: #0f172a;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.hosting-assistant-page .hosting-assistant-table-provider {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.35;
}

.hosting-assistant-page .hosting-assistant-table-label {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hosting-assistant-page .hosting-assistant-offer-table th {
  border-bottom: 1px solid #dbe5f1;
  background: #f8fafc;
  color: #1f2937;
}

.hosting-assistant-page .hosting-assistant-table-category,
.hosting-assistant-page .badge:not(.badge-muted) {
  border: 1px solid #dbe5f1;
  background: #f6f8fb;
  color: #1f2937;
}

.hosting-assistant-page .hosting-assistant-spec-chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.38rem !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.hosting-assistant-page .hosting-assistant-spec-chip {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content;
  max-width: 100%;
  padding: 0.26rem 0.52rem !important;
  border: 1px solid #dbe5f1 !important;
  border-radius: 999px !important;
  background: #f6f8fb !important;
  color: #1f2937 !important;
  font-size: 0.78rem !important;
  font-weight: 750 !important;
  line-height: 1.18 !important;
  white-space: nowrap !important;
}

.hosting-assistant-page .hosting-assistant-price-action-cell {
  text-align: left;
  white-space: nowrap;
}

.hosting-assistant-page .hosting-assistant-price-action {
  display: inline-grid;
  gap: 0.45rem;
  justify-items: start;
  min-width: max-content;
}

.hosting-assistant-page .hosting-assistant-table-price,
.hosting-assistant-page .hosting-assistant-result-price {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.15;
  white-space: nowrap;
}

.hosting-assistant-page .hosting-assistant-table-action {
  min-height: 2.2rem;
  padding: 0.42rem 0.68rem;
  border-color: #2563eb;
  background: #2563eb;
  line-height: 1.15;
  white-space: nowrap;
}

.hosting-assistant-page .hosting-assistant-table-action:hover,
.hosting-assistant-page .hosting-assistant-table-action:focus-visible {
  border-color: #1d4ed8;
  background: #1d4ed8;
}

.hosting-assistant-page .hosting-assistant-platform-filter {
  display: flex;
  gap: 0.72rem;
  align-items: flex-start;
  border: 1px solid #dbe5f1;
  background: #f8fafc;
  color: #1f2937;
}

.hosting-assistant-page .hosting-assistant-platform-filter input[type="checkbox"] {
  all: revert;
  box-sizing: border-box;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  display: inline-block !important;
  position: static !important;
  flex: 0 0 auto !important;
  width: 1.28rem !important;
  height: 1.28rem !important;
  margin: 0.05rem 0 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  accent-color: #fe6700 !important;
  transform: none !important;
}

.hosting-assistant-page .hosting-assistant-block-head-with-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.hosting-assistant-page .hosting-assistant-block-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.hosting-assistant-page .hosting-assistant-block-head-with-actions .hosting-assistant-view-toggle {
  flex: 0 0 auto;
  width: fit-content;
  margin: 0;
}

.hosting-assistant-page .hosting-assistant-provider-card,
.hosting-assistant-page .hosting-assistant-link-card {
  border: 1px solid #dbe5f1;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.hosting-assistant-page .hosting-assistant-provider-card {
  align-content: start;
  gap: 0.75rem;
}

.hosting-assistant-page .hosting-assistant-provider-card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.hosting-assistant-page .hosting-assistant-provider-card-head h3 {
  margin: 0.08rem 0 0;
}

.hosting-assistant-page .hosting-assistant-provider-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem;
}

.hosting-assistant-page .hosting-assistant-provider-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.hosting-assistant-page .hosting-assistant-provider-facts span {
  display: grid;
  gap: 0.08rem;
  padding: 0.52rem 0.58rem;
  border: 1px solid #dbe5f1;
  border-radius: 8px;
  background: #f8fafc;
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.25;
}

.hosting-assistant-page .hosting-assistant-provider-facts strong {
  color: #0f172a;
  font-size: 0.9rem;
}

.hosting-assistant-page .hosting-assistant-results .hosting-assistant-result-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hosting-assistant-page .hosting-assistant-link-card {
  align-content: start;
  gap: 0.42rem;
  padding: 0.85rem;
}

.hosting-assistant-page .hosting-assistant-link-card h4 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.25;
}

.hosting-assistant-page .hosting-assistant-link-card p {
  margin: 0;
}

.hosting-assistant-page .hosting-assistant-link-kicker {
  width: fit-content;
  padding: 0.16rem 0.44rem;
  border: 1px solid #dbe5f1;
  border-radius: 999px;
  background: #f6f8fb;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 800;
}

.hosting-assistant-page .hosting-assistant-link-card .btn,
.hosting-assistant-page .hosting-assistant-provider-card .btn {
  justify-self: start;
}

.qr-login-card {
  display: grid;
  gap: 0.75rem;
}

.qr-login-card h2 {
  margin: 0;
}

.qr-login-panel {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.qr-login-image {
  max-width: 220px;
  padding: 0.75rem;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #ffffff;
}

.qr-login-code {
  display: block;
  width: 100%;
  height: auto;
}

.qr-login-status {
  font-weight: 700;
  color: #1e40af;
}

.qr-login-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

@media (max-width: 900px) {
  .hosting-assistant-page .hosting-assistant-block-head-with-actions,
  .hosting-assistant-page .hosting-assistant-provider-card-head {
    flex-direction: column;
  }

  .hosting-assistant-page .hosting-assistant-block-head-with-actions .hosting-assistant-view-toggle {
    width: 100%;
  }

  .hosting-assistant-page .hosting-assistant-provider-badges {
    justify-content: flex-start;
  }

  .hosting-assistant-page .hosting-assistant-provider-facts,
  .hosting-assistant-page .hosting-assistant-results .hosting-assistant-result-links {
    grid-template-columns: 1fr;
  }

  .qr-login-panel {
    grid-template-columns: 1fr;
  }
}
