/* Lazotto Column pages. Split from site.css for conditional loading. */

/* =========================================================
   Column
========================================================= */

.column-page .column-hero {
  background: #f5f2ea;
}

.column-list-section {
  background: #fbfaf6;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.column-card {
  min-width: 0;
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.column-card__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.column-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background: #f1eee7;
}

.column-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(20, 20, 20, 0.4);
  font-family: var(--nav-serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.column-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.column-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.column-card__labels span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 999px;
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.column-card__labels span:first-child {
  border-color: rgba(20, 20, 20, 0.2);
  color: var(--ink);
}

.column-card__meta,
.single-column__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(20, 20, 20, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.column-card__title {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.26rem, 1.85vw, 1.62rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
}

.column-card__excerpt {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.column-card__more {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: rgba(20, 20, 20, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (min-width: 981px) {
  .column-grid .column-card:first-child {
    grid-column: span 2;
  }

  .column-grid .column-card:first-child .column-card__link {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .column-grid .column-card:first-child .column-card__media {
    height: 100%;
    min-height: 360px;
    border-right: 1px solid rgba(20, 20, 20, 0.08);
    border-bottom: 0;
  }

  .column-grid .column-card:first-child .column-card__body {
    padding: 34px;
  }

  .column-grid .column-card:first-child .column-card__title {
    font-size: clamp(1.85rem, 2.8vw, 2.65rem);
    line-height: 1.24;
  }
}

.column-empty {
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.72);
  padding: 32px;
  color: var(--muted);
}

.column-empty p {
  margin: 0;
}

.column-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.column-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  color: inherit;
  text-decoration: none;
}

.column-pagination .current {
  background: var(--ink);
  color: var(--white);
}

.single-column-page {
  background: #fbfaf6;
}

.single-column,
.single-post-basic {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 110px;
}

.single-column__header {
  margin-bottom: 42px;
}

.single-column__title {
  margin: 22px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.single-column__thumbnail {
  margin: 0 0 48px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.1);
}

.single-column__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.single-column__content {
  color: rgba(20, 20, 20, 0.82);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 2.05;
}

.single-column__content > * {
  margin-top: 0;
  margin-bottom: 1.6em;
}

.single-column__content .lzt-lead {
  margin: 0 0 2.2em;
  color: rgba(20, 20, 20, 0.82);
  font-size: clamp(1.03rem, 1.2vw, 1.12rem);
  line-height: 2.05;
}

.single-column__content table,
.single-column__content .lzt-readability-table,
.single-column__content .readability-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.2em 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 20, 20, 0.1);
  font-size: 0.95rem;
  line-height: 1.75;
}

.single-column__content th,
.single-column__content td {
  padding: 16px 18px;
  border: 1px solid rgba(20, 20, 20, 0.09);
  vertical-align: top;
  text-align: left;
}

.single-column__content th {
  background: rgba(239, 238, 233, 0.92);
  font-weight: 700;
}

.single-column__content .lzt-note-block,
.single-column__content .note-block {
  margin: 2.2em 0;
  padding: clamp(22px, 3vw, 30px);
  border-left: 3px solid rgba(20, 20, 20, 0.72);
  background: rgba(247, 246, 243, 0.92);
}

.single-column__content .lzt-note-block > :last-child,
.single-column__content .note-block > :last-child {
  margin-bottom: 0;
}

.single-column__content .lzt-note-label {
  margin: 0 0 10px;
  color: rgba(20, 20, 20, 0.72);
  font-family: var(--nav-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.single-column__content figure.wp-block-image,
.single-column__content .lzt-body-image {
  margin: 2.4em 0;
}

.single-column__content figure.wp-block-image img,
.single-column__content .lzt-body-image img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(20, 20, 20, 0.1);
}

.single-column__content figcaption {
  margin-top: 10px;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.88rem;
  line-height: 1.7;
}

.single-column__content .lzt-note-block--soft,
.single-column__content .lzt-note-block--important,
.single-column__content .lzt-check-block,
.single-column__content .lzt-point-block {
  margin: 2.2em 0;
  padding: 24px 26px;
  background: rgba(246, 244, 238, 0.72);
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.single-column__content .lzt-note-block--important {
  background: rgba(236, 239, 230, 0.72);
  border-color: rgba(85, 101, 79, 0.18);
}

.single-column__content .lzt-check-block,
.single-column__content .lzt-point-block {
  background: rgba(250, 249, 246, 0.95);
}

.single-column__content .lzt-marker {
  background: linear-gradient(transparent 58%, rgba(214, 221, 203, 0.76) 58%);
}

.single-column__content .lzt-underline {
  text-decoration: underline;
  text-decoration-color: rgba(85, 101, 79, 0.42);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.22em;
}

.single-column__content .lzt-cta-block {
  margin: 3em 0 1em;
  padding: 30px;
  background: rgba(246, 244, 238, 0.9);
  border: 1px solid rgba(20, 20, 20, 0.1);
}

.single-column__content .lzt-cta-block--compact {
  padding: clamp(22px, 3vw, 28px);
  text-align: center;
}

.single-column__content .lzt-cta-block h2,
.single-column__content .lzt-cta-block h3 {
  margin-top: 0;
}

.single-column__content .lzt-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.single-column__content .lzt-cta-button:hover {
  background: rgba(20, 20, 20, 0.82);
}

.single-column__content .lzt-cta-inline {
  margin: 2.4em 0 0;
  text-align: left;
}

.single-column__content .lzt-cta-button--subtle {
  margin-top: 0;
  padding: 11px 20px;
  border: 1px solid rgba(20, 20, 20, 0.18);
  background: transparent;
  color: rgba(20, 20, 20, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
}

.single-column__content .lzt-cta-button--subtle:hover {
  background: rgba(20, 20, 20, 0.05);
  color: var(--ink);
}

.single-column__content .lzt-cta-subtext {
  margin-top: 12px;
  color: rgba(20, 20, 20, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .single-column__content table,
  .single-column__content .lzt-readability-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .single-column__content th,
  .single-column__content td {
    min-width: 160px;
    padding: 14px;
  }

  .single-column__content .lzt-cta-block,
  .single-column__content .lzt-note-block--soft,
  .single-column__content .lzt-note-block--important,
  .single-column__content .lzt-check-block,
  .single-column__content .lzt-point-block {
    padding: 22px 18px;
  }
}

@media (max-width: 1180px) {
  .column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .column-grid {
    grid-template-columns: 1fr;
  }

  .column-card__body {
    padding: 22px;
  }

  .single-column,
  .single-post-basic {
    width: min(100% - 32px, 920px);
    padding: 120px 0 86px;
  }
}

@media (max-width: 820px) {
  .case-hero-visual {
    background-position: 68% center;
    opacity: 0.42;
  }

  .case-hero-visual::before {
    background:
      linear-gradient(
        90deg,
        rgba(250, 249, 246, 0.98) 0%,
        rgba(250, 249, 246, 0.9) 58%,
        rgba(250, 249, 246, 0.64) 100%
      );
  }

  .case-modal {
    padding: 24px;
  }

  .case-modal-panel {
    max-height: 84vh;
    padding: 46px 24px 30px;
  }

  .case-modal-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* =========================================================
   Route Pages
========================================================= */

.route-empty-state {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--soft-line);
  text-align: center;
}

.route-empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.route-empty-state .route-empty-label {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .route-empty-state {
    padding: 30px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .motion-target,
  .lzt-problem-item .lzt-problem-diagram,
  .lzt-why-visual .lzt-why-diagram,
  .lzt-why-visual .lzt-why-items,
  .lzt-problem-item .lzt-problem-diagram g,
  .lzt-why-visual .lzt-why-diagram g {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* =========================================================
   Small-screen Layout Guard
========================================================= */

@media (max-width: 820px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .site-header {
    height: auto;
    min-height: 132px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 22px 20px 12px;
  }

  .brand {
    margin-right: 0;
  }

  .brand-logo {
    height: 42px;
    max-width: 150px;
  }

  .header-cta {
    display: inline-flex;
    order: 2;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    max-width: 190px;
    height: 38px;
    min-height: 38px;
    margin-left: auto;
    padding: 0 12px;
    font-size: 0.7rem;
    line-height: 1.3;
    white-space: nowrap;
  }

  .global-nav {
    position: static;
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    overflow: visible;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 8px 0 0;
    border: 0;
    background: transparent;
    font-size: 0.68rem;
    line-height: 1.45;
    white-space: normal;
  }

  .global-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero,
  .lower-hero,
  .column-page,
  .contact-page,
  .site-footer {
    overflow-x: hidden !important;
  }

  .hero-inner,
  .lower-hero-inner,
  .lower-breadcrumb,
  .lower-section-inner,
  .lower-cta-inner,
  .footer-brand,
  .footer-nav {
    width: min(100% - 40px, var(--container));
    min-width: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 164px;
    gap: 24px;
  }

  .hero-copy,
  .lower-hero-inner,
  .lower-section-heading,
  .column-grid,
  .column-card,
  .contact-form {
    min-width: 0 !important;
    max-width: 100%;
  }

  .hero h1,
  .hero h1 span,
  .lead,
  .lower-title,
  .lower-section-title,
  .contact-page .contact-form-section .lower-section-title,
  .column-card__title {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.05rem);
    line-height: 1.22;
  }

  .lower-hero {
    padding-top: 164px;
  }

  .lower-title {
    font-size: clamp(2.35rem, 14vw, 4.1rem);
    line-height: 1.2;
  }

  .lower-section-title,
  .contact-page .contact-form-section .lower-section-title {
    font-size: clamp(1.95rem, 10.5vw, 3.25rem);
    line-height: 1.28;
  }

  .lead br,
  .lower-lead br,
  .lower-section-lead br {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    width: min(100%, 260px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 136px;
  }

  .header-cta {
    max-width: 170px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }
}

/* =========================================================
   Small-screen Layout Guard Tail
========================================================= */

@media (max-width: 820px) {
  .site-header {
    box-sizing: border-box !important;
    min-height: 178px !important;
  }

  .site-header .brand {
    margin-right: 0 !important;
  }

  .site-header .header-cta {
    position: static !important;
    order: 2 !important;
    flex: 0 0 100% !important;
    width: 220px !important;
    max-width: 220px !important;
    margin: 0 !important;
  }

  .site-header .global-nav {
    order: 3 !important;
  }

  .hero-inner {
    padding-top: 204px !important;
  }

  .lower-hero {
    padding-top: 204px !important;
  }

  .lower-hero-inner {
    grid-template-columns: 1fr !important;
  }

  .lower-title {
    font-size: clamp(2.15rem, 11vw, 3rem) !important;
    line-height: 1.25 !important;
  }

  .lower-section-title,
  .contact-page .contact-form-section .lower-section-title {
    font-size: clamp(1.8rem, 9.5vw, 2.7rem) !important;
    line-height: 1.35 !important;
  }

  .hero h1,
  .hero h1 span,
  .lead,
  .lower-title,
  .lower-section-title,
  .lower-lead,
  .lower-section-lead,
  .contact-page .contact-form-section .lower-section-title,
  .column-card__title {
    display: block;
    width: 100%;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    line-break: anywhere;
    overflow-wrap: anywhere !important;
  }

  .lower-lead,
  .lower-section-lead {
    font-size: 0.96rem;
    line-height: 1.9;
  }
}

@media (max-width: 820px) {
  .lower-lead,
  .lower-section-lead,
  .contact-page .lower-lead,
  .contact-page .lower-section-lead,
  .column-page .lower-lead,
  .column-page .lower-section-lead {
    max-width: calc(100vw - 44px) !important;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
  }

  .contact-page .contact-form-section .lower-section-title {
    font-size: clamp(1.65rem, 8.4vw, 2.3rem) !important;
    word-break: break-all !important;
  }
}

@media (max-width: 820px) {
  .lower-hero-inner > *,
  .lower-section-heading,
  .contact-page .motion-target,
  .column-page .motion-target {
    width: 100% !important;
    max-width: calc(100vw - 40px) !important;
    min-width: 0 !important;
  }

  .lower-lead,
  .lower-section-lead,
  .contact-page .lower-lead,
  .contact-page .lower-section-lead,
  .column-page .lower-lead,
  .column-page .lower-section-lead {
    width: 100% !important;
    max-width: calc(100vw - 40px) !important;
    font-size: 0.92rem !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 820px) {
  .contact-page .contact-form-section .lower-section-title {
    font-size: clamp(1.35rem, 7vw, 1.7rem) !important;
    line-height: 1.45 !important;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
  }
}

/* SEO growth: Column search, tags, and article path */
.column-filter {
  margin: 0 auto 44px;
  padding: 24px;
  border: 1px solid rgba(40, 35, 28, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.column-filter__search {
  display: grid;
  gap: 12px;
}

.column-filter__search label {
  color: var(--color-ink, #141414);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.column-filter__search-row {
  display: flex;
  gap: 10px;
}

.column-filter__search input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(40, 35, 28, 0.16);
  border-radius: 6px;
  background: #fff;
  color: var(--color-ink, #141414);
  font: inherit;
}

.column-filter__search input[type="search"]::placeholder {
  color: rgba(40, 35, 28, 0.42);
}

.column-filter__search button {
  display: inline-flex;
  min-width: 104px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--color-ink, #141414);
  border-radius: 999px;
  background: var(--color-ink, #141414);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.column-filter__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(40, 35, 28, 0.1);
}

.column-filter__tag {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(40, 35, 28, 0.16);
  border-radius: 999px;
  color: var(--color-ink, #141414);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.column-filter__tag:hover,
.column-filter__tag.is-active {
  border-color: var(--color-ink, #141414);
  background: var(--color-ink, #141414);
  color: #fff;
}

.column-filter__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 18px 0 0;
  color: var(--color-muted, #6f6a61);
  font-size: 0.88rem;
  line-height: 1.7;
}

.column-filter__summary span {
  color: var(--color-ink, #141414);
  font-weight: 700;
}

.column-filter__summary a {
  color: var(--color-ink, #141414);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.lzt-column-path {
  margin: 52px 0 12px;
  padding: 28px;
  border: 1px solid rgba(40, 35, 28, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 244, 236, 0.96), rgba(255, 255, 255, 0.92));
}

.lzt-column-path__label {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lzt-column-path h2 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 1.38rem;
  letter-spacing: 0;
}

.lzt-column-path p {
  margin: 0 0 18px;
  color: var(--color-muted);
  line-height: 1.9;
}

.lzt-column-path__links {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.lzt-column-path__links a {
  color: var(--color-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.lzt-column-path__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lzt-column-path__actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(40, 35, 28, 0.18);
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 640px) {
  .column-filter,
  .lzt-column-path {
    padding: 20px;
  }

  .column-filter__search-row {
    flex-direction: column;
  }

  .column-filter__search button {
    width: 100%;
  }

  .column-filter__tag {
    flex: 1 1 auto;
  }

  .lzt-column-path__actions {
    flex-direction: column;
  }

  .lzt-column-path__actions a {
    width: 100%;
  }
}

/* Column archive repair: keep every card readable across paged archives and filters. */
.column-list-section .column-grid {
  align-items: stretch;
}

.column-list-section .column-card {
  overflow: hidden;
  background: #fff;
}

.column-list-section .column-card__link {
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
}

.column-list-section .column-card__media {
  width: 100%;
  min-width: 0;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 10;
  border-right: 0 !important;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08) !important;
}

.column-list-section .column-card__body {
  min-width: 0;
  background: #fff;
  padding: 24px !important;
}

.column-list-section .column-card__title {
  font-size: clamp(1.18rem, 1.55vw, 1.48rem) !important;
  line-height: 1.45 !important;
}

@media (min-width: 981px) {
  .column-list-section .column-grid .column-card:first-child {
    grid-column: auto !important;
  }
}

@media (max-width: 640px) {
  .column-page .lower-breadcrumb,
  .column-page .lower-hero-inner,
  .column-page .lower-section-inner {
    width: auto !important;
    max-width: none !important;
    margin-right: 16px !important;
    margin-left: 16px !important;
  }

  .column-list-section .lower-section-heading {
    width: 100%;
    margin-bottom: 28px;
  }

  .column-list-section .lower-section-title {
    font-size: 2.15rem !important;
    line-height: 1.25 !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
  }

  .column-list-section .lower-section-lead,
  .column-list-section .column-filter,
  .column-list-section .column-grid {
    width: 100%;
    max-width: 100%;
  }

  .column-page .lower-lead,
  .column-list-section .lower-section-lead {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
  }

  .column-list-section .column-filter {
    box-sizing: border-box;
    overflow: hidden;
  }

  .column-list-section .column-filter__tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .column-list-section .column-filter__tag {
    width: 100%;
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
  }

  .column-list-section .column-card__body {
    padding: 20px !important;
  }
}

/* Column editorial refinement: improve image distinction, body rhythm, and next paths. */
.column-list-section .column-card {
  border-color: rgba(38, 34, 28, 0.12);
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.045);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.column-list-section .column-card:hover {
  border-color: rgba(63, 74, 61, 0.26);
  box-shadow: 0 24px 54px rgba(20, 20, 20, 0.08);
  transform: translateY(-2px);
}

.column-list-section .column-card__media {
  background: #ebe7dd;
}

.column-list-section .column-card__image {
  transition: transform 0.42s ease;
}

.column-list-section .column-card:hover .column-card__image {
  transform: scale(1.025);
}

.column-list-section .column-card__labels span {
  background: rgba(247, 246, 243, 0.88);
  color: rgba(20, 20, 20, 0.78);
}

.column-list-section .column-card__labels span:first-child {
  border-color: rgba(63, 74, 61, 0.26);
  background: rgba(63, 74, 61, 0.08);
  color: #2d352a;
}

.column-list-section .column-card__meta {
  color: rgba(20, 20, 20, 0.66);
}

.column-list-section .column-card__title {
  color: #101010;
}

.column-list-section .column-card__excerpt {
  color: rgba(20, 20, 20, 0.72);
  line-height: 1.82;
}

.column-list-section .column-card__more {
  color: #3f4a3d;
}

.single-column {
  width: min(960px, calc(100% - 48px));
}

.single-column__header {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.single-column__title {
  color: #101010;
  line-height: 1.28;
}

.single-column__thumbnail {
  max-width: 940px;
  margin-right: auto;
  margin-bottom: 56px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 28, 0.1);
  background: #eee9dd;
}

.single-column__content {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(18, 18, 18, 0.9);
  font-size: 1.04rem;
  line-height: 1.96;
  letter-spacing: 0.01em;
}

.single-column__content p {
  margin-top: 0;
  margin-bottom: 1.55em;
}

.single-column__content h2 {
  margin: 3.25em 0 1.05em;
  padding-top: 1.35em;
  border-top: 1px solid rgba(38, 34, 28, 0.13);
  color: #101010;
  font-family: var(--serif);
  font-size: clamp(1.48rem, 2.2vw, 1.92rem);
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0;
}

.single-column__content h3 {
  margin: 2.35em 0 0.85em;
  color: #151515;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0.02em;
}

.single-column__content ul,
.single-column__content ol {
  margin: 0 0 1.8em;
  padding-left: 1.35em;
}

.single-column__content li + li {
  margin-top: 0.72em;
}

.single-column__content a {
  color: #273322;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(63, 74, 61, 0.34);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.single-column__content figure.wp-block-image,
.single-column__content .lzt-body-image {
  margin: 2.4rem 0 2.8rem;
  border: 1px solid rgba(38, 34, 28, 0.08);
  background: #f2eee5;
}

.single-column__content figcaption {
  padding: 0 4px 2px;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.82rem;
  line-height: 1.7;
}

.lzt-reading-summary {
  margin: 2.8rem 0 2.7rem;
  padding: 22px 24px;
  border: 1px solid rgba(63, 74, 61, 0.18);
  border-left: 4px solid #3f4a3d;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.04);
}

.lzt-reading-summary__label {
  margin: 0 0 12px !important;
  color: #3f4a3d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.lzt-reading-summary ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lzt-reading-summary li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(20, 20, 20, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
}

.lzt-reading-summary li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 7px;
  height: 1px;
  background: rgba(63, 74, 61, 0.64);
  content: "";
}

.lzt-column-path {
  margin: 64px 0 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lzt-column-path__intro {
  padding: 26px 0 20px;
  border-top: 1px solid rgba(38, 34, 28, 0.14);
}

.lzt-column-path__label {
  margin-bottom: 9px;
  color: #3f4a3d;
}

.lzt-column-path h2 {
  margin: 0 0 10px;
  padding-top: 0;
  border-top: 0;
  color: #101010;
  font-family: var(--serif);
  font-size: clamp(1.34rem, 2vw, 1.68rem);
  font-weight: 400;
  line-height: 1.45;
}

.lzt-column-path p {
  max-width: 620px;
  color: rgba(20, 20, 20, 0.7);
}

.lzt-column-path__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.lzt-column-path__link-card,
.lzt-column-path__actions a {
  display: grid;
  min-width: 0;
  gap: 7px;
  border: 1px solid rgba(38, 34, 28, 0.12);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.lzt-column-path__link-card {
  padding: 17px 18px;
}

.lzt-column-path__link-card:hover,
.lzt-column-path__actions a:hover {
  border-color: rgba(63, 74, 61, 0.28);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.06);
  transform: translateY(-1px);
}

.lzt-column-path__link-card span,
.lzt-column-path__actions span {
  color: #3f4a3d;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.lzt-column-path__link-card strong,
.lzt-column-path__actions strong {
  color: #101010;
  font-size: 0.98rem;
  line-height: 1.65;
}

.lzt-column-path__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lzt-column-path__actions a {
  min-height: 0;
  justify-content: flex-start;
  padding: 18px;
}

.lzt-column-path__actions em {
  color: rgba(20, 20, 20, 0.64);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .single-column {
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }

  .single-column__thumbnail {
    margin-bottom: 42px;
  }

  .single-column__content {
    font-size: 1rem;
    line-height: 1.9;
  }

  .single-column__content h2 {
    margin-top: 2.8em;
    font-size: 1.42rem;
  }

  .lzt-reading-summary {
    padding: 20px;
  }

  .lzt-column-path__links,
  .lzt-column-path__actions {
    grid-template-columns: 1fr;
  }
}

.single-column__content .lzt-column-path h2 {
  margin: 0 0 10px;
  padding-top: 0;
  border-top: 0;
}

.lzt-column-related {
  margin: 68px 0 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(38, 34, 28, 0.14);
}

.lzt-column-related .lzt-column-path__label {
  margin: 0 0 8px;
  color: rgba(63, 74, 61, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}

.single-column__content .lzt-column-related h2 {
  margin-bottom: 18px;
  font-size: clamp(1.22rem, 2vw, 1.54rem);
}

.lzt-column-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.single-column__content .lzt-column-related__card {
  text-decoration: none;
}

.lzt-column-related__card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 28, 0.13);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  box-shadow: 0 18px 38px rgba(20, 20, 20, 0.055);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.lzt-column-related__card:hover {
  border-color: rgba(63, 74, 61, 0.28);
  box-shadow: 0 22px 44px rgba(20, 20, 20, 0.095);
  transform: translateY(-2px);
}

.lzt-column-related__visual {
  display: block;
  aspect-ratio: 16 / 10;
  background: #e9e3d8;
}

.lzt-column-related__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
}

.lzt-column-related__body {
  display: grid;
  gap: 8px;
  padding: 17px 18px 19px;
}

.lzt-column-related__meta {
  color: rgba(63, 74, 61, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}

.lzt-column-related__body strong {
  color: #101010;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.62;
}

.single-column__back {
  margin: 30px 0 0;
  padding-top: 10px;
}

.single-column__content .single-column__back a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 10px;
  border: 1px solid rgba(38, 34, 28, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #101010;
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.045);
  text-decoration: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.single-column__content .single-column__back a:hover {
  border-color: rgba(63, 74, 61, 0.3);
  box-shadow: 0 20px 42px rgba(20, 20, 20, 0.075);
  transform: translateY(-1px);
}

.single-column__back-arrow {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(63, 74, 61, 0.1);
  color: #3f4a3d;
  font-size: 0.92rem;
  line-height: 1;
  transition: transform 0.24s ease, background 0.24s ease;
}

.single-column__content .single-column__back a:hover .single-column__back-arrow {
  background: rgba(63, 74, 61, 0.14);
  transform: translateX(-2px);
}

.single-column__back-text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.3;
}

.single-column__back-kicker {
  color: rgba(63, 74, 61, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.single-column__back-label {
  color: #101010;
  font-size: 0.94rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .lzt-column-related {
    margin-top: 54px;
  }

  .lzt-column-related__grid {
    grid-template-columns: 1fr;
  }

  .single-column__back {
    margin-top: 24px;
  }

  .single-column__content .single-column__back a {
    width: 100%;
    justify-content: center;
  }
}

.lzt-column-service-path {
  margin: 70px 0 20px;
}

.single-column__content .lzt-column-service-path__card {
  text-decoration: none;
}

/* Column single close: mirror the top page contact/footer layer. */
body.single-post,
body.column-page {
  --column-top-container: 1360px;
  --column-top-side: clamp(24px, 5vw, 96px);
  --column-top-ink: #272421;
  --column-top-white: #fffdf8;
  --column-dark-copy: rgba(255, 253, 248, 0.86);
  --column-dark-copy-strong: rgba(255, 253, 248, 0.92);
  --column-lead-size: 17px;
  --column-lead-line: 2.1;
}

body.single-post .single-column__back {
  display: flex;
  justify-content: flex-end;
}

body.single-post .single-column__content .single-column__back a {
  width: auto;
}

body.single-post .single-column-page .contact-section {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(96px, 12vw, 156px) 0;
  background: #171513;
  color: var(--column-top-white);
  line-height: normal;
}

body.single-post .single-column-page .contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(23, 21, 19, 0.84),
      rgba(23, 21, 19, 0.5),
      rgba(23, 21, 19, 0.2)
    ),
    url("../images/contact-bg.jpg") center / cover no-repeat;
  filter: saturate(0.98) contrast(1.02);
}

body.single-post .single-column-page .contact-copy {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - (var(--column-top-side) * 2)));
  max-width: none;
  margin-left: max(var(--column-top-side), calc((100vw - var(--column-top-container)) / 2));
  margin-right: 0;
  padding: 0;
  text-align: left;
}

body.single-post .single-column-page .contact-copy h2 {
  margin: 0;
  max-width: none;
  color: var(--column-top-white);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0;
}

body.single-post .single-column-page .contact-copy .section-number {
  margin: 0 0 20px;
  color: rgba(255, 253, 248, 0.68);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: normal;
  text-transform: uppercase;
}

body.single-post .single-column-page .contact-lead,
body.single-post .single-column-page .contact-free-note {
  max-width: none;
  margin: 24px 0 0;
  color: var(--column-dark-copy);
  font-size: var(--column-lead-size);
  line-height: var(--column-lead-line);
  letter-spacing: 0.02em;
}

body.single-post .single-column-page .contact-free-note {
  margin-top: 18px;
  color: var(--column-dark-copy-strong);
  font-weight: 700;
}

body.single-post .single-column-page .button-invert {
  width: min(360px, 100%);
  min-width: 0;
  min-height: 68px;
  height: auto;
  margin-top: 32px;
  padding: 0 40px;
  border-color: rgba(255, 253, 248, 0.92);
  background: rgba(255, 253, 248, 0.92);
  color: var(--column-top-ink);
  box-shadow: 0 16px 30px rgba(66, 57, 46, 0.1);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}

body.single-post .single-column-page .button-invert:hover,
body.single-post .single-column-page .button-invert:focus-visible {
  border-color: rgba(255, 253, 248, 0.92);
  background: #272421;
  color: #fffdf8;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

body.column-page .lower-cta-final {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: clamp(96px, 12vw, 156px) 0;
  background: #171513;
  color: #fffdf8;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  line-height: normal;
}

body.column-page .lower-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(23, 21, 19, 0.84),
      rgba(23, 21, 19, 0.5),
      rgba(23, 21, 19, 0.2)
    ),
    url("../images/contact-bg.jpg") center / cover no-repeat;
  filter: saturate(0.98) contrast(1.02);
}

body.column-page .lower-cta-final .lower-cta-inner {
  position: relative;
  z-index: 1;
  display: block;
  width: min(620px, calc(100% - (var(--column-top-side) * 2)));
  max-width: none;
  margin-left: max(var(--column-top-side), calc((100vw - var(--column-top-container)) / 2));
  margin-right: 0;
  padding: 0;
  transform: translateY(28px);
}

body.column-page .lower-cta-final .lower-cta-copy {
  max-width: none;
}

body.column-page .lower-cta-final .section-number {
  margin: 0 0 20px;
  color: rgba(255, 253, 248, 0.68);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: normal;
  text-transform: uppercase;
}

body.column-page .lower-cta-final h2 {
  margin: 0;
  max-width: none;
  color: #fffdf8;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0;
}

body.column-page .lower-cta-final p:not(.section-number) {
  max-width: none;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.02em;
}

body.column-page .lower-cta-final p:not(.section-number)::after {
  content: "初回相談は無料で承っています";
  display: block;
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.92);
  font-weight: 700;
}

body.column-page .lower-cta-final .lower-cta-button {
  width: min(360px, 100%);
  min-width: 0;
  min-height: 68px;
  height: auto;
  margin-top: 32px;
  padding: 0 40px;
  border-color: rgba(255, 253, 248, 0.92);
  background: rgba(255, 253, 248, 0.92);
  color: #272421;
  box-shadow: 0 16px 30px rgba(66, 57, 46, 0.1);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}

body.column-page .lower-cta-final .lower-cta-button:hover,
body.column-page .lower-cta-final .lower-cta-button:focus-visible {
  border-color: rgba(255, 253, 248, 0.92);
  background: #272421;
  color: #fffdf8;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

body.single-post .site-footer {
  min-height: 0;
  display: block;
  padding: 54px var(--column-top-side) 38px;
  background: #272421;
  color: #f7f2e8;
  line-height: normal;
}

body.single-post .footer-inner {
  width: min(var(--column-top-container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 30px 46px;
  align-items: start;
}

body.single-post .footer-logo-image,
body.single-post .footer-brand img {
  width: 150px;
  height: auto;
  max-width: none;
  margin: 0;
  filter: grayscale(1) invert(1) brightness(1.28) contrast(0.88);
}

body.single-post .footer-brand p,
body.single-post .copyright {
  margin: 18px 0 0;
  color: rgba(247, 242, 232, 0.68);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
}

body.single-post .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  max-width: 560px;
  color: rgba(247, 242, 232, 0.78);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: normal;
}

body.single-post .footer-nav a {
  color: inherit;
  text-decoration: none;
}

body.single-post .copyright {
  grid-column: 2;
  justify-self: end;
  align-self: end;
  margin-top: 0;
  text-align: right;
}

@media (max-width: 760px) {
  body.single-post .single-column__content .single-column__back a {
    width: auto;
    max-width: 100%;
  }

  body.single-post .single-column-page .contact-section {
    min-height: 560px;
    padding: 78px 0 86px;
  }

  body.single-post .single-column-page .contact-copy {
    width: calc(100% - 44px);
    margin-left: 22px;
  }

  body.single-post .single-column-page .contact-copy h2 {
    font-size: 34px;
  }

  body.single-post .single-column-page .contact-lead,
  body.single-post .single-column-page .contact-free-note {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0;
  }

  body.column-page .lower-cta-final {
    min-height: 620px;
    width: 100% !important;
    max-width: none !important;
    padding: 78px 0 86px;
  }

  body.column-page .lower-cta-final .lower-cta-inner {
    width: calc(100% - 44px);
    margin-left: 22px;
    transform: none;
  }

  body.column-page .lower-cta-final h2 {
    font-size: 34px;
  }

  body.column-page .lower-cta-final p:not(.section-number) {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0;
  }

  body.single-post .footer-inner {
    grid-template-columns: 1fr;
  }

  body.single-post .footer-nav {
    justify-content: flex-start;
  }

  body.single-post .copyright {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
}

.lzt-column-service-path__card {
  display: grid;
  min-height: 286px;
  grid-template-columns: minmax(220px, 0.74fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(38, 34, 28, 0.13);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  box-shadow: 0 20px 48px rgba(20, 20, 20, 0.06);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.lzt-column-service-path__card:hover {
  border-color: rgba(63, 74, 61, 0.28);
  box-shadow: 0 24px 56px rgba(20, 20, 20, 0.1);
  transform: translateY(-2px);
}

.lzt-column-service-path__visual {
  position: relative;
  min-height: 100%;
  background: #e9e3d8;
}

.lzt-column-service-path__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
}

.lzt-column-service-path__body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(25px, 4vw, 40px);
}

.lzt-column-service-path .lzt-column-path__label {
  margin: 0;
  color: #3f4a3d;
  letter-spacing: 0;
}

.lzt-column-service-path__theme {
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.single-column__content .lzt-column-service-path h2 {
  margin: 0;
  color: #101010;
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.5vw, 1.9rem);
  letter-spacing: 0;
  line-height: 1.48;
}

.lzt-column-service-path__text {
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.95rem;
  line-height: 1.9;
}

.lzt-column-service-path__button {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 18px;
  border-radius: 999px;
  background: #101010;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

.lzt-column-service-path .lzt-column-path__links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.lzt-column-service-path .lzt-column-path__links-label {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.lzt-column-service-path .lzt-column-path__link-card {
  min-height: 96px;
  padding: 17px 18px;
  background: rgba(247, 244, 236, 0.72);
}

.lzt-column-service-path .lzt-column-path__link-card span {
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .lzt-column-service-path {
    margin-top: 54px;
  }

  .lzt-column-service-path__card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .lzt-column-service-path__visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .lzt-column-service-path__visual img {
    min-height: 0;
  }

  .lzt-column-service-path__body {
    padding: 24px 22px 26px;
  }

  .lzt-column-service-path .lzt-column-path__links {
    grid-template-columns: 1fr;
  }
}

.case-column-bridge {
  background: #fff;
}

.case-bridge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-bridge-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(40, 35, 28, 0.12);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.55);
}

.case-bridge-card p {
  margin: 0;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.case-bridge-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.15rem;
  letter-spacing: 0;
  line-height: 1.55;
}

.case-bridge-card span {
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.85;
}

.case-bridge-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--color-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 900px) {
  .case-bridge-grid {
    grid-template-columns: 1fr;
  }
}

/* Column body decoration refinement: quiet emphasis for search-entry articles. */
.single-column__content .lzt-reading-summary--decorated {
  margin: 2.4em 0 2.35em;
  border-left-color: #3f4a3d;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 240, 0.9));
}

.single-column__content .lzt-key-message {
  margin: 2.05em 0 2.35em;
  padding: 0 0 0 18px;
  border-left: 2px solid rgba(63, 74, 61, 0.48);
  color: #151515;
  font-size: clamp(1.03rem, 1.5vw, 1.16rem);
  line-height: 1.95;
}

.single-column__content .lzt-key-message strong {
  font-weight: 700;
}

.single-column__content .lzt-marker {
  padding: 0.02em 0.08em;
  background: linear-gradient(transparent 61%, rgba(198, 188, 145, 0.42) 61%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.single-column__content .lzt-decoration-table {
  overflow: hidden;
  border-color: rgba(63, 74, 61, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.04);
}

.single-column__content .lzt-decoration-table table {
  margin: 0;
  border: 0;
}

.single-column__content .lzt-decoration-table th {
  background: rgba(63, 74, 61, 0.08);
  color: #263021;
}

.single-column__content .lzt-decoration-table td {
  background: rgba(255, 255, 255, 0.9);
}

.single-column__content .lzt-note-block--quiet {
  border-left-color: rgba(63, 74, 61, 0.58);
  background:
    linear-gradient(180deg, rgba(250, 249, 246, 0.97), rgba(245, 242, 235, 0.9));
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.035);
}

.single-column__content .lzt-note-block--quiet ul {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 1.1em;
}

.single-column__content .lzt-note-block--quiet li {
  margin: 0;
}

@media (max-width: 640px) {
  .single-column__content .readability-table,
  .single-column__content .lzt-decoration-table {
    display: block;
    overflow-x: auto;
  }

  .single-column__content .lzt-reading-summary--decorated,
  .single-column__content .lzt-note-block--quiet {
    padding: 21px 18px;
  }

  .single-column__content .lzt-key-message {
    margin: 1.75em 0 2em;
    padding-left: 14px;
  }

  .single-column__content .lzt-decoration-table {
    overflow: visible;
  }

  .single-column__content .lzt-decoration-table table,
  .single-column__content .lzt-decoration-table thead,
  .single-column__content .lzt-decoration-table tbody,
  .single-column__content .lzt-decoration-table tr,
  .single-column__content .lzt-decoration-table th,
  .single-column__content .lzt-decoration-table td {
    display: block;
    width: 100%;
  }

  .single-column__content .lzt-decoration-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .single-column__content .lzt-decoration-table tr {
    border-bottom: 1px solid rgba(63, 74, 61, 0.12);
    background: rgba(255, 255, 255, 0.92);
  }

  .single-column__content .lzt-decoration-table tr:last-child {
    border-bottom: 0;
  }

  .single-column__content .lzt-decoration-table td {
    display: grid;
    grid-template-columns: minmax(88px, 0.38fr) minmax(0, 1fr);
    gap: 13px;
    min-width: 0;
    padding: 13px 15px;
    border: 0;
    background: transparent;
  }

  .single-column__content .lzt-decoration-table td::before {
    content: attr(data-label);
    color: rgba(63, 74, 61, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.6;
  }
}

/* Column repair final layer: keep article header aligned without changing the archive header. */
body.single-post .site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  min-height: 72px;
  height: auto;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(71, 63, 54, 0.08);
  background: rgba(255, 253, 248, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(66, 57, 46, 0.055);
}

body.single-post .site-header.is-scrolled {
  position: fixed;
  border-bottom-color: rgba(71, 63, 54, 0.12);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 36px rgba(66, 57, 46, 0.08);
}

body.single-post .global-nav {
  color: #272421;
  text-shadow: none;
}

body.single-post .header-cta {
  min-height: 46px;
  border-color: rgba(39, 36, 33, 0.18);
  background: rgba(255, 253, 248, 0.72);
  color: #272421;
}

body.single-post .single-column__header {
  max-width: 920px;
}

body.single-post .single-column__title {
  max-width: 920px;
  font-size: clamp(2.18rem, 3.1vw, 3rem);
  line-height: 1.42;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

body.single-post .single-column__content > p:first-child,
body.single-post .single-column__content > p:first-child + p {
  color: rgba(18, 18, 18, 0.92);
  font-size: 1.09rem;
  line-height: 2.05;
}

body.single-post .single-column__content h2 {
  scroll-margin-top: 120px;
}

body.single-post .single-column__content .lzt-summary-deep {
  margin-top: 2.2em;
  padding: 26px 28px;
  border-left: 3px solid rgba(63, 74, 61, 0.62);
  background: linear-gradient(180deg, rgba(250, 249, 246, 0.98), rgba(245, 242, 235, 0.92));
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.035);
}

body.single-post .single-column__content .lzt-summary-deep p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  body.single-post .site-header {
    min-height: 78px;
    padding: 10px 16px;
  }

  body.single-post .single-column__title {
    max-width: none;
    font-size: clamp(1.78rem, 6.4vw, 2.18rem);
    line-height: 1.48;
  }

  body.single-post .single-column__content > p:first-child,
  body.single-post .single-column__content > p:first-child + p {
    font-size: 1.03rem;
    line-height: 1.98;
  }
}

@media (max-width: 480px) {
  body.single-post .single-column__title {
    font-size: 1.72rem;
    line-height: 1.52;
  }

  body.single-post .single-column__content .lzt-summary-deep {
    padding: 22px 19px;
  }
}

/* Unified child header layer: align COLUMN archive and article pages with the corporate child pages. */
body.lower-page .site-header,
body.single-post .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  z-index: 40;
  width: 100%;
  height: auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 42px);
  padding: 14px clamp(24px, 5vw, 96px);
  border-bottom: 1px solid rgba(71, 63, 54, 0.07);
  background: rgba(255, 253, 248, 0.24);
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

body.lower-page .site-header.is-scrolled,
body.single-post .site-header.is-scrolled {
  position: fixed;
  border-bottom-color: rgba(71, 63, 54, 0.12);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 36px rgba(66, 57, 46, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.lower-page .site-header .brand,
body.single-post .site-header .brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  margin-right: 0;
  margin-left: 18px;
  flex: 0 0 auto;
  text-decoration: none;
}

body.lower-page .site-header .brand img,
body.single-post .site-header .brand img {
  width: 100%;
  height: auto;
}

body.lower-page .site-header .global-nav,
body.single-post .site-header .global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
  margin-left: auto;
  min-height: 46px;
  color: #514d48;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 1px 14px rgba(255, 254, 251, 0.74);
}

body.lower-page .site-header .global-nav a,
body.single-post .site-header .global-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  height: 46px;
  padding: 0;
  line-height: 1;
}

body.lower-page .site-header .global-nav a.global-nav__service-link,
body.single-post .site-header .global-nav a.global-nav__service-link {
  padding: 0 20px;
  border-radius: 4px;
}

body.lower-page .site-header .header-cta,
body.single-post .site-header .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 46px;
  height: 46px;
  padding: 0 20px;
  border: 1px solid #272421;
  border-radius: 4px;
  color: #fff;
  background: #272421;
  box-shadow: 0 12px 24px rgba(66, 57, 46, 0.12);
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 1080px) {
  body.lower-page .site-header .global-nav,
  body.single-post .site-header .global-nav {
    display: none;
  }
}

/* COLUMN FV: align the archive hero with the newer corporate child pages. */
body.column-page .lower-hero {
  position: relative;
  min-height: min(100vh, 900px);
  padding: 168px clamp(24px, 5vw, 96px) 108px;
  overflow: hidden;
  background: #fbfaf7;
  border-bottom: 0;
  line-height: normal;
  isolation: isolate;
}

body.column-page .lower-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 40%, rgba(251, 250, 247, 0.44) 70%, rgba(251, 250, 247, 0.1) 100%),
    url("https://lazotto.jp/wp-content/uploads/2026/06/column-fv-archive-light-20260606.webp") center right / cover no-repeat;
  opacity: 0.64;
  filter: grayscale(0.08) saturate(0.96) contrast(1.04) brightness(1.02);
  transform: none;
  pointer-events: none;
}

body.column-page .lower-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0), #fbfaf7);
  pointer-events: none;
}

body.column-page .lower-breadcrumb,
body.column-page .lower-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1360px, 100%);
  margin-right: auto;
  margin-left: auto;
}

body.column-page .lower-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
  color: rgba(39, 36, 33, 0.56);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
}

body.column-page .lower-hero-inner {
  display: block;
  padding-top: 28px;
}

body.column-page .lower-kicker {
  margin: 0 0 20px;
  color: rgba(39, 36, 33, 0.5);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.16em;
}

body.column-page .lower-title {
  max-width: 760px;
  margin: 0 0 28px;
  color: #272421;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

body.column-page .lower-lead {
  width: min(700px, 100%);
  max-width: none;
  margin: 0;
  color: rgba(39, 36, 33, 0.72);
  font-size: clamp(16px, 1.28vw, 18px);
  line-height: 2;
}

body.column-page .lower-lead-main {
  display: block;
  max-width: 760px;
  margin: 0 0 18px;
  color: #272421;
  font-family: var(--serif);
  font-size: clamp(26px, 2.65vw, 38px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

body.column-page .lower-title,
body.column-page .lower-lead-main,
body.column-page .lower-lead {
  text-shadow: 0 1px 22px rgba(255, 254, 251, 0.62);
}

body.column-page .hero-scroll-cue {
  position: absolute;
  right: clamp(14px, 2.2vw, 32px);
  top: calc(min(100vh, 900px) - 118px);
  z-index: 8;
  display: grid;
  grid-template-columns: auto 2px;
  gap: 16px;
  align-items: end;
  color: rgba(39, 36, 33, 0.88);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  pointer-events: none;
  text-shadow: 0 1px 14px rgba(255, 254, 251, 0.82);
}

body.column-page .hero-scroll-cue::before {
  content: "";
  position: absolute;
  inset: -16px -14px -14px -12px;
  z-index: -1;
  border: 1px solid rgba(39, 36, 33, 0.09);
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.38);
  box-shadow:
    0 10px 28px rgba(66, 57, 46, 0.08),
    0 0 24px rgba(255, 254, 251, 0.74);
}

body.column-page .hero-scroll-cue span {
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

body.column-page .hero-scroll-cue i {
  position: relative;
  display: block;
  width: 2px;
  height: 116px;
  overflow: hidden;
  background: rgba(39, 36, 33, 0.24);
}

body.column-page .hero-scroll-cue i::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 2px;
  height: 42px;
  background: linear-gradient(180deg, rgba(39, 36, 33, 0), rgba(39, 36, 33, 0.95));
  animation: scrollCueLine 1.7s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

body.column-page .hero-scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(39, 36, 33, 0.72);
  border-bottom: 2px solid rgba(39, 36, 33, 0.72);
  transform: translateX(-50%) rotate(45deg);
}

body.column-page .hero-system-layer {
  position: absolute;
  top: clamp(170px, 17vw, 226px);
  right: max(clamp(24px, 5vw, 96px), calc((100vw - 1360px) / 2));
  z-index: 1;
  width: min(590px, 41vw);
  height: min(460px, 47vw);
  opacity: 0.32;
  pointer-events: none;
}

body.column-page .hero-system-word,
body.column-page .hero-system-line,
body.column-page .hero-system-dot,
body.column-page .hero-system-surface {
  position: absolute;
  display: block;
}

body.column-page .hero-system-word {
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(39, 36, 33, 0.14);
  border-radius: 999px;
  background: rgba(255, 254, 251, 0.62);
  color: rgba(39, 36, 33, 0.62);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1;
}

body.column-page .hero-system-line {
  height: 1px;
  background: rgba(39, 36, 33, 0.14);
  transform-origin: left center;
}

body.column-page .hero-system-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(39, 36, 33, 0.2);
}

body.column-page .hero-system-surface {
  border: 1px solid rgba(39, 36, 33, 0.08);
  border-radius: 50%;
}

body.column-page .hero-system-surface-a {
  top: 10%;
  right: 9%;
  width: 210px;
  height: 210px;
}

body.column-page .hero-system-surface-b {
  right: 34%;
  bottom: 6%;
  width: 132px;
  height: 132px;
}

body.column-page .hero-system-surface-c {
  top: 46%;
  right: 0;
  width: 96px;
  height: 96px;
}

body.column-page .hero-system-word-a { top: 7%; left: 16%; }
body.column-page .hero-system-word-b { top: 40%; right: 6%; }
body.column-page .hero-system-word-c { left: 13%; bottom: 7%; }
body.column-page .hero-system-line-a { top: 25%; left: 25%; width: 54%; transform: rotate(7deg); }
body.column-page .hero-system-line-b { top: 51%; left: 24%; width: 61%; transform: rotate(-5deg); }
body.column-page .hero-system-line-c { bottom: 27%; left: 23%; width: 45%; transform: rotate(3deg); }
body.column-page .hero-system-dot-a { top: 24%; left: 25%; }
body.column-page .hero-system-dot-b { top: 50%; right: 15%; }
body.column-page .hero-system-dot-c { left: 23%; bottom: 26%; }

@keyframes scrollCueLine {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(154px);
  }
}

@media (max-width: 720px) {
  body.column-page .lower-hero {
    min-height: 630px !important;
    padding: 132px 22px 86px !important;
  }

  body.column-page .lower-hero::before {
    background:
      linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 40%, rgba(251, 250, 247, 0.44) 70%, rgba(251, 250, 247, 0.1) 100%),
      url("https://lazotto.jp/wp-content/uploads/2026/06/column-fv-archive-light-20260606.webp") 62% center / cover no-repeat;
    opacity: 0.5;
  }

  body.column-page .lower-hero::after {
    height: 190px;
    background: linear-gradient(180deg, rgba(251, 250, 247, 0), #fbfaf7);
  }

  body.column-page .lower-breadcrumb,
  body.column-page .lower-hero-inner {
    width: min(100%, 346px) !important;
    max-width: calc(100vw - 44px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.column-page .lower-breadcrumb {
    margin-bottom: 36px;
  }

  body.column-page .lower-title {
    max-width: calc(100vw - 44px);
    font-size: clamp(46px, 15vw, 68px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: keep-all;
    line-break: strict;
  }

  body.column-page .lower-lead-main {
    max-width: calc(100vw - 44px);
    font-size: 24px;
  }

  body.column-page .lower-lead {
    width: min(320px, 100%);
    overflow-wrap: break-word;
    word-break: normal;
    line-break: strict;
  }

  body.column-page .hero-scroll-cue {
    top: auto;
    right: 22px;
    bottom: 12px;
    gap: 10px;
    font-size: 10px;
  }

  body.column-page .hero-scroll-cue i {
    height: 70px;
  }

  body.column-page .hero-system-layer {
    display: none;
  }
}



/* Column featured image alignment.
   Scope: selected Column posts with assigned editorial images.
   Posts:
   705 mvv-planning-failure-patterns
   706 recruitment-pr-what-to-post
   707 ceo-message-too-abstract
   708 company-value-verbalization-questions
*/

body.postid-705 .single-column__thumbnail,
body.postid-706 .single-column__thumbnail,
body.postid-707 .single-column__thumbnail,
body.postid-708 .single-column__thumbnail {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f1eee7;
}

body.postid-705 .single-column__thumbnail img,
body.postid-706 .single-column__thumbnail img,
body.postid-707 .single-column__thumbnail img,
body.postid-708 .single-column__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.postid-705 .single-column__content figure.wp-block-image,
body.postid-705 .single-column__content .lzt-body-image,
body.postid-706 .single-column__content figure.wp-block-image,
body.postid-706 .single-column__content .lzt-body-image,
body.postid-707 .single-column__content figure.wp-block-image,
body.postid-707 .single-column__content .lzt-body-image,
body.postid-708 .single-column__content figure.wp-block-image,
body.postid-708 .single-column__content .lzt-body-image {
  width: min(100%, 680px);
  margin: 2.4em auto;
  overflow: hidden;
  background: #f1eee7;
}

body.postid-705 .single-column__content figure.wp-block-image img,
body.postid-705 .single-column__content .lzt-body-image img,
body.postid-706 .single-column__content figure.wp-block-image img,
body.postid-706 .single-column__content .lzt-body-image img,
body.postid-707 .single-column__content figure.wp-block-image img,
body.postid-707 .single-column__content .lzt-body-image img,
body.postid-708 .single-column__content figure.wp-block-image img,
body.postid-708 .single-column__content .lzt-body-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}

@media (max-width: 820px) {
  body.postid-705 .single-column__thumbnail,
  body.postid-706 .single-column__thumbnail,
  body.postid-707 .single-column__thumbnail,
  body.postid-708 .single-column__thumbnail {
    margin-bottom: 36px;
  }

  body.postid-705 .single-column__content figure.wp-block-image,
  body.postid-705 .single-column__content .lzt-body-image,
  body.postid-706 .single-column__content figure.wp-block-image,
  body.postid-706 .single-column__content .lzt-body-image,
  body.postid-707 .single-column__content figure.wp-block-image,
  body.postid-707 .single-column__content .lzt-body-image,
  body.postid-708 .single-column__content figure.wp-block-image,
  body.postid-708 .single-column__content .lzt-body-image {
    width: min(100% - 28px, 640px);
    margin: 2em auto;
  }
}

/* Column body image ratio alignment.
   Scope: selected Column posts with assigned editorial body images.
*/
body.postid-705 .single-column__content figure.wp-block-image img,
body.postid-705 .single-column__content .lzt-body-image img,
body.postid-706 .single-column__content figure.wp-block-image img,
body.postid-706 .single-column__content .lzt-body-image img,
body.postid-707 .single-column__content figure.wp-block-image img,
body.postid-707 .single-column__content .lzt-body-image img,
body.postid-708 .single-column__content figure.wp-block-image img,
body.postid-708 .single-column__content .lzt-body-image img {
  aspect-ratio: 5 / 3;
}

/* Column body image width alignment.
   Keep desktop images aligned to content width and mobile images full-width within the article content.
*/

body.postid-705 .single-column__content figure.wp-block-image,
body.postid-705 .single-column__content .lzt-body-image,
body.postid-706 .single-column__content figure.wp-block-image,
body.postid-706 .single-column__content .lzt-body-image,
body.postid-707 .single-column__content figure.wp-block-image,
body.postid-707 .single-column__content .lzt-body-image,
body.postid-708 .single-column__content figure.wp-block-image,
body.postid-708 .single-column__content .lzt-body-image {
  width: 100%;
  max-width: 758px;
}

@media (max-width: 820px) {
  body.postid-705 .single-column__content figure.wp-block-image,
  body.postid-705 .single-column__content .lzt-body-image,
  body.postid-706 .single-column__content figure.wp-block-image,
  body.postid-706 .single-column__content .lzt-body-image,
  body.postid-707 .single-column__content figure.wp-block-image,
  body.postid-707 .single-column__content .lzt-body-image,
  body.postid-708 .single-column__content figure.wp-block-image,
  body.postid-708 .single-column__content .lzt-body-image {
    width: 100%;
    max-width: 758px;
  }
}
