/* Scoped refinement of the legacy advantages section, using the approved design. */
.home-redesign .advantages-section .advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 0;
  margin-top: 2rem;
}
.home-redesign .advantages-section .card-hover,
.home-redesign .advantages-section .card-hover:hover {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.125rem;
  width: auto;
  max-width: none;
  min-height: 0;
  height: auto;
  padding: 1.5rem 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #ccd9d4;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transform: none;
  translate: none;
  transition: none;
  grid-column: auto;
  grid-row: auto;
  justify-self: stretch;
}
.home-redesign .advantages-section .card-hover > div {
  display: flex;
  flex: 0 0 1.75rem;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin: .125rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #345d5e;
  box-shadow: none;
}
.home-redesign .advantages-section .card-hover svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
}
.home-redesign .advantages-section .card-hover > p {
  min-width: 0;
  margin: 0;
  padding: 0;
  color: #294852;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
  overflow-wrap: break-word;
}
@media (max-width: 740px) {
  .home-redesign .advantages-section .advantages-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 1.5rem;
  }
  .home-redesign .advantages-section .card-hover,
  .home-redesign .advantages-section .card-hover:hover {
    padding-block: 1.125rem;
    gap: 1rem;
  }
}
