.content-card {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  position: relative !important;
}
.content-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}
.content-card__link {
  display: block;
  text-decoration: none;
}
.content-card__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #F1F1F1;
  aspect-ratio: 16/9;
  z-index: 0;
  margin-bottom: 1.5rem;
}
.content-card__image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.content-card:hover__image-wrapper img, .content-card:focus-within__image-wrapper img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.content-card:hover .content-card__image-wrapper img, .content-card:focus-within .content-card__image-wrapper img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.content-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #006875;
  padding: 6px 12px;
  color: #fff;
  border-radius: 30px;
  font-family: "IBMPlexMono", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  font-size: 0.75rem;
  letter-spacing: 0;
}
.content-card__badge:is(a) {
  transition: 0.3s ease-in-out;
}
.content-card__badge:is(a):hover {
  background: rgb(0, 58.6666666667, 66);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.content-card__date {
  display: flex;
  align-items: center;
  font-family: "IBMPlexMono", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  font-size: 0.875rem;
  letter-spacing: "0";
}
.content-card__date::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #1a6b6b;
  flex-shrink: 0;
  opacity: 0;
  margin-right: 0.125rem;
  transition: width 0.2s ease, opacity 0.2s ease;
}
.content-card:hover .content-card__date::before, .content-card:focus-within .content-card__date::before {
  width: 0.5rem;
  opacity: 1;
  margin-right: 0.375rem;
}
.content-card__title {
  margin: 0.75rem 0 0.5rem;
  font-family: "Tobias", serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .content-card__title {
    font-size: 1.5rem;
  }
}
.content-card__title a {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(#006875, #006875);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.3s, color 0.3s;
  padding-bottom: 1px;
}
.content-card__title a:hover, .content-card__title a:focus {
  background-size: 100% 1px;
  text-decoration: none;
  transition: background-size 0.3s, color 0.3s;
  color: #006875;
}
.content-card__title-link {
  color: inherit;
  text-decoration: none;
}
.content-card__title-link:hover, .content-card__title-link:focus {
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
}
.content-card__title-link:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}
.content-card__summary {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.content-card--wide .content-card__title {
  font-size: 1.5rem;
}
.content-card--wide .content-card__body {
  gap: 0.75rem;
}
.content-card--compact .content-card__title {
  font-size: 1.125rem;
}
.content-card--compact .content-card__summary {
  -webkit-line-clamp: 2;
}
.content-card--list {
  flex-direction: column-reverse;
}
@media (min-width: 576px) {
  .content-card--list {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 2rem;
  }
}
.content-card--list .content-card__image-wrapper {
  aspect-ratio: 1/1;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media (min-width: 576px) {
  .content-card--list .content-card__image-wrapper {
    margin-bottom: 0;
    flex: 0 0 12.375rem;
  }
}
.content-card--list .content-card__image-wrapper img {
  border-radius: 0.75rem;
}
.content-card--list .content-card__content {
  flex: 1 1 0;
  min-width: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
}
.content-card--list .content-card__title {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  margin-bottom: 0.9375rem;
  order: -1;
}
@media (min-width: 768px) {
  .content-card--list .content-card__title {
    font-size: 1.375rem;
  }
}
.content-card--list .content-card__date {
  margin-bottom: 0.9375rem;
}
.content-card--list .content-card__summary {
  -webkit-line-clamp: 2;
}

/*# sourceMappingURL=content-card.css.map*/