.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 2px solid #f5f5f5;
  color: #000
}
.card__head {
  margin-bottom: 20px;
  position: relative
}
.card__status {
  width: 100%;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff
}
.card__status::before {
  content: '';
  width: 161px;
  height: 68px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  background: radial-gradient(65.44% 65.44% at 50% 50%,#253510 0,rgba(153,153,153,0) 100%);
  filter: blur(20px);
  z-index: -1
}
.card__status--white span:first-child {
  background-color: rgba(255,255,255,.8)!important;
  color: #5b9118
}
.card__status span:first-child {
  padding: 0 15px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #e31e24;
  margin-bottom: 10px
}
.card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100px;
  color: #5b9118;
  font-weight: 700;
  font-size: 14px;
  text-transform: lowercase
}
.card__img {
  width: 100%;
  height: 201px
}
.card__img img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.card__content {
  display: flex;
  flex-direction: column;
  flex: auto
}
.card__title {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.96px;
  line-height: 100%;
  margin-bottom: 20px
}
.card__date {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 5px;
  font-size: 15px;
  line-height: 15px
}
.card__date svg {
  width: 24px;
  min-width: 24px;
  height: 24px
}
.card__link {
  width: 100%;
  margin-top: auto;
  padding: 15px;
  font-size: 15px
}
.card_new {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 2px solid #f5f5f5;
  color: #000
}
.card_new__head {
  margin-bottom: 20px;
  position: relative
}
.card_new__status {
  width: 100%;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff
}
.card_new__status span:first-child {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-top: 15px
}
.card_new__status-title {
  font-size: 14px;
  text-transform: none;
  font-weight: 400
}
.card_new__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0 10px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100px;
  color: #5b9118;
  font-weight: 700;
  font-size: 14px;
  text-transform: lowercase
}
.card_new__img {
  width: 100%;
  height: 201px;
  display: flex;
  justify-content: center;
  align-items: center
}
.card_new__img img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover
}
.card_new__content {
  display: flex;
  flex-direction: column;
  flex: auto
}
.card_new__title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.96px;
  line-height: 100%;
  margin-bottom: 20px
}
.card_new__date {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 5px;
  font-size: 15px;
  line-height: 15px
}
.card_new__date svg {
  width: 24px;
  min-width: 24px;
  height: 24px
}
.card_new__link {
  width: 100%;
  margin-top: auto;
  padding: 15px;
  font-size: 15px;
  background-color: #e31e24;
  color: #fff;
  border: none
}
@media (max-width:1200px) {
  .card,
  .card_new {
    padding: 20px
  }
}
@media (max-width:768px) {
  .card {
    padding: 0;
    border: none
  }
  .card__head {
    margin-bottom: 10px
  }
  .card__status {
    font-size: 21px
  }
  .card__status::before {
    width: 145px;
    height: 45px;
    bottom: -5px
  }
  .card__status span:first-child {
    height: 45px
  }
  .card__badge {
    top: 5px;
    left: 5px
  }
  .card__title {
    font-size: 20px;
    margin-bottom: 10px
  }
  .card__date {
    font-size: 13px;
    margin-bottom: 10px
  }
  .card__date svg {
    width: 20px;
    min-width: 20px;
    height: 20px
  }
  .card_new {
    padding: 0;
    border: none
  }
  .card_new__head {
    margin-bottom: 10px
  }
  .card_new__status span:first-child {
    margin-top: 0
  }
  .card_new__badge {
    top: 5px;
    left: 5px
  }
  .card_new__title {
    font-size: 20px;
    margin-bottom: 10px
  }
  .card_new__date {
    font-size: 13px;
    margin-bottom: 10px
  }
  .card_new__date svg {
    width: 20px;
    min-width: 20px;
    height: 20px
  }
}
@media (max-width:600px) {
  .card__img,
  .card_new__img {
    height: 162px
  }
}