/* Online estate sales service page (/online-estate-sales-in-nashville-tn/).
   Loaded after seo-content-pages.css; adds the photo-beside-copy split, the Buy-hold
   explainer, and the fit list. Everything else comes from the shared SEO page rules. */
.eg-seo-content-page .eg-online-sale__split {
  align-items: start;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
}

.eg-seo-content-page .eg-online-sale__split > div > h2 {
  margin-top: 0;
}

.eg-seo-content-page .eg-online-sale__figure {
  margin: 0;
}

.eg-seo-content-page .eg-online-sale__figure img {
  border-radius: 18px;
  display: block;
  height: auto;
  width: 100%;
}

.eg-seo-content-page .eg-online-sale__figure figcaption {
  color: #5b6770;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.65rem;
}

.eg-seo-content-page .eg-online-sale__hold {
  background: #edf7f8;
  border: 1px solid #cce4e8;
  border-radius: 16px;
  margin-top: 2rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
}

#main-content .eg-seo-content-page .eg-online-sale__hold h3 {
  margin-top: 0;
}

.eg-seo-content-page .eg-online-sale__hold ol {
  list-style: decimal outside;
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.eg-seo-content-page .eg-online-sale__hold li {
  margin: 0.35rem 0;
}

.eg-seo-content-page .eg-online-sale__fit {
  list-style: disc outside;
  margin: 1.25rem 0;
  padding-left: 1.25rem;
}

.eg-seo-content-page .eg-online-sale__fit li {
  margin: 0.6rem 0;
}

/* The reasons section: a narrower photo beside the heading, then the eight reasons as two
   columns of cards across the full width instead of a tall stack beside the photo. */
.eg-seo-content-page .eg-online-sale__split--reasons {
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.eg-seo-content-page .eg-online-sale__split--reasons .eg-online-sale__figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eg-seo-content-page .eg-online-sale__reasons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (max-width: 64rem) {
  .eg-seo-content-page .eg-online-sale__split {
    grid-template-columns: minmax(0, 1fr);
  }

  .eg-seo-content-page .eg-online-sale__reasons {
    grid-template-columns: minmax(0, 1fr);
  }

  .eg-seo-content-page .eg-online-sale__split--photo-first > .eg-online-sale__figure {
    order: 1;
  }
}

/* Comparison table: the header row stays pinned under the sticky navigation while the rows
   scroll past and releases when the table ends. The shared wrapper scrolls horizontally,
   which would trap a sticky header inside it, so it only scrolls where the table cannot fit. */
@media (min-width: 48rem) {
  .eg-seo-content-page.eg-online-sale .eg-seo-page__table-wrap {
    overflow: visible;
  }

  .eg-seo-content-page.eg-online-sale thead th {
    box-shadow: 0 1px 0 var(--eg-seo-line);
    position: sticky;
    top: calc(var(--eg-sticky-navigation-height, 0px) - var(--eg-table-header-lift, 0px));
    z-index: 2;
  }
}
