{#---------Quantity of Cards---------#}
.event-post__content {
  position: relative;
  width: 100%;
}
.content-slider div.content-slider__navigation svg path{
  fill: #0C347D;
}
.content-slider-prev,
.content-slider-next {
  height: 50px !important;
  width: 50px;
  display: block !important;
  border-radius: 40%;
  background: #fff;
  display: grid !important;
  justify-content: center;
  justify-items: center;
  align-content: center !important;
  align-items: center !important;
  filter: drop-shadow(0px 4px 15.1px rgba(0, 0, 0, 0.12)) !important;
}
a.blog_post_card_tag_override {
  text-decoration: none;
}
article.event-post__body_container.event-post__body_container--sidebar_full{
  padding: 20px 17px 13px 0;
}
.content-slider{
  position: relative;
}
.content-slider-prev{
  position: absolute;
  top: 50%;
  height: 100%;
  display: grid;
  align-content: center;
  align-items: center;
  position: absolute;
  z-index: 300;
}
.content-slider-next{
  position: absolute;
  top: 50%;
  height: 100%;
  display: grid;
  align-content: center;
  align-items: center;
  position: absolute;
  z-index: 300;
  right: 0;
  transform: rotate(180deg);
}
.content-slider__navigation {
  left: 0;
  margin: 0;
  text-align: center;
  z-index: 5;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

article.event-post__body_container.event-post__body_container--sidebar_full{
  width: 60%;
}
.event-post__time {
  display: flex;
  justify-content: space-between;
}
.event-post__content:hover{
  -webkit-transition: all .3s ease-in-out !important;
  -o-transition: all .3s ease-in-out !important;
  transition: all .3s ease-in-out !important;
}

@media only screen and (min-width: 600px) {
  .event-post__content {
    width: calc(50% - 34px);
  }
}

@media only screen and (min-width: 992px) {
  .event-post__content {
    width: calc(33.33% - 34px);
  }
}

{#---------General Styles---------#}
.event-post__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

{#---------Card Image---------#}
.event-post__image {
  margin: 0;
}

.event-post__image img {
  height: 200px;
  display: block;
  object-fit: cover;
  width: 100%;
}

{#---------Tag and Time--------#}
.event-post__tag a {
  text-decoration: underline;
}

.event-post__tag-time {
  display: flex;
}

.event-post__tag-time > span {
  padding: 0 27px;
}

{#---------Author---------#}
.event-post__author {
  padding-bottom: 32px;
}

.event-post__author a:hover,
.event-post__author a:focus{
  text-decoration: none;
}

{#---------Card Body---------#}
.event-post__body{
  position: relative;
  margin-bottom: 70px;
  width: 100%;
}

{#---------Button Style---------#}
.event-post__button {
  bottom: 32px;
  left: 0;
  position: absolute;
  margin: 0 32px;
  width: 83%;
}

.event-post__button a{
  text-decoration: none;
}

{#---------End General Styles---------#}

{#---------OVERLAY---------#}
.event-post__image--overlay {
  position: relative;
}

.event-post__image--overlay a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
} 

.event-post__title--overlay{
  position: absolute;
  top: 134px;
}

.event-post__author--overlay {
  position: absolute;
  top: 195px;
}

{#---------CLEAN---------#}
.event-post__image--clean{
  display: none;
}

.event-post__body_container--clean {
  display: grid;
  grid-template-areas:
		'tag'
    'title'
    'author'
    ;
}

.event-post__tag-time--clean {
  grid-area: tag;
}

.event-post__title--clean {
  grid-area: title;
}

.event-post__author--clean {
  grid-area: author;
  padding-bottom: 8px;
}
.event-post__tag-time--clean article.event-post__time{
	display: none;
}
{#---------SIDEBAR---------#}
.event-post__content--sidebar_full,
.event-post__content--sidebar_compact {
  display: flex;
  gap: 20px;
  width: 100%;
}

.event-post__image--sidebar_full img,
.event-post__image--sidebar_compact img {
  width: 200px;
}


.event-post__image--sidebar_full,
.event-post__image--sidebar_compact{
  width: 200px;
  height: 100%;
  overflow: hidden;
}


@media only screen and (max-width: 767px){
  .event-post__image--sidebar_full,
  .event-post__image--sidebar_compact{
    width: 43%;
  }

  .event-post__body_container--sidebar_full,
  .event-post__body_container--sidebar_compact {
    width: 58%;
  }
}

.event-post__tag-time--sidebar_full,
.event-post__tag-time--sidebar_compact {
  grid-area: tag;
}

.event-post__author--sidebar_full,
.event-post__author--sidebar_compact,
.event-post__body--sidebar_full,
.event-post__body--sidebar_compact {
  display: none;
}

.event-post__button--sidebar_full,
.event-post__button--sidebar_compact {
  grid-area: button;
  position: inherit;
  margin: 0;
}

@media only screen and (max-width: 992px){
  .event-post__tag-time--sidebar_compact > span {
    padding: 0 16px;
  }
}

.event-post__content--sidebar_compact {
  justify-content: center;
}

.event-post__image--sidebar_compact {
  display: none;
}