.post .post-accent-cards {
  margin: 20px 0;
}
.post .post-accent-cards__grid {
  display: grid;
  gap: 20px;
}
.post .post-accent-cards__grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.post .post-accent-cards__grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
.post .post-accent-cards__card {
  border-radius: 12px;
  padding: 46px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.post .post-accent-cards__card--red {
  background-image: url(/wp-content/uploads/2026/07/Group-1000007148-2.svg), linear-gradient(180deg, #F0334A 0%, #D41028 138.7%);
  background-position: bottom center, center;
  background-size: contain, cover;
  background-repeat: no-repeat, no-repeat;
}
.post .post-accent-cards__card--dark {
  background-image: url(/wp-content/uploads/2026/07/Group-1000007148-1.svg), linear-gradient(0deg, #1C1C1C 0%, #474747 100%);
  background-position: bottom center, center;
  background-size: contain, cover;
  background-repeat: no-repeat, no-repeat;
}
.post .post-accent-cards__title {
  margin: 0 0 18px 0;
  padding: 0;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
}
.post .post-accent-cards__description {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

@media screen and (max-width: 991px) {
  .post-accent-cards__grid--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .post-accent-cards__grid--2-cols, .post-accent-cards__grid--3-cols {
    grid-template-columns: 1fr;
  }
  .post-accent-cards__card {
    padding: 30px 20px;
    border-radius: 12px;
  }
  .post-accent-cards__title {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 28px;
  }
}
