/* Keep this file minimal; Bootstrap handles most layout */

.topbar a { letter-spacing: .02em; }

.portal-tile h3 { margin-bottom: .35rem; }
.portal-tile { background: #fff; }

.features-list span:first-child {
  line-height: 1.2;
}

/* ProSale brand/nav colors */
:root{
  --prosale-navy: #062449; /* deep navy similar to screenshot */
  --prosale-accent: #e8242e; /* brand red from logo */
}

.bg-prosale{ background-color: var(--prosale-navy) !important; }

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-brand,
.navbar-dark .navbar-text{
  color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus{
  color: #cfe6ff;
}

/* A little more breathing room between top-nav links (desktop only) */
@media (min-width: 992px) {
  .navbar-nav .nav-link {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

/* make the top utility bar blend with the navbar for a unified header */
.header-top-unified .bg-light{ background-color: var(--prosale-navy); color: #fff; }
.header-top-unified a{ color: rgba(255,255,255,0.9); }

/* override dropdown background for dark navbar */
.navbar-dark .dropdown-menu{ background-color: #083154; border: 0; }
.navbar-dark .dropdown-item{ color: #fff; }
.navbar-dark .dropdown-item:hover{ background-color: rgba(255,255,255,0.03); }

/* Hero layout styles */
.hero-image-wrapper{ display:block; }
.hero-img{
  width:100%;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(10,20,30,0.15);
  max-width: 720px;
}

.hero-title{ color: var(--prosale-navy); }
.hero-subtitle{ color: #444; }

.btn-prosale{
  background-color: var(--prosale-accent);
  border-color: transparent;
  color: #fff;
}
.btn-prosale:hover{ background-color: #d21d28; }

/* Sign-in dropdown tile styling to match screenshot */
.navbar-dark .dropdown-menu.p-2{
  background-color: #071a2b; /* slightly darker panel color */
  border-radius: 12px;
  min-width: 260px;
  padding: .5rem;
}

.navbar-dark .dropdown-menu.p-2 .signin-tile{
  display: block;
  background: linear-gradient(180deg, rgba(6,36,73,1), rgba(2,28,57,1));
  padding: .8rem .9rem;
  border-radius: 10px;
  margin-bottom: .6rem;
  box-shadow: 0 8px 18px rgba(3,12,30,0.25);
  text-decoration: none;
}

.navbar-dark .dropdown-menu.p-2 .signin-tile:last-child{ margin-bottom: 0; }

/* Group labels inside the Sign In dropdown */
.signin-group-label{
  color: rgba(255,255,255,0.55);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .9rem;
}

.navbar-dark .dropdown-menu.p-2 .signin-tile .small{ color: rgba(255,255,255,0.8); }
.navbar-dark .dropdown-menu.p-2 .signin-tile .fw-bold{ color: #fff; font-size: 1rem; }

/* Remove default dropdown item hover background and add subtle highlight */
.navbar-dark .dropdown-menu .signin-tile:hover{ background-color: rgba(255,255,255,0.03); }

/* Ensure caret/outline contrasts on focus */
.navbar-dark .dropdown-toggle:focus{ box-shadow: 0 0 0 0.2rem rgba(200,220,255,0.08); }

/* New Find a Sale / Have a Sale circular tiles */
.find-sale-img,
.have-sale-img{
  width: 220px;
  height: 220px;
}

.text-prosale-navy{ color: var(--prosale-navy); }
.text-prosale-accent{ color: var(--prosale-accent); }

/* allow image to fully cover the circle */
.object-fit-cover{
  object-fit: cover;
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .hero-img{ max-width:100%; }
}

/* Software section inspired by reference image */
.bg-software-full {
  background-color: #777777; /* dark gray full-width band */
}

.software-section {
  background-color: transparent; /* let the section's bg color show full-width */
  border-radius: 0;
  overflow: visible;
}

.software-panel {
  background-color: transparent;
  padding: 2.5rem 2rem;
}

.software-panel .btn-prosale {
  border-radius: 0.35rem;
}

.software-image-card {
  background-color: #ffffff;
  border-radius: 1.75rem;
  overflow: hidden;
  max-width: 520px;
  height: 100%;
  min-height: 260px;
}
/* Let the software image card bleed UP into the section above */
.bg-software-full{
  position: relative;
  z-index: 1;
  overflow: visible;   /* important */
}

/* pull the image card upward */
.software-image-card{
  position: relative;
  z-index: 10;
}

@media (min-width: 992px){
  .software-image-card{
    margin-top: -4.5rem;   /* bleed into the section above */
  }
}

/* mobile: smaller bleed so it doesn't crush layout */
@media (max-width: 991.98px){
  .bg-software-full{ padding-top: 4rem; }
  .software-image-card{ margin-top: -2rem; }
}
/* =========================
   3 full-width row bands + controlled overlaps
   ========================= */

.prosale-band{
  position: relative;
  width: 100%;
  overflow: visible;        /* critical so overflow can show */
  padding: 3rem 0;
}

/* alternating backgrounds (tweak colors to match your mock) */
.band-hero   { background: #f5f5f5; z-index: 3; }
.band-mid    { background: #ffffff; z-index: 2; padding-top: 4.5rem; }
.band-bottom { background: #ffffff; z-index: 1; padding-top: 4.5rem; }
.band-darkgray { background: #777777; } /* same dark gray as the homepage software band */

/* HERO image overflows DOWN into section 2 */
.hero-overflow {
  position: relative;
  z-index: 5;
  margin-bottom: -5.25rem; /* pull image down into band-mid */
}

/* your existing hero image styling stays; just ensure it stacks */
.hero-img { position: relative; z-index: 5; }

/* Circular image wrapper for Find/HAVE/SHOP/GET STARTED tiles */
.circle-img {
  width: 220px;          /* adjust to the size you like */
  height: 220px;
  border-radius: 50%;    /* makes the wrapper a circle */
  overflow: hidden;      /* hides image corners outside the circle */
   flex: 0 0 auto;
}

/* Ensure the image fills the circle nicely */
.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* zoom/crop to fill without distortion */
}


/* Section 3: make the PartnerWithUs circle overflow UP into band-mid */
.bottom-overflow-up{
  margin-top: -3.25rem;  /* pull upward into the middle band */
  z-index: 6;            /* ensure above the mid band */
}

/* Optional: small-screen tuning */
@media (max-width: 991.98px){
  .prosale-band{ padding: 2.25rem 0; }
  .band-hero{ padding-bottom: 3.25rem; }
  .band-mid, .band-bottom{ padding-top: 3.25rem; }

  /* stacked layout: don't let overflowing images overlap the text/section above */
  .hero-overflow{ margin-bottom: 1rem; }
  .bottom-overflow-up{ margin-top: 0; }

  .find-sale-img,
  .have-sale-img{
    width: 180px;
    height: 180px;
  }
}
/* Make sure the section ABOVE software does NOT sit on top */
.band-bottom{
  position: relative;
  z-index: 1; /* lower than software section */
}

/* Make software section a stacking context ABOVE the previous band */
.bg-software-full{
  position: relative;
  z-index: 5;       /* higher than band-bottom */
  overflow: visible;
}

/* Force the card above everything in the overlap area */
.software-image-card{
  position: relative;
  z-index: 50;      /* big number to win */
}

/* One Size Fits All band */
.band-onesize{
  background: #cfcfcf; /* close to screenshot; tweak as needed */
}

/* Navy-ish body text tone */
.text-prosale-navy-700{
  color: rgba(6, 36, 73, 0.85);
}

/* Circle icon */
.onesize-icon{
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 3px solid var(--prosale-navy);
  display: grid;
  place-items: center;
}

.onesize-icon-text{
  font-weight: 800;
  color: var(--prosale-navy);
  letter-spacing: .03em;
}

.onesize-icon-img{
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.onesize-icon svg{
  width: 42px;
  height: 42px;
  color: var(--prosale-navy);
}
/* Testimonials band like screenshot */
.band-testimonials{
  background: #efefef; /* light gray */
  padding: 4.5rem 0;   /* a bit taller than normal bands */
}

.testimonial-block{
  max-width: 520px;
  margin: 0 auto;
}

.testimonial-quote{
  color: rgba(6, 36, 73, 0.85);
  font-size: 1.05rem;
  line-height: 1.65;
}

.testimonial-name{
  font-weight: 800;
  color: rgba(0,0,0,0.8);
  font-size: 1.25rem;
}

/* News band (matches screenshot feel) */
.band-news{
  background: #f3f3f3;
  padding: 4.5rem 0;
}

/* Posts list rows */
.news-list{
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.news-row{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991.98px){
  .news-row{
    grid-template-columns: 1fr;
  }
}

/* Image card */
.news-thumb{
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.news-thumb-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Text styles */
.news-date{
  color: rgba(0,0,0,0.55);
  font-size: 0.95rem;
  margin-bottom: .35rem;
}

.news-title{
  margin: 0 0 .75rem 0;
  font-weight: 800;
  color: var(--prosale-navy);
  line-height: 1.15;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.news-title-link{
  color: inherit;
  text-decoration: none;
}
.news-title-link:hover{
  text-decoration: underline;
}

.news-excerpt{
  color: rgba(0,0,0,0.68);
  line-height: 1.55;
  max-width: 60ch;
}

.news-readmore{
  color: var(--prosale-accent);
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}
.news-readmore:hover{
  text-decoration: underline;
}

/* Sidebar */
.news-sidebar{
  padding-left: 1.75rem;
  border-left: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 991.98px){
  .news-sidebar{
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 1.5rem;
  }
}

.news-sidebar-title{
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(0,0,0,0.55);
  margin-bottom: 1rem;
}

/* Categories list */
.news-cats{
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.news-cat-link{
  color: rgba(0,0,0,0.72);
  text-decoration: none;
  font-size: 1.05rem;
}

.news-cat-link.active{
  font-weight: 900;
  color: var(--prosale-navy);
}

.news-cat-link:hover{
  color: var(--prosale-navy);
  text-decoration: underline;
}

/* Footer like screenshot */
.prosale-footer{
  background: var(--prosale-navy);
  color: rgba(255,255,255,0.92);
  padding: 4.5rem 0;
}

.footer-brand-text{
  color: #fff;
  font-weight: 900;
  letter-spacing: .01em;
  font-size: 1.6rem;
}

.footer-contact{
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.55;
}

.footer-title{
  color: rgba(255,255,255,0.95);
  font-weight: 900;
  letter-spacing: .06em;
  font-size: .95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.footer-link{
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

.footer-link:hover{
  color: #fff;
  text-decoration: underline;
}

/* Social buttons (simple placeholders) */
.footer-social{
  display: flex;
  gap: 1rem;
}

.social-btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.social-btn:hover{
  background: rgba(255,255,255,0.18);
}

.social-dot{
  font-weight: 900;
  font-size: 1.05rem;
}

/* xl only: let the image card "hang" off the panel; at lg keep it clear of the text */
@media (min-width: 1200px) {
  .software-image-card {
    margin-left: -3rem;
  }
}

/* Find a Sale hero band */
.findsale-hero-band {
  background: #f2f2f2;            /* light grey like the mock */
  padding: 3rem 0 5rem;           /* extra bottom padding for the card */
}

.findsale-hero-inner {
  position: relative;
}

.findsale-title {
  color: var(--prosale-navy);
  font-weight: 700;
}

.findsale-search-group {
  max-width: 520px;
}

.findsale-search .form-control {
  border-radius: 0.35rem 0 0 0.35rem;
}

.findsale-search .btn-prosale {
  border-radius: 0 0.35rem 0.35rem 0;
}

.findsale-map-card {
  background: #ffffff;
  border-radius: 1.25rem;
  height: 360px;           /* explicit height so Leaflet can paint tiles */
  overflow: hidden;
}

/* Sales Snapshot tiles */
/* Search results scrollable list */
.sale-results-scroll {
    max-height: 480px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background: #fff;
}
/* Leadership + Locations */
.leader-photo {
    position: relative;
    width: 100%;
    max-width: 240px;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #e8edf2 0%, #c9d3dd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.leader-photo svg {
    width: 42%;
    height: 42%;
    color: #9aa7b4;
}
.leader-photo--featured {
    max-width: 340px;
    aspect-ratio: 1 / 1;
    border-radius: 1.5rem;
}
.location-pin {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8edf2 0%, #c9d3dd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-pin svg {
    width: 34px;
    height: 34px;
    color: var(--prosale-navy, #0b2c4d);
}

/* All Estate Sales table */
.findsale-table thead th {
    background: var(--prosale-navy, #0b2c4d);
    color: #fff;
    font-weight: 600;
    border: 0;
    white-space: nowrap;
    padding: 0.85rem 1rem;
}
.findsale-table tbody td {
    border-color: #eef1f4;
    padding: 0.85rem 1rem;
}
.findsale-table-name:hover {
    text-decoration: underline !important;
}
.findsale-table-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}
.findsale-table-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.findsale-table-thumb-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa7b4;
    background: linear-gradient(135deg, #e8edf2 0%, #c9d3dd 100%);
}
.findsale-table-thumb-empty svg {
    width: 26px;
    height: 26px;
}
.findsale-table-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sale-result-item + .sale-result-item {
    border-top: 1px solid #f0f0f0;
}
.sale-result-logo {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}
.sale-result-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sale-result-logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8edf2 0%, #c9d3dd 100%);
}
.min-width-0 {
    min-width: 0;
}
.sale-result-items {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
    align-items: center;
}
.sale-result-items-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}
.sale-result-item-tag {
    display: inline-block;
    background: #eef2f7;
    color: #3a5a7a;
    border: 1px solid #c8d8e8;
    border-radius: 3px;
    font-size: 0.72rem;
    padding: 1px 6px;
    white-space: nowrap;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sale-result-item-tag--quickadd {
    background: #f3f0fa;
    color: #5a3a7a;
    border-color: #c8b8e8;
}

/* Inventory thumbnails shown under a nearby search result — single row, horizontal scroll */
.sale-result-thumbs {
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
}
.sale-result-thumb {
    height: 75px;
    width: auto;          /* thumbnails are 75px tall with variable width — preserve aspect, don't stretch */
    border-radius: 6px;
    border: 1px solid #e3e6ea;
    background: #f8f9fa;
    flex: 0 0 auto;
    display: block;
}
/* Non-image tiles (placeholder / "more") have no aspect — give them a fixed square box */
.sale-result-thumb--empty,
.sale-result-thumb--more {
    width: 75px;
    height: 75px;
}
.sale-result-thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    padding: 12px;
}
.sale-result-thumb--empty svg {
    width: 100%;
    height: 100%;
}
.sale-result-thumb--more {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    background: var(--prosale-navy);
    text-decoration: none;
}
.sale-result-thumb--more:hover {
    filter: brightness(1.15);
    color: #fff;
}

/* Item / quick-add badge sub-row in the All Estate Sales table */
.sale-items-row > td {
    border-top: 0;
    padding-top: 0;
}

/* FAQ accordion — keep the expanded state on-brand */
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--prosale-navy);
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--prosale-navy);
    background-color: #eef4fb;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.snapshot-tile {
  background: var(--prosale-light, #f8f9fa);
  border-radius: 0.5rem;
  padding: 1rem 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.snapshot-count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--prosale-navy, #1a2e4a);
  line-height: 1;
}

.snapshot-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6c757d;
  margin-top: 0.25rem;
}

.findsale-map-title {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.findsale-map-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555;
}

@media (min-width: 992px) {
  .findsale-hero-band {
    padding-top: 3.5rem;
    padding-bottom: 6rem;
  }

  .findsale-map-card {
    height: 100%;          /* match the search card height side-by-side */
    min-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .findsale-search-group {
    max-width: 100%;
  }
}

/* Featured Sales carousel band */
.findsale-featured-band {
  background: #ffffff;
}

.sale-card {
  border-radius: 1.5rem;
  border: none;
  background: #ffffff;
}

.sale-card-img-top {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

/* Company logo variant for featured sale cards */
.sale-card-logo-wrap {
  overflow: hidden;
  height: 200px;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sale-card-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sale-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.sale-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--prosale-navy);
  margin-bottom: 0.75rem;
}

.sale-card-meta {
  font-size: 0.95rem;
  color: #333;
}

.sale-card .btn-prosale {
  border-radius: 0.5rem;
}

@media (min-width: 1200px) {
  .sale-card-img-top {
    height: 230px;
  }
}

/* Compact product cards on the sale detail page (6-up on large screens) */
.product-card .sale-card-logo-wrap,
.product-card .sale-card-img-top {
  height: 140px;
}

.product-card .sale-card-body {
  padding: .75rem .85rem 1rem;
}

.product-card .sale-card-title {
  font-size: 1rem;
  margin-bottom: .4rem;
}

.product-card .sale-card-meta {
  font-size: .8rem;
}

.product-card .btn {
  font-size: .8rem;
  padding: .4rem .5rem;
}

/* "No image" placeholder for products without a photo */
.no-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: #f1f3f5;
  color: #9aa3ab;
}

.no-image-placeholder svg {
  width: 30px;
  height: 30px;
}

.no-image-placeholder span {
  font-size: .72rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* Sale public gallery (miscellaneous photos) */
.gallery-thumb {
  display: block;
  overflow: hidden;
  border-radius: .75rem;
  aspect-ratio: 1 / 1;
  background: #f1f3f5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

/* Find an Item band */
.finditem-band {
  background: #ffffff;
}

.finditem-title {
  color: var(--prosale-navy);
  font-weight: 700;
}

.finditem-row {
  max-width: 780px;
  margin-inline: auto;
}

.finditem-search .form-control-lg,
.finditem-search .form-select-lg {
  border-radius: 0.5rem;
}

.finditem-search .btn-prosale {
  border-radius: 0.5rem;
  padding-inline: 2.25rem;
}

@media (max-width: 575.98px) {
  .finditem-row {
    max-width: 100%;
  }
}

/* CTA band reused on Find a Sale page */
.band-cta-circles {
  background: #d9d9d9; /* light gray similar to reference */
}

/* =========================
   Additional homepage content sections
   ========================= */

/* Light blue info bands */
.band-lightblue { background: #e8f1fb; }

/* Square image card for content panels (no overlap bleed) */
.square-image-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}

.square-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Benefit bullet groups on the dark grey panel */
.benefit-group { margin-bottom: 1.5rem; }

.benefit-group h4 {
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.benefit-list {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.benefit-list li { margin-bottom: .5rem; }

/* Pricing tier cards */
.pricing-amount {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 600;
  color: #6c757d;
  margin-left: .15rem;
}

/* Blog articles */
.blog-article {
  max-width: 820px;
}

.blog-meta {
  color: #6c757d;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.blog-lead {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.6;
}

.blog-article h2 {
  color: var(--prosale-navy);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: .02em;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
}

.blog-article p {
  color: #333;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.blog-list,
.blog-subitems {
  color: #333;
  line-height: 1.75;
}

.blog-list > li {
  margin-bottom: 1.25rem;
}

.blog-subitems {
  list-style: lower-alpha;
  margin-top: .75rem;
}

.blog-subitems > li {
  margin-bottom: .75rem;
}

.blog-article a {
  color: var(--prosale-accent);
}
