.wrap {
  padding: 18px;
  max-width: 1540px;
  margin: 0 auto;
}

.filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr));
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(23, 45, 82, 0.08);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.check-field {
  justify-content: flex-end;
}

.check-option {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #cfd9e7;
  border-radius: 12px;
  background: #f8fbff;
  color: #26426c;
  cursor: pointer;
}

.check-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.check-option span {
  font-size: 0.92rem;
  color: #223652;
  font-weight: 700;
}

.meta {
  margin-top: 12px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  padding: 12px;
}

.meta strong { color: #0f6cff; }

.meta-spaced {
  margin-top: 12px;
  padding: 12px;
}

.table-wrap {
  margin-top: 12px;
  overflow: auto;
  border-radius: 14px;
  box-shadow: 0 16px 26px rgba(23, 45, 82, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1050px;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid #e3ebf5;
  text-align: left;
  font-size: 0.9rem;
  vertical-align: top;
}

th {
  position: sticky;
  top: 0;
  background: #edf3fc;
  z-index: 5;
  color: #42516b;
  font-weight: 600;
}

tbody tr:nth-child(even) { background: #f9fbff; }
tbody tr:hover { background: #eef5ff; }

.pager {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.hint {
  color: var(--muted);
  font-size: 0.85rem;
}

.brand-link {
  color: #0f6cff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .filters {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 12px;
  }

  .filters {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .meta {
    gap: 8px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .table-wrap {
    border-radius: 12px;
  }

  table {
    min-width: 880px;
  }

  th,
  td {
    padding: 9px;
    font-size: 0.84rem;
  }

  .pager button {
    flex: 1 1 120px;
  }
}

.seo-landing-copy {
  margin-top: 12px;
  padding: 14px;
  line-height: 1.5;
}

.seo-landing-copy h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.seo-landing-copy p {
  margin: 0;
  color: #4c5d78;
}
