/* Fall Fest garage sale flyer theme */
.garage-sale-flyer-hub {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.garage-sale-print-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.garage-sale-print-toolbar .flyer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.9rem;
  font: inherit;
}

.garage-sale-flyer-screen-shell {
  display: block;
  overflow-x: auto;
  max-width: 100%;
}

.garage-sale-print-root,
.garage-sale-print-root .legacy-garage-sale-doc,
.garage-sale-print-root .garage-sale-print-sheet,
.garage-sale-doc {
  width: 8.5in;
  height: 11in;
  min-width: 8.5in;
  min-height: 11in;
  max-width: 8.5in;
  max-height: 11in;
  margin: 0 auto;
  box-sizing: border-box;
}

.garage-sale-doc {
  overflow: hidden;
  background: #fff;
  color: #2f2517;
}

.garage-sale-print-root .garage-sale-doc .doc-page-inner {
  height: 11in;
  min-height: 11in;
  max-height: 11in;
  padding: 0.35in;
  gap: 12px;
  box-sizing: border-box;
}

.garage-sale-doc .doc-header {
  border-bottom: 2px solid #d6b98c;
  padding-bottom: 12px;
}

.garage-sale-doc .doc-title {
  font-size: 3rem;
}

.garage-sale-listings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

/* The page is fixed at letter size. Its internal grid must not follow the
   viewport breakpoint that makes legacy flyer previews single-column. */
.garage-sale-print-root .legacy-garage-sale-doc .garage-sale-listings {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.garage-sale-listings .doc-entry {
  border: 1px solid #d6b98c;
  background: #fff;
  padding: 8px;
  border-radius: 9px;
  gap: 4px;
}

.garage-sale-listings .doc-entry h3 {
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 800;
}

.garage-sale-listings .doc-entry p,
.garage-sale-listings .doc-entry-meta {
  font-size: 0.75rem;
  line-height: 1.25;
}

.garage-sale-listings .flyer-hours {
  font-weight: 700;
}

.garage-sale-listings .doc-entry-top {
  display: block;
}

.garage-sale-doc .doc-footer {
  align-items: flex-start;
}

.garage-sale-doc .doc-footer span:last-child {
  text-align: right;
}

@media print {
  @page { size: 8.5in 11in; margin: 0; }

  body.garage-sale-printable-document .garage-sale-print-sheet,
  body.garage-sale-printable-document .garage-sale-doc,
  body.garage-sale-printable-document .garage-sale-print-root,
  body.garage-sale-printable-document .legacy-garage-sale-doc {
    width: 8.5in !important;
    height: 11in !important;
    min-height: 11in !important;
    max-height: 11in !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body.garage-sale-printable-document .garage-sale-doc .doc-page-inner {
    height: 11in !important;
    min-height: 11in !important;
    padding: 0.28in !important;
  }

  body.garage-sale-printable-document .garage-sale-listings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7pt;
  }
}
