.v-list-paragraph {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
  padding: 25px 20px;
  border-radius: 30px;
  background: linear-gradient(45deg, #f04800, #a72d00);
}

@media screen and (max-width: 550px) {
  .v-list-paragraph {
    border-radius: 0;
  }
}
.v-list-paragraph--header-title {
  text-align: center;
  font-size: 2rem;
  color: white;
  font-weight: 600;
}

.v-list-paragraph--body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media screen and (max-width: 550px) {
  .v-list-paragraph--body {
    grid-template-columns: repeat(1, 1fr);
  }
}
.v-list-paragraph--body .point {
  display: flex;
  flex-direction: column;
}

.v-list-paragraph--body .point-title {
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  margin: 0;
}

.v-list-paragraph--body .point-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: yellow;
  border-radius: 50%;
}

.v-list-paragraph--body .point-description {
  color: white;
  padding-left: 28px;
}

.v-list-paragraph--body .point-description p {
  margin: 0;
  font-size: 0.9rem;
}



/*# sourceMappingURL=paragraph-list.css.map */
