.section-hero .central-container {
  width: 1118px;
}

.section-hero .breadcrumb {
  margin-bottom: 46px;
}

.section-hero h1 {
  color: var(--blue-900);
  margin-bottom: 24px;
}

.section-hero p {
  font: var(--font-lg);
  color: var(--color-gray-800);
}

@media all and (max-width: 810px) {
  .section-hero p {
    font: var(--font-md);
  }
  .section-hero .breadcrumb {
    margin-bottom: 24px;
  }
}

.section-medications .central-container {
  display: flex;
  flex-direction: column;
  gap: 82px;
  width: 1118px;
}

.section-medications .wrapper {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.section-medications .letters {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 16px;
}

.section-medications .letters li a {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  font: var(--font-heading-5);
  color: var(--color-gray-800);
  background: var(--color-gray-100);
  border-radius: 100%;
  text-decoration: none;
}

.section-medications .letters li a:hover {
  color: var(--color-white);
  background: var(--color-gray-800);
}

.section-medications .medication {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.section-medications .medication a {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 24px;
  padding: 8px 8px 8px 32px;
  background: var(--color-gray-50);
  color: var(--color-blue-900);
  text-decoration: none;
}

.section-medications .medication a:hover {
  background: var(--color-gray-200);
}

.section-medications .medication div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.section-medications .medication span {
  color: var(--color-gray-800);
  font: var(--font-caption);
  text-transform: uppercase;
}

.section-medications .medication h6 {
  font-weight: 500;
}

.section-medications .medication i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 106px;
  height: 106px;
  border-radius: 20px;
  background: var(--color-gray-200);
  order: 2;
}

.section-medications .medication a:hover i {
  background: var(--color-gray-300);
}

.section-medications .medication i img {
  width: 48px;
  height: 48px;
}

@media all and (max-width: 1200px) {
  .section-medications .letters {
    gap: 10px;
  }

  .section-medications .letters li a {
    width: 38px;
    height: 38px;
    font: var(--font-md);
  }

  .section-medications .medication {
    grid-template-columns: 1fr 1fr;
  }

  .section-medications .medication div {
    gap: 2px;
  }

  .section-medications .medication h6 {
    font-size: 16px;
  }

  .section-medications .medication i {
    width: 64px;
    height: 64px;
  }

  .section-medications .medication i img {
    width: 24px;
    height: 24px;
  }
}

@media all and (max-width: 810px) {
  .section-medications .wrapper {
    gap: 32px;
  }

  .section-medications .medication {
    grid-template-columns: 1fr;
  }
}
