/* Create Custom "Colour Matrix" to use within the bootstrap utility classes
----------------------------------------------------------------------------- */
/* 
    Expanded spacing options 
    For example the margin and padding classes now have extended capability (.mb-8 now outputs margin-bottom: 3rem)
*/
/*
    This variable affects the `.h-*` and `.w-*` classes.
    You can now do w-25 or h-80 and have it output width: 25% or height: 80%
*/
/*
    Components variables
    When you create the component you should create the variables with colors for this compontnt
*/
/*
  Custom Components Variables
*/
h1, h2, h3, h4 {
  color: #2C2C8E;
}

p {
  color: #595959;
}

.cards-image-text {
  position: relative;
  padding-bottom: 42px;
  height: 100%;
  border-radius: 16px;
}
.cards-image-text-title {
  font-size: 32px;
  color: #2C2C8E;
}
.cards-image-text-title a {
  color: #2C2C8E;
}
.cards-image-text-title a:hover {
  text-decoration: none;
}
.cards-image-text-content {
  color: #595959;
}
.cards-image-text-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}
.cards-image-text-link {
  margin-top: 1rem;
  width: 100%;
  font-weight: 700;
}
.cards-image-text.cards-image-text-has-bg {
  background-color: #f8f9fa;
  padding-bottom: 0;
}
.cards-image-text.cards-image-text-has-bg .cards-image-text-content-wrap {
  padding: 24px;
}
.cards-image-text.cards-image-text-has-bg .cards-image-text-link {
  bottom: 24px;
}
.cards-image-text.cards-image-text-has-bg .cards-image-text-image img {
  border-radius: 8px 8px 0 0;
}
.cards-image-text.cards-image-text-center {
  text-align: center;
}
.cards-image-text.cards-image-text-center .cards-image-text-link {
  left: 0;
  text-align: center;
}

.recent-posts .cards-image-text img {
  max-height: 330px;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 5/4;
}

.blog-section .cards-image-text-image img {
  aspect-ratio: 5/4;
}

@media only screen and (max-width: 992px) {
  .cards-image-text-title {
    font-size: 1.75rem;
  }
}

/*# sourceMappingURL=cards-image-text.css.map */