.home-container {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.home-separator {
  height: 80px;
  background: linear-gradient(90deg, var(--primary-start), var(--primary-end));
}

.home-types--container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.home-types-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.home-types {
  flex-basis: 50%;
  text-align: center;
  cursor: pointer;
}

.home-types a {
  text-decoration: none;
  color: black;
}

.home-types--container-img {
  height: 115px;
  display: flex;
}

.container--cards {
  padding-top: 20px;
}

.home-types img {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  margin: auto;
  max-height: 115px;
}

.home-separator > .container {
  padding-top: 0px;
  padding-bottom: 0px;
}

.home-separator > .container > h2 {
  color: white;
  line-height: 80px;
}

.home-types:hover img {
  -webkit-filter: drop-shadow(0 10px 10px #324962d1);
  filter: drop-shadow(0 10px 10px #324962d1);

  -webkit-animation-name: TRANSITION-IN;
  -webkit-animation-duration: 0.2s;
  -webkit-animation-timing-function: ease-out;
  /*-webkit-animation-fill-mode: forwards;*/
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

/* HERO */
.home-container {
  border-radius: 12px;
  padding: 3.25rem 1.25rem;
  margin-top: 0.75rem;
  text-align: center;
}
.home-container h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--dark);
}
.home-hero-lead {
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Types */
.home-types a {
  background: var(--card-bg);
  text-align: center;
  margin: 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
/* .home-types img { width: 72px; height: 72px; object-fit: contain; } */
.home-types:hover a {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(23, 43, 77, 0.08);
}

@media (max-width: 600px) {
  .home-hero-lead {
    font-size: 0.95rem;
  }
}

/* CTA under hero */
.hero-cta {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
