.age-reassurance-block {
  --arb-bg: #42595d;
  --arb-text: #d7e4e2;
  --arb-accent: #d9df8e;
  --arb-btn-bg: #b0cfc7;
  --arb-btn-text: #42595d;
  --arb-btn-border: #7ea0a2;
  border-radius: 28px;
  background: var(--arb-bg);
  padding: 3.2rem 2.4rem 2.2rem;
  margin: 3rem auto;
  max-width: 1100px;

  @media screen and (max-width: 1459px) {
    margin: 3rem;
  }
}

.arb-intro {
  text-align: center;
  margin: 0 auto 1.8rem;
  max-width: 760px;
}

.arb-intro__title {
  margin: 0 0 0.7rem;
  color: var(--arb-accent);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
}

.arb-intro__text {
  margin: 0;
  color: var(--arb-text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.arb-items--desktop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.2rem;
}

.arb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 150px;
  justify-content: center;
  gap: 1rem;
}

.arb-item__icon-wrap {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arb-item__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.arb-item__title {
  margin: 0;
  color: var(--arb-text);
  font-size: 15px;
  line-height: 1.22;
  font-weight: 500;
  padding: 0 2rem;
}

.arb-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.9rem;
}

.arb-button {
  min-width: 290px;
  min-height: 62px;
  border-radius: 16px;
  padding: 0.75rem 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.arb-button--primary {
  background: var(--arb-btn-bg);
  color: var(--arb-btn-text);
}

.arb-button--primary:hover {
  background: var(--arb-btn-text);
  color: var(--arb-btn-bg);
  border: solid 2px var(--arb-btn-bg);
}

.arb-button--secondary {
  background: var(--arb-btn-text);;
  border: 2px solid var(--arb-btn-bg);
  color: #9eb8b5;
}

.arb-button--secondary:hover {
  background: var(--arb-btn-bg);;
  border: 2px solid var(--arb-btn-bg);
  color: var(--arb-btn-text);;
}

.arb-mobile-slider {
  display: none;
}

@media (max-width: 991px) {
  .age-reassurance-block {
    padding: 1.6rem 1.2rem 1.4rem;
    border-radius: 14px;
    margin: 1.2rem 3.2rem;
    overflow: hidden;
  }

  .arb-intro {
    margin: 0 auto 1.2rem;
  }

  .arb-intro__title {
    font-size: 26px;
    line-height: 1.2;
  }

  .arb-intro__text {
    font-size: 14px;
    line-height: 1.45;
  }

  .arb-items--desktop {
    display: none;
  }

  .arb-mobile-slider {
    display: block;
    position: relative;
  }

  .arb-mobile-slider__track {
    display: flex;
    transition: transform 0.28s ease;
    will-change: transform;
  }

  .arb-mobile-slide {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .arb-item {
    min-height: 150px;
  }

  .arb-item__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  .arb-item__icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 0.7rem;
  }

  .arb-item__title {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .arb-buttons {
    margin-top: 0.85rem;
    gap: 0.75rem;
  }

  .arb-button {
    width: min(100%, 320px);
    min-width: 0;
    min-height: 52px;
    font-size: 14px;
    border-radius: 14px;
  }

  .arb-mobile-slider__dots {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
  }

  .arb-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: rgba(176, 207, 199, 0.35);
    padding: 0;
    cursor: pointer;
  }

  .arb-dot.is-active {
    background: #b0cfc7;
  }
}
