.event{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.event + .event{
    margin-top: 3rem;
}

.event__cover{
    max-width:40%;
    position: relative;
    padding-bottom: 0;
}

.event__cover__image{
    width:auto;
    max-height:100% !important;
    object-fit: cover;
    
}

.event__information{
    padding: 1.5rem;
    padding-right: 2.5rem;
    background-color: #F6F6F6;
    width: 60%;
}

.event__information__datetime{
    color: #9A5472;
    font-size: 18px;
    font-weight: 600;
    font-family: Source Sans Pro;
}

.event__information__title{
    color: #00274D;
    font-size: 18px;
    font-weight: 700;
    font-family: Source Sans Pro;
}

.event__information__description{
    color: #4B4B4B;
    font-size: 17px;
    font-weight: 400;
    font-family: Source Sans Pro;
}

.event__information__button{
    margin-top: 1rem;
    padding: 0.5rem 1.5rem; 
    font-size: 14px;
    font-weight: 600;
    font-family: Source Sans Pro;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #00274D;
}

.event__information__button:hover{
    background-color: var(--e-global-color-562c3ff);
    color: #FFFFFF;
}

@media screen and (max-width: 600px) {
    .event{
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .event__cover{
        width: 100%;
        max-width: 100%;
    }

    .event__information{
        width: 100%;
    }

    
  }

  @media screen and (max-width: 1024px) {
      .event{
          margin-left: 20px;
      }
  }
