/* hero.css */
/* HERO SECTIONS */

.hero {
    text-align: center;
    padding: 30px 20px;
}

 /* Hide inner hero text EXCEPT on Medicare */
body:not(.medicare-page) .inner-hero h1,
body:not(.medicare-page) .inner-hero h2,
body:not(.medicare-page) .inner-hero p {
  display: none !important;
}

 /* HIDE HERO TEXT ON INNER PAGES (NOT HOME) */

.inner-hero h1,
.inner-hero h2,
.inner-hero p {
    display: none !important;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: bold;
    color: #FDB500;
}

.hero h2 {
    font-size: 1.4rem;
    margin-top: 10px;
}

.hero p {
    margin-top: 10px;
    font-size: 1.1rem;
}

/* REMOVE ALL INNER PAGE TITLES COMPLETELY */
.inner-hero h1,
.inner-hero h2,
.inner-hero p,
.page-title,
.page-header,
.page-label {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.site-header {
    margin-bottom: 0;
    padding: 15px 0 0 0;
}
.site-header img {
    display: block;
    margin: 0 auto;
    max-width: 520px; /* logo size */
    height: auto;
}


.hero {
  margin-top: 0;
  padding-top: 10px;
}

/* HERO CTA BUTTON FIX */
.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.hero-cta-group .big-button {
  height: auto;
  min-height: unset;
  padding: 14px 28px;
  font-size: 16px;
  line-height: normal;
  white-space: nowrap;
}
/* FORCE CONTENT TO START BELOW HEADER + HERO */
.button-grid {
  margin-top: 60px !important;
  position: relative;
  z-index: 10;
}
