.community-page-end-ctas{
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 26px;
}


{# Light Color Background #}

.community-page-end-ctas.light *{
  color: var(--community-page-end-ctas__text-color);
}

{# Dark Color Background #}

.community-page-end-ctas.dark *{
  color: #fff;
}

.community-page-end-ctas.dark .cta-item .cta-item--icon{
  filter: brightness(0) invert(1);
}

.community-page-end-ctas.dark .cta-item .cta-item--link i{
  background-color: #fff;
  color: #395775;
}




.community-page-end-ctas .cta-item .cta-item--icon{
  height: 60px;
  width: auto;
}

.community-page-end-ctas .cta-item .cta-item--header{
  font-family: "Verlag A", "Verlag B", sans-serif;
  font-size: 25px;
  font-weight: bold;
  line-height: 41px;
  margin: 2px 0 10px;
}

.community-page-end-ctas .cta-item .cta-item--content{
  font-size: 20px;
  line-height: 1.4;
  font-family: Lato, sans-serif;
}

.community-page-end-ctas .cta-item .cta-item--link{
  display: block;
  position: relative;
  margin-top: 20px;
  font-size: 1.375rem;
  font-weight: 700;
  text-decoration: underline;
}

.community-page-end-ctas .cta-item .cta-item--link{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: "Verlag A", "Verlag B", sans-serif;
  color: var(--color-dark);
  text-decoration: none;
  font-size: 25px;
  line-height: 21px;
  transition: all 0.3s ease-out;
}

.community-page-end-ctas .cta-item .cta-item--link:hover{
  gap: 15px;
  transition: all 0.3s ease-out;
}

.community-page-end-ctas .cta-item .cta-item--link span{
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.community-page-end-ctas .cta-item .cta-item--link i{
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--color-dark);
  color: #fff;
  font-size: 14px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}








@media screen and (max-width: 767px){

  .community-page-end-ctas{
    flex-direction: column;
    gap: 4rem;
  }

}