/* Home bottom block — aligns with .container sections above (lead form, reviews) */

main section.home-bottom-content.section {
  padding: 0 0 64px;
  background: transparent;
}

main section.home-bottom-content .home-bottom-content__container,
main section.home-bottom-content .container {
  width: min(1160px, 92%);
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

main section.home-bottom-content .home-bottom-content__box {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 32px 36px 28px;
  background: #ffffff;
  border: 1px solid var(--border, #e7e5e4);
  border-radius: var(--radius, 16px);
  box-shadow: var(--card-shadow, 0 4px 24px rgba(28, 25, 23, 0.06));
}

main section.home-bottom-content .home-bottom-content__preview,
main section.home-bottom-content .home-bottom-content__more {
  max-width: 100%;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text, #1c1917);
}

main section.home-bottom-content .home-bottom-content__preview p,
main section.home-bottom-content .home-bottom-content__more p {
  margin: 0 0 1rem;
}

main section.home-bottom-content .home-bottom-content__preview p:last-child,
main section.home-bottom-content .home-bottom-content__more > :last-child {
  margin-bottom: 0;
}

main section.home-bottom-content .home-bottom-content__more {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border, #e7e5e4);
}

main section.home-bottom-content .home-bottom-content__more[hidden] {
  display: none;
}

main section.home-bottom-content .home-bottom-content__more h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display, Georgia, serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text, #1c1917);
}

main section.home-bottom-content .home-bottom-content__more ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

main section.home-bottom-content .home-bottom-content__more li {
  margin-bottom: 0.45rem;
}

main section.home-bottom-content .home-bottom-content__more li::marker {
  color: var(--brand, #e85d04);
}

main section.home-bottom-content .home-bottom-content__preview a,
main section.home-bottom-content .home-bottom-content__more a {
  color: var(--teal-dark, #0f766e);
  font-weight: 600;
}

main section.home-bottom-content .home-bottom-content__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
}

main section.home-bottom-content .home-bottom-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 148px;
  min-height: 44px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-dark, #c2410c) 0%, var(--brand, #e85d04) 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

main section.home-bottom-content .home-bottom-read-more__icon {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

main section.home-bottom-content .home-bottom-read-more:hover,
main section.home-bottom-content .home-bottom-read-more:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 6px 18px rgba(232, 93, 4, 0.45);
  transform: translateY(-1px);
  outline: none;
}

main section.home-bottom-content .home-bottom-read-more[aria-expanded="true"] {
  color: var(--text, #1c1917);
  background: #fafaf9;
  border: 1px solid var(--border, #e7e5e4);
  box-shadow: none;
}

main section.home-bottom-content .home-bottom-read-more[aria-expanded="true"]:hover {
  color: var(--brand-dark, #c2410c);
  background: #fff7ed;
  border-color: #fed7aa;
  transform: none;
}

main section.home-bottom-content .home-bottom-read-more[aria-expanded="true"] .home-bottom-read-more__icon {
  transform: rotate(-135deg) translateY(1px);
}

@media (min-width: 721px) {
  main section.home-bottom-content .home-bottom-content__preview,
  main section.home-bottom-content .home-bottom-content__more {
    text-align: justify;
    text-justify: inter-word;
  }
}

@media (max-width: 720px) {
  main section.home-bottom-content.section {
    padding-bottom: 48px;
  }

  main section.home-bottom-content .home-bottom-content__container,
  main section.home-bottom-content .container {
    width: 100%;
    max-width: 100%;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  main section.home-bottom-content .home-bottom-content__box {
    padding: 22px 18px 20px;
    border-radius: var(--radius-sm, 12px);
  }

  main section.home-bottom-content .home-bottom-content__preview,
  main section.home-bottom-content .home-bottom-content__more {
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
  }
}
