:root {
  color-scheme: light;
  --seo-bg: #f5f8fc;
  --seo-surface: #ffffff;
  --seo-text: #1a2b3c;
  --seo-muted: #5b6b7c;
  --seo-primary: #0066cc;
  --seo-border: #d8e2ee;
  --seo-radius: 12px;
  --seo-shadow: 0 8px 24px rgba(16, 42, 67, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Fira Sans", Arial, sans-serif;
  background: var(--seo-bg);
  color: var(--seo-text);
  line-height: 1.5;
}

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

a:hover {
  text-decoration: underline;
}

.seo-container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.seo-header {
  background: var(--seo-surface);
  border-bottom: 1px solid var(--seo-border);
}

.seo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.seo-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: inherit;
  text-decoration: none;
}

.seo-logo__business {
  color: var(--seo-text);
}

.seo-logo__info {
  color: var(--seo-primary);
}

.seo-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.seo-nav a {
  color: var(--seo-muted);
  font-weight: 500;
}

.seo-main {
  padding: 32px 0 48px;
}

.seo-hero,
.seo-article,
.seo-section,
.seo-card {
  background: var(--seo-surface);
  border: 1px solid var(--seo-border);
  border-radius: var(--seo-radius);
  box-shadow: var(--seo-shadow);
}

.seo-hero,
.seo-article,
.seo-section {
  padding: 24px;
}

.seo-hero h1,
.seo-article h1,
.seo-section h1 {
  margin-top: 0;
  line-height: 1.2;
}

.seo-lead {
  color: var(--seo-muted);
  font-size: 1.05rem;
}

.seo-button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--seo-primary);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
}

.seo-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 24px;
}

.seo-category-list__item {
  break-inside: avoid;
  margin: 0 0 6px;
}

.seo-category-list__item a {
  display: inline-block;
  padding: 4px 0;
}

.seo-breadcrumbs {
  margin-bottom: 16px;
}

.seo-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: var(--seo-muted);
  font-size: 0.95rem;
}

.seo-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9aa8b6;
}

.seo-card-list {
  display: grid;
  gap: 16px;
}

.seo-card {
  padding: 18px 20px;
}

.seo-card__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.seo-card__meta,
.seo-card__text {
  margin: 4px 0;
  color: var(--seo-muted);
}

.seo-company__header {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.seo-company__image {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--seo-border);
}

.seo-company__category,
.seo-company__meta {
  color: var(--seo-muted);
}

.seo-company__details p {
  margin: 8px 0;
}

.seo-company__cta {
  margin-top: 24px;
}

.seo-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--seo-border);
}

.seo-footer {
  padding: 24px 0 40px;
  color: var(--seo-muted);
}

.seo-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.seo-footer__copy {
  margin: 0;
}

.seo-footer__copy a {
  color: var(--seo-muted);
  text-decoration: none;
}

.seo-footer__copy a:hover {
  color: var(--seo-primary);
}

.seo-footer__seo-link {
  color: var(--seo-muted);
  text-decoration: none;
  white-space: nowrap;
}

.seo-footer__seo-link:hover {
  color: var(--seo-primary);
}

@media (max-width: 720px) {
  .seo-category-list {
    columns: 1;
  }

  .seo-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .seo-company__header {
    grid-template-columns: 1fr;
  }

  .seo-company__image {
    width: 100%;
    height: auto;
    max-height: 240px;
  }
}
