.post-listing .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}
.post-listing .grid[data-desktop="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .post-listing .grid[data-desktop="2"] {
    grid-template-columns: 1fr;
  }
}
.post-listing .grid[data-desktop="1"] {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .post-listing .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .post-listing .grid {
    grid-template-columns: 1fr;
  }
}
.post-listing .grid .item {
  position: relative;
}
.post-listing .grid .item .cover-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.post-listing .grid .item .button {
  z-index: 2;
}
.post-listing .grid.grid-style-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-listing .grid.grid-style-accordion .item {
  position: relative;
  background-color: #eee;
  padding: 15px;
}
.post-listing .grid.grid-style-accordion .item .toggle {
  position: absolute;
  right: 0;
  top: 0;
}
.post-listing .grid.grid-style-accordion .item .zone.zone-2 {
  border-top: 1px solid black;
}
.post-listing .grid.grid-style-accordion .item:not(.active) .zone.zone-2 {
  display: none;
}
.post-listing .grid.grid-style-list .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.post-listing .item.has-cover-link {
  position: relative;
}
.post-listing .item.has-cover-link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.post-listing .zone {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-listing .zone h3 {
  color: #FFF;
  text-align: center;
  font-family: Impact;
  font-size: 47px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: -38px;
}
.post-listing .zone .field-job_name {
  display: inline-flex;
  transform: rotate(3deg);
  padding: 5px 30px 5px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #F57720;
}
.post-listing .zone .field-description {
  color: #FFF;
  text-align: center;
  font-family: "Trade Gothic LT Std";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-top: 43px;
}
.post-listing.post-type_team .grid {
  gap: 96px;
}
.post-listing.post-type_team .zone-1 {
  position: relative;
  z-index: 10;
}
.post-listing.post-type_team .zone-1 img {
  width: 100%;
  height: auto;
}
.post-listing.post-type_team .zone-2 {
  position: relative;
  z-index: 20;
}
.post-listing.post-type_team .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
.post-listing.post-type_team .video video {
  width: 100%;
  height: auto;
}
.post-listing.post-type_team .item:has(.video)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
  z-index: 15;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  transform: rotate(-10deg);
}
.post-listing.post-type_team .item.video-active::after {
  opacity: 0;
}
.post-listing.post-type_team .item .featured-image {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}
.post-listing.post-type_team .item.video-active .featured-image {
  opacity: 0;
}

/*# sourceMappingURL=post-listing.css.map */
