.offeringsGrid__title {
  margin: 0 0 10px;
}
.offeringsGrid__title h2 {
  margin-top: 0;
  margin-bottom: 30px;
}
.offeringsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
}
.offeringsGrid .offeringsGrid__offering {
  background: white;
}
.offeringsGrid .offering__border {
  border: solid 1px #cccccc;
  padding: 20px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.offeringsGrid .offering__picture,
.offeringsGrid .offering__image {
  display: block;
  aspect-ratio: 1.77777778;
  width: 100%;
}
.offeringsGrid .offering__picture img,
.offeringsGrid .offering__image img {
  width: 100%;
  height: auto;
}
.offeringsGrid .offering__text {
  font-size: 14px;
  line-height: 21px;
  color: #666666;
}
.offeringsGrid .offering__text * {
  font-size: 14px;
  line-height: 21px;
  color: #666666;
  margin: 10px 0;
}
.offeringsGrid .offering__text ol {
  padding: 0 0 0 15px;
}
.offeringsGrid .offering__text a,
.offeringsGrid .offering__text a:link {
  color: #004494;
  border-bottom: solid 1px #cfd1e3;
  text-decoration: none;
}
.offeringsGrid .offering__text a:hover,
.offeringsGrid .offering__text a:active {
  color: #004494;
  border-bottom-color: #004494;
}
.offeringsGrid .offering__link {
  flex: 1;
  display: flex;
  align-items: flex-end;
  margin: 25px 0 0 0;
  color: #004494;
  font-weight: bold;
}
.offeringsGrid a.offering_url:hover,
.offeringsGrid a.offering_url:active {
  color: #004494;
  text-decoration: none !important;
}
.offeringsGrid a.offering_url:hover .offering__border,
.offeringsGrid a.offering_url:active .offering__border {
  border: solid 1px #004494;
}
[class*='--background-gray'] .offeringsGrid__wrapper {
  max-width: 1009px;
  margin: 0 auto;
}
[class*='--background-gray'] .offeringsGrid__wrapper .offeringsGrid__title,
[class*='--background-gray'] .offeringsGrid__wrapper .offeringsGrid__title h2 {
  margin-top: 0;
}
[class*='--background-gray'] .offeringsGrid__wrapper .offeringsGrid {
  margin-bottom: 0;
}
.mt_direction_right_to_left .offeringsGrid .offering__text ol {
  padding: 0 15px 0 0;
}
/* ==========================================================================
   Author mode adjustments
   ========================================================================== */
.cq-Editable-dom .offeringsGrid .offering__border {
  height: auto;
}
/* ==========================================================================
   Mobile layout adjustments
   ========================================================================== */
@media (max-width: 1009px) {
  .offeringsGrid__title {
    margin: 15px 20px 10px;
  }
  .offeringsGrid {
    gap: 20px;
  }
}
@media (max-width: 750px) {
  .offeringsGrid .offering__link {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 600px) {
  .offeringsGrid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .offeringsGrid__title {
    margin: 0 20px;
  }
}
@media (max-width: 480px) {
  .offeringsGrid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
    column-gap: 0;
  }
}
