/* Content-driven homepage height; reserve room for desktop card overlap. */
.hero-section.landing-page.compact-home-hero {
  box-sizing: border-box;
  height: auto;
  min-height: 0;
  padding: 132px 24px 126px;
  overflow: visible;
}
.compact-home-hero .home-hero-content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.compact-home-hero h1 {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.2;
  margin: 0 auto 20px;
  overflow-wrap: anywhere;
}
.compact-home-hero .home-hero-intro {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.55;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.home-hero-button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 7px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}
.home-hero-catalog { background: #63ab45; }
.home-hero-youtube { background: #fff; color: #a00f19; }
.home-hero-button svg { flex: 0 0 20px; }
.home-hero-button:hover { text-decoration: underline; }
.home-hero-button:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
@media screen and (max-width: 991px) {
  .hero-section.landing-page.compact-home-hero { padding: 106px 24px 40px; }
  .compact-home-hero + .products-section > .feature-section {
    margin-top: 0;
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .hero-section.landing-page.compact-home-hero { padding: 100px 20px 32px; }
  .compact-home-hero h1 { font-size: 30px; margin-bottom: 16px; }
  .compact-home-hero .home-hero-intro { font-size: 16px; margin-bottom: 20px; }
  .home-hero-actions { flex-direction: column; align-items: stretch; }
  .home-hero-button { width: 100%; font-size: 16px; }
}
