main.vt-section {
  padding-top: 0;
}

.vt-post-page {
  padding: 0 0 56px;
}

.vt-crumbbar {
  width: 100%;
  padding: 0 0 14px;
}

.vt-crumbbar__row {
  display: flex;
  justify-content: flex-end;
}

.vt-crumbbar__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: rgba(16, 24, 40, 0.78);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.vt-crumbbar__sep {
  opacity: 0.6;
  font-weight: 700;
}

.vt-crumbbar__home,
.vt-crumbbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 13px;
}

.vt-crumbbar__home svg {
  width: 18px;
  height: 18px;
}

.vt-crumbbar__link:hover {
  text-decoration: underline;
}

.vt-crumbbar__cur {
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 13px;
  opacity: 0.95;
}

.vt-pagehero__crumbbar {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  max-width: min(760px, calc(100% - 40px));
  pointer-events: none;
}

.vt-pagehero--banner .vt-pagehero__crumbbar {
  right: max(20px, calc((100% - var(--vt-container)) / 2 + 16px));
  bottom: clamp(14px, 2vw, 22px);
}

.vt-pagehero__crumbbar .vt-crumbbar__nav {
  max-width: 100%;
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.vt-pagehero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3fbf5 0%, #ffffff 55%, #eef7ff 100%);
  border: 1px solid #e5efe8;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
  margin-bottom: 28px;
}

.vt-pagehero--banner {
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  min-height: clamp(210px, 16vw, 280px);
  border: 0;
  border-radius: 0;
  background: #0c1622;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.1);
}

.vt-pagehero__bg {
  position: absolute;
  inset: 0;
}

.vt-pagehero__bg picture,
.vt-pagehero__bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.vt-pagehero__bg img {
  object-fit: cover;
  object-position: center;
}

.vt-pagehero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 16, 24, 0.76) 0%,
      rgba(8, 16, 24, 0.48) 42%,
      rgba(8, 16, 24, 0.16) 100%
    ),
    linear-gradient(180deg, rgba(8, 16, 24, 0.06) 0%, rgba(8, 16, 24, 0.3) 100%);
}

.vt-pagehero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: clamp(300px, 36vw, 460px);
  padding: clamp(26px, 4vw, 42px);
}

.vt-pagehero--banner .vt-pagehero__inner {
  min-height: clamp(210px, 16vw, 280px);
  padding-block: clamp(22px, 3vw, 34px);
  padding-inline: max(20px, calc((100% - var(--vt-container)) / 2 + 16px));
  padding-bottom: clamp(84px, 11vw, 104px);
}

.vt-pagehero__copy {
  max-width: min(760px, 100%);
}

.vt-pagehero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vt-pagehero:not(.vt-pagehero--banner) .vt-pagehero__kicker {
  background: #eef8f1;
  color: #1f6f43;
  backdrop-filter: none;
}

.vt-pagehero__title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 14px 0 10px;
  color: #fff;
  font-weight: 800;
}

.vt-pagehero:not(.vt-pagehero--banner) .vt-pagehero__title {
  color: #10261a;
}

