.card-article {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #403A2F;
}
.card-article__head {
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 10px 10px 15px;
  border-radius: 10px 10px 15px 15px;
  background-color: #FFFFFF;
}
.card-article__head::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 10px;
  transform: translateY(50%);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.98227' cy='4.98227' r='4.98227' fill='%23E9EADF'/%3E%3C/svg%3E%0A");
  background-repeat: space;
}
.card-article__preview {
  aspect-ratio: 1.6086956522;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #E9EADF;
}
.card-article__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 30px 20px;
  border-radius: 15px 15px 10px 10px;
  background-color: #FFFFFF;
}
.card-article__description {
  text-align: center;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 1439.98px) {
  .card-article__description {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 767.98px) {
  .card-article__description {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
  }
}
.page-list {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767.98px) {
  .page-list {
    padding-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .page-list {
    padding-bottom: 40px;
  }
}
.page-list__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px;
}
@media (max-width: 1439.98px) {
  .page-list__list {
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
.page-list__footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .page-list__footer {
    margin-top: 30px;
  }
}
