/* =====================================================================
   PODPAWS — Homepage SEO long-tail content block (redesigned 2026-08-01)
   Editorial card layout: head / 2x2 category grid / body list
   Loaded after the base partials via assets/css/partials/.
   ===================================================================== */

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

.pp-seo-lt__head {
  text-align: center;
  margin-bottom: 40px;
}

.pp-seo-lt__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--clay);
  margin-bottom: 12px;
}

.pp-seo-lt__head h2 {
  font-size: 32px !important;
  margin-bottom: 16px;
}

.pp-seo-lt__head p {
  font-size: 17px;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}

.pp-seo-lt__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
  margin-bottom: 48px;
}

.pp-seo-lt__card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.pp-seo-lt__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.pp-seo-lt__card h3 {
  font-size: 20px !important;
  color: var(--clay-dark) !important;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pp-seo-lt__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.pp-seo-lt__body h2 {
  font-size: 26px !important;
  margin-top: 40px;
  margin-bottom: 14px;
}

.pp-seo-lt__body h2:first-child {
  margin-top: 0;
}

.pp-seo-lt__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
}

.pp-seo-lt__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pp-seo-lt__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.pp-seo-lt__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--clay-soft);
  border-radius: 50%;
}

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

.pp-seo-lt a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(194, 91, 91, .35);
  transition: color .25s var(--ease), text-decoration-color .25s var(--ease);
}

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

@media (max-width: 768px) {
  .pp-seo-lt {
    padding: 36px 22px 32px;
    margin: 16px auto 48px;
    border-radius: var(--radius);
  }

  .pp-seo-lt__head h2 {
    font-size: 26px !important;
  }

  .pp-seo-lt__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  .pp-seo-lt__card {
    padding: 22px;
  }

  .pp-seo-lt__body h2 {
    font-size: 22px !important;
  }

  .pp-seo-lt__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
