.page-content {
  width: auto;
  padding-top: 92px;
  padding-bottom: 92px;
}

.caption {
  margin-top: 12px;
  font-size: 18px;
  text-align: center;
}

.section {
  margin-top: 64px;
}

.list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.list-item {
  display: block;
  max-width: 540px;
  font-family: Lato, sans-serif;
}

.list-image {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 40px;
}

.list-link {
  display: flex;
  gap: 24px;
  padding: 20px;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  background-color: #f8f8f8;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s;
}

.list-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.list-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.list-title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
}

.list-description {
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 650px) {
  .page-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .caption {
    font-size: 16px;
    text-align: left;
  }

  .section {
    margin-top: 48px;
  }

  .list-link {
    flex-direction: column;
    align-items: center;
  }

  .list-content {
    align-items: center;
    text-align: center;
  }
}
