/**
 * Push Item
 */

.push-item {
  display: block;
  position: relative;
  transition: 0.2s;
  width: fit-content;
  max-width: none;
  margin: 0 auto 0.75rem;
}
.push-item:hover {
  color: var(--brand-secondary-color);
}
.push-item--immersive .push-item__content{
  font-size: var(--paragraph-size-large);
  line-height: 1.2;
}

/** Push Item immersive **/

.push-item--immersive .push-item__content{
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(100% - 66px);
  bottom: 0;
  left: 0;
  right: 0;
  font-size: var(--paragraph-size-large);
  text-align: center;
  padding: 1rem 2rem;
  background-color: var(--brand-secondary-light-color);
  line-height: 1.2;
}
.push-item--immersive:hover .push-item__content {
  top: 0;
  background: rgba(245, 247, 250, 0.8);
}
@media all and (min-width: 900px) {
  .push-item--immersive .push-item__content{
    top: calc(100% - 77px);
  }
  .layout__region--first .push-item--immersive {
    transform: translateY(10px);
  }
  .layout__region--second .push-item--immersive {
    transform: translateY(-10px);
  }
}

/** Push Item Poster **/


.push-item--poster .push-item__image {
  width: fit-content;
  position: relative;
}
.push-item--poster .push-item__image::after {
  content: '';
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 242, 241, 0.6);
  background-image: url('../../images/cross-add.svg');
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.2s;
}
.push-item--poster:hover .push-item__image::after {
  top: 0;
}
.push-item--poster .push-item__content{
  position: absolute;
  transition: 0.2s;
  bottom: -15%;
  left: -18px;
  text-align: center;
  padding: 1rem 2rem;
  background-color: var(--brand-primary-medium-color);
  line-height: 1.2;
}
.push-item--poster .push-item__content::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -9px;
  width: 18px;
  height: 9px;
  background-image: url("../../images/corner.svg");
  background-position: center;
  background-repeat: no-repeat;
}