section.block.block-blog .container .label-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
section.block.block-blog .container .posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 950px) {
  section.block.block-blog .container .posts {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.block.block-blog .container .posts .post {
  background-color: var(--primary);
  color: white;
}
section.block.block-blog .container .posts .post a {
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 11px;
  display: flex;
  align-items: center;
}
section.block.block-blog .container .posts .post a:after {
  content: "";
  width: 6px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%222%22%20height%3D%224%22%20viewBox%3D%220%200%202%204%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20id%3D%22arrow_right%22%20d%3D%22M0%204V0L2%202L0%204Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
  margin-left: 5px;
}
section.block.block-blog .container .posts .post:nth-child(even) {
  background-color: var(--secondary);
  color: var(--primary);
}
section.block.block-blog .container .posts .post:nth-child(even) a {
  color: var(--primary);
}
section.block.block-blog .container .posts .post:nth-child(even) a:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMiIgaGVpZ2h0PSI0IiB2aWV3Qm94PSIwIDAgMiA0IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBpZD0iYXJyb3dfcmlnaHQiIGQ9Ik0wIDRWMEwyIDJMMCA0WiIgZmlsbD0iIzAwNjU3RSIvPgo8L3N2Zz4K");
}
section.block.block-blog .container .posts .post .image {
  width: 100%;
  height: 190px;
}
section.block.block-blog .container .posts .post .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.block.block-blog .container .posts .post .content {
  padding: 20px;
  min-height: 150px;
  position: relative;
}
section.block.block-blog .container .posts .post .content h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0px;
  line-height: 120%;
}
section.block.block-blog .container .posts .post .content .link {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0px;
  padding: 20px;
}
section.block.block-blog .container .cta-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
section.block.block-blog .container .cta-container a {
  margin: 0px;
}