/* old: 'Font Awesome 6 Free' */
.newsAndPressCard {
  flex: 0 1 100%;
  max-width: 416px;
  display: flex;
  box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 767.98px) {
  .newsAndPressCard {
    max-width: 366px;
  }
}
.newsAndPressCard .innerContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 16px;
}
.newsAndPressCard .innerContent .newsAndPressCardImage {
  height: 200px;
  border-radius: 24px 24px 0px 0px;
}
.newsAndPressCard .innerContent .contentData {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 16px;
  margin-bottom: 24px;
}
.newsAndPressCard .innerContent .contentData .elementType {
  width: fit-content;
  background-color: #005CAB;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.newsAndPressCard .innerContent .contentData .elementType a {
  color: white;
  text-decoration: none;
  font-family: "Karla", Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 13px;
  padding: 4px;
}
.newsAndPressCard .innerContent .contentData .cardHealine {
  font-family: "Cabin", Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.newsAndPressCard .innerContent .contentData .cardHealine .headLink {
  color: black;
  text-decoration: none;
}
.newsAndPressCard .innerContent .contentData .cardHealine .headLink:hover {
  color: #005CAB;
}
.newsAndPressCard .innerContent .contentData .cardDate {
  font-family: "Karla", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.newsAndPressCard .innerContent .contentData .contentlink .link {
  text-decoration: none;
  display: inline-flex;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.newsAndPressCard .innerContent .contentData .contentlink .link.external-link svg {
  fill: #0055a5;
}
.newsAndPressCard .innerContent .contentData .contentlink .link.external-link svg:hover {
  fill: #003b72;
}
.newsAndPressCard .innerContent .contentData .contentlink .link:after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  transition-timing-function: ease-out;
  transition-duration: 50ms;
  transition-property: transform;
  margin-left: 8px;
}
.newsAndPressCard .innerContent .contentData .contentlink .link:hover, .newsAndPressCard .innerContent .contentData .contentlink .link:active, .newsAndPressCard .innerContent .contentData .contentlink .link:focus, .newsAndPressCard .innerContent .contentData .contentlink .link:focus-visible, .newsAndPressCard .innerContent .contentData .contentlink .link:first-child:hover, .newsAndPressCard .innerContent .contentData .contentlink .link:first-child:active, .newsAndPressCard .innerContent .contentData .contentlink .link:first-child:focus, .newsAndPressCard .innerContent .contentData .contentlink .link:first-child:focus-visible {
  cursor: pointer;
  text-decoration: none !important;
}
.newsAndPressCard .innerContent .contentData .contentlink .link:hover:after, .newsAndPressCard .innerContent .contentData .contentlink .link:first-child:hover:after {
  transform: translateX(8px);
}