/* =====================================================================
   PODPAWS — Homepage SEO long-tail content typography & layout refresh
   Targets the flat .pp-seo-lt structure injected by functions.php.
   Loaded after 32-pp-seo-lt.css; overrides container/base rules.
   ===================================================================== */

.pp-seo-lt {
  position: relative;
  max-width: 1120px !important;
  margin: 48px auto 80px !important;
  padding: 64px 64px 56px !important;
  background: linear-gradient(180deg, var(--ivory-2) 0%, var(--cream) 100%) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-sm);
  color: var(--charcoal);
}

/* Decorative top accent */
.pp-seo-lt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--clay), var(--gold));
  border-radius: 0 0 4px 4px;
}

/* -------------------------------------------------------------------
   Main heading
   ------------------------------------------------------------------- */
.pp-seo-lt.pp-seo-lt > h2 {
  font-family: var(--serif);
  font-size: 38px !important;
  font-weight: 700;
  line-height: 1.15 !important;
  color: var(--charcoal);
  text-align: center;
  margin: 0 0 18px;
}

/* Divider line between H2 sections */
.pp-seo-lt.pp-seo-lt > h2:not(:first-of-type) {
  margin-top: 52px;
  padding-top: 42px;
  border-top: 1px solid rgba(43, 36, 32, 0.08);
}

/* -------------------------------------------------------------------
   Intro paragraph (first P after first H2)
   ------------------------------------------------------------------- */
.pp-seo-lt > p:first-of-type {
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto 44px;
}

/* -------------------------------------------------------------------
   Body paragraphs
   ------------------------------------------------------------------- */
.pp-seo-lt > p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin: 0 0 18px;
}

.pp-seo-lt > p:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------------------------------
   Sub-headings (H3) styled as soft cards
   ------------------------------------------------------------------- */
.pp-seo-lt.pp-seo-lt > h3 {
  font-family: var(--sans);
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.35 !important;
  color: var(--clay-dark) !important;
  margin: 34px 0 12px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(194, 91, 91, 0.18);
}

/* -------------------------------------------------------------------
   Links: higher contrast, calmer underline
   ------------------------------------------------------------------- */
.pp-seo-lt a {
  color: var(--clay-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(168, 68, 75, 0.35);
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}

.pp-seo-lt a:hover {
  color: var(--charcoal);
  text-decoration-color: var(--clay-dark);
}

/* -------------------------------------------------------------------
   Bold inside text
   ------------------------------------------------------------------- */
.pp-seo-lt strong {
  color: var(--charcoal);
  font-weight: 700;
}

/* -------------------------------------------------------------------
   Gift-ideas list: two columns with clay checkmarks
   ------------------------------------------------------------------- */
.pp-seo-lt > ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 36px;
}

.pp-seo-lt > ul li {
  position: relative;
  padding-left: 32px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--charcoal);
}

.pp-seo-lt > ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--clay-soft);
  border-radius: 50%;
}

.pp-seo-lt > ul li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(45deg);
}

/* -------------------------------------------------------------------
   Tablet
   ------------------------------------------------------------------- */
@media (max-width: 991px) {
  .pp-seo-lt {
    padding: 52px 40px 48px !important;
    margin-top: 40px !important;
    margin-bottom: 64px !important;
  }

  .pp-seo-lt.pp-seo-lt > h2 {
    font-size: 34px !important;
  }

  .pp-seo-lt.pp-seo-lt > h2:not(:first-of-type) {
    margin-top: 44px;
    padding-top: 36px;
  }

  .pp-seo-lt > p:first-of-type {
    font-size: 17px;
    margin-bottom: 36px;
  }

  .pp-seo-lt > p {
    font-size: 16px;
  }

  .pp-seo-lt.pp-seo-lt > h3 {
    font-size: 19px !important;
  }
}

/* -------------------------------------------------------------------
   Mobile
   ------------------------------------------------------------------- */
@media (max-width: 768px) {
  .pp-seo-lt {
    padding: 40px 22px 36px !important;
    margin-top: 28px !important;
    margin-bottom: 52px !important;
    border-radius: var(--radius) !important;
  }

  .pp-seo-lt::before {
    width: 60px;
    height: 3px;
  }

  .pp-seo-lt.pp-seo-lt > h2 {
    font-size: 28px !important;
    margin-bottom: 14px;
  }

  .pp-seo-lt.pp-seo-lt > h2:not(:first-of-type) {
    margin-top: 36px;
    padding-top: 28px;
  }

  .pp-seo-lt > p:first-of-type {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .pp-seo-lt > p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .pp-seo-lt.pp-seo-lt > h3 {
    font-size: 18px !important;
    margin-top: 26px;
    margin-bottom: 10px;
  }

  .pp-seo-lt > ul {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 14px 0 24px;
  }

  .pp-seo-lt > ul li {
    font-size: 15px;
    padding-left: 28px;
  }

  .pp-seo-lt > ul li::before {
    width: 18px;
    height: 18px;
    top: 3px;
  }

  .pp-seo-lt > ul li::after {
    left: 5px;
    top: 6px;
    width: 4px;
    height: 8px;
  }
}
