.title {
  color: var(--g-color--blue);
  display: block;
  margin: 0 auto;
  width: 100%;
  @media (min-width: 768px) {
    width: 715px;
  }
}
.my-section-5__text {
  display: block;
  margin: 0 auto;
  width: 100%;
  @media (min-width: 768px) {
    width: 715px;
  }
}

.article {
  display: grid;
  gap: 2rem;
  @media (min-width: 768px) {
    grid-template-columns: 42rem 1fr;
  }
}
.article__thumb {
  img {
    width: 100%;
  }
}
.article__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.article-2__title {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--g-color--blue);
}
.article-2__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.article-2__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article-3 {
  display: grid;
  gap: 2rem;
  @media (min-width: 768px) {
    grid-template-columns: 1fr 42rem;
  }
}
.article-3__thumb {
  img {
    width: 100%;
  }
}
.article-3__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  &::before,
  &::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--g-color--blue);
  }
}

.cards {
  display: grid;
  gap: 2rem;
  @media (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1.5rem;
  padding: 2rem;
  background-color: var(--g-color--blue--pro);
  color: var(--g-color--white);
}
.card__title {
  border-bottom: 1px solid var(--g-color--white);
  padding-bottom: 1rem;
  text-align: center;
}
.card__content {
}
