/* .grid .h3, .grid .h4{
  word-break: break-word;
} */
.support_offer_img_wrap{
  height: 100%;
}
.support_offer_card_active{
  background-color: var(--blue3, #E5F2FF);;
}
.benefit_square{
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue1);
  color: var(--white);
  font-size: 12px;
}
@media (min-width:700px) and (max-width:1199px){
  .support_offer_img{
    position: sticky;
    top: 48px;
  }
}
@media (min-width:700px) and (max-width:1199px){
  .support_offer_img{
    position: sticky;
    top: 48px;
  }
}
@media (max-width:700px){
  .support_offer_button_wrap .button{
    width: 100%;
  }
}


.date_card{
    display: grid;
    align-content: space-between;
    grid-template-rows: 1fr auto;
    height: 100%;
    gap: 24px;
    padding: 24px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 32px 48px 0px rgba(32, 34, 37, 0.10);
    transition: 0.5s;
    position: relative;
}
  .date_card:hover{
    transform: translateY(-16px);
}
  .date_card:hover .button_red2 {
    color: var(--white);
    background-color: var(--red1);
}
  .date_card:hover .button_red {
    background-color: var(--red2);
}
  .date_card__link{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index:2;
}
  .date_card_text{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
  .date_card .h4{
    margin-bottom:16px;
}
  .date_card .h4:last-child{
    margin-bottom:0;
}