.vt-pagehero__lead {
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.vt-pagehero:not(.vt-pagehero--banner) .vt-pagehero__lead {
  color: #4b5563;
}

.vt-pagehero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.vt-pagehero__actions .vt-btn--solid {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.vt-post__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.vt-post__card,
.vt-side__card {
  border: 1px solid var(--vt-border);
  border-radius: var(--vt-radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.vt-post__card {
  overflow: hidden;
}

.vt-post__cover {
  aspect-ratio: 16/7;
  background: linear-gradient(180deg, #fff, rgba(25, 135, 84, 0.06));
}

.vt-post__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vt-post__body {
  padding: 22px;
}

.vt-post__title {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.15;
}

.vt-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--vt-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.vt-post__intro {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
}

.vt-post__intro p {
  margin: 0 0 10px;
}

.vt-post__intro > *:last-child {
  margin-bottom: 0;
}

.vt-post__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
}

.vt-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid var(--vt-border);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
}

.vt-chip:hover {
  border-color: rgba(25, 135, 84, 0.45);
  color: var(--vt-green);
}

.vt-post__content {
  color: var(--vt-text);
  line-height: 1.8;
  font-size: 16px;
}

.vt-post__content > *:first-child {
  margin-top: 0;
}

.vt-post__content > *:last-child {
  margin-bottom: 0;
}

.vt-post__content h1,
.vt-post__content h2,
.vt-post__content h3,
.vt-post__content h4,
.vt-post__content h5,
.vt-post__content h6 {
  line-height: 1.3;
  margin: 1.35em 0 0.65em;
  color: #0f172a;
}

.vt-post__content p,
.vt-post__content ul,
.vt-post__content ol,
.vt-post__content table,
.vt-post__content blockquote,
.vt-post__content pre,
.vt-post__content figure {
  margin: 0 0 1rem;
}

.vt-post__content ul,
.vt-post__content ol {
  padding-left: 1.25rem;
}

.vt-post__content a {
  color: var(--vt-green);
  text-decoration: none;
}

.vt-post__content a:hover {
  text-decoration: underline;
}

.vt-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.vt-post__content figure {
  text-align: center;
}

.vt-post__content figcaption {
  margin-top: 8px;
  color: var(--vt-muted);
  font-size: 14px;
}

.vt-post__content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow: auto;
  border: 1px solid var(--vt-border);
  border-radius: 12px;
}

.vt-post__content table td,
.vt-post__content table th {
  border: 1px solid var(--vt-border);
  padding: 10px 12px;
  vertical-align: top;
}

.vt-post__content blockquote {
  padding: 14px 16px;
  border-left: 4px solid var(--vt-green);
  background: #f6fbf8;
  border-radius: 0 12px 12px 0;
  color: #334155;
}

.vt-post__content pre {
  background: #0f172a;
  color: #e5e7eb;
  padding: 16px;
  border-radius: 14px;
  overflow: auto;
}

.vt-post__content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.vt-post__content iframe {
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 14px;
  display: block;
  background: #000;
}

.vt-side__card {
  padding: 16px;
  position: sticky;
  top: 18px;
}

.vt-side__title {
  margin: 0 0 12px;
  font-size: 17px;
}

.vt-rel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vt-rel__item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.vt-rel__thumb {
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, rgba(25, 135, 84, 0.06));
}

.vt-rel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vt-rel__t {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

.vt-rel__d {
  color: var(--vt-muted);
  font-size: 12px;
  margin-top: 4px;
}

.vt-rel__e {
  color: var(--vt-muted);
  font-size: 13px;
  margin-top: 5px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vt-side__more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  color: var(--vt-green);
  text-decoration: none;
  font-weight: 800;
}

.vt-post-more {
  margin-top: 28px;
}

.vt-post-more__head {
  margin-bottom: 18px;
}

.vt-post-more__title {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  color: #10261a;
  margin: 0;
}

.vt-post-more__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vt-post-more__card {
  height: 100%;
  background: #fff;
  border: 1px solid #e5efe8;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.vt-post-more__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
  border-color: #cfe6d7;
}

.vt-post-more__media {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #eff9f1 0%, #f5faff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #edf2ee;
}

.vt-post-more__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vt-post-more__body {
  padding: 18px;
}

.vt-post-more__card-title {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  color: #10261a;
  margin: 0 0 8px;
}

.vt-post-more__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #5b6472;
  margin: 0 0 14px;
}

.vt-post-more__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #198754;
  font-weight: 700;
  text-decoration: none;
}

.vt-post-more__action:hover {
  text-decoration: none;
  opacity: 0.92;
}

@media (max-width: 980px) {
  .vt-post__wrap {
    grid-template-columns: 1fr;
  }

  .vt-side__card {
    position: static;
  }

  .vt-post-more__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vt-post__title {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .vt-pagehero--banner {
    min-height: 200px;
  }

  .vt-pagehero--banner .vt-pagehero__inner {
    min-height: 200px;
    padding: 18px 16px 78px;
  }

  .vt-pagehero__overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 16, 24, 0.18) 0%,
      rgba(8, 16, 24, 0.3) 26%,
      rgba(8, 16, 24, 0.82) 100%
    );
  }
}

@media (max-width: 720px) {
  .vt-post-more__grid {
    grid-template-columns: 1fr;
  }

  .vt-crumbbar__row {
    justify-content: flex-start;
  }

  .vt-crumbbar__nav {
    width: 100%;
  }

  .vt-pagehero__crumbbar {
    right: 16px;
    left: 16px;
    bottom: 16px;
    max-width: none;
    justify-content: flex-start;
  }

  .vt-pagehero__crumbbar .vt-crumbbar__nav {
    width: 100%;
  }

  .vt-post__body {
    padding: 16px;
  }

  .vt-post__content iframe {
    min-height: 220px;
  }
}
