

.pv-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--om-sp-3);
  margin-top: var(--om-sp-5);
}

.pv-toc {
  margin-top: var(--om-sp-7);
}
.pv-toc__title {
  font-family: var(--om-font-heading);
  font-weight: 800;
  font-size: var(--om-fs-md);
  color: var(--om-dark);
  margin: 0 0 var(--om-sp-3);
}
.pv-toc__list {
  margin: 0;
  padding: 0 0 0 1.4em;
  columns: 2;
  column-gap: var(--om-sp-6);
  font-size: var(--om-fs-sm);
}
.pv-toc__list li {
  break-inside: avoid;
  padding: 5px 0;
}
.pv-toc__list a {
  color: var(--om-ink);
  font-weight: 600;
  font-family: var(--om-font-heading);
}
.pv-toc__list a:hover {
  color: var(--om-primary-deep);
}
@media (max-width: 640px) {
  .pv-toc__list { columns: 1; }
}

.pv-article {
  margin-top: var(--om-sp-7);
}
.pv-section {
  margin-bottom: var(--om-sp-8);
}
.pv-section:last-child {
  margin-bottom: 0;
}
.pv-section h2 {
  padding-bottom: var(--om-sp-3);
  border-bottom: 2px solid var(--om-line);
  margin-bottom: var(--om-sp-5);
}
.pv-section h3 {
  font-size: var(--om-fs-lg);
  margin-top: var(--om-sp-6);
}

.pv-list {
  margin: 0 0 var(--om-sp-4);
  padding-left: 1.25em;
  display: grid;
  gap: var(--om-sp-3);
}
.pv-list li::marker {
  color: var(--om-primary);
}
.pv-list--check {
  list-style: none;
  padding-left: 0;
}
.pv-list--check li {
  position: relative;
  padding-left: 32px;
}
.pv-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--om-surface);

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d5430c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 12.5 3.2 3.2L17 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}

.pv-note {
  font-size: var(--om-fs-xs);
  color: var(--om-ink-soft);
  background: var(--om-surface);
  border-left: 3px solid var(--om-accent);
  border-radius: 0 var(--om-r-sm) var(--om-r-sm) 0;
  padding: 8px 14px;
  margin: 0 0 var(--om-sp-4);
}

.pv-steps {
  grid-template-columns: 1fr;
  gap: var(--om-sp-6);
  margin-top: var(--om-sp-5);
}
.pv-steps li {
  padding-top: 0;
  padding-left: 66px;
  min-height: 46px;
}
.pv-steps li::before {
  top: -2px;
}

.pv-contact {
  display: flex;
  gap: var(--om-sp-4);
  align-items: flex-start;
  margin-top: var(--om-sp-5);
}
.pv-contact > svg {
  width: 28px;
  height: 28px;
  flex: none;
  color: var(--om-primary);
  margin-top: 3px;
}
.pv-contact__title {
  font-family: var(--om-font-heading);
  font-weight: 800;
  font-size: var(--om-fs-md);
  color: var(--om-dark);
  margin: 0 0 4px;
}
.pv-contact__line {
  margin: 0 0 4px;
  font-size: var(--om-fs-sm);
}
.pv-contact__line:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .pv-contact {
    flex-direction: column;
  }
}
