.link-list {
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  gap: 16px;
}

@media (min-width: 640px) {
  .link-list {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .link-list {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .link-list {
    max-width: 1024px;
    gap: 24px;
  }
}

@media (min-width: 1280px) {
  .link-list {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .link-list {
    max-width: 1536px;
  }
}

.link-list__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #063073;
}

@media (min-width: 1024px) {
  .link-list__title {
    font-size: 30px;
    line-height: 1.2;
  }
}

.link-list__column-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .link-list__column-wrapper {
    flex-direction: row;
    gap: 48px;
  }
}

.link-list__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  border-radius: 8px;
  background-color: #eaf8ff;
  box-sizing: border-box;
  padding: 24px;
}

.link-list__column-title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #063073;
}

@media (min-width: 1024px) {
  .link-list__column-title {
    font-size: 20px;
  }
}

.link-list__item-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 64px;
  row-gap: 16px;
}

@media (min-width: 1024px) {
  .link-list__item-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.link-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #059cff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .link-list__item {
    font-size: 16px;
  }
}

.link-list__item:hover {
  text-decoration: underline;
}

.link-list__item::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-left: auto;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M9 5l7 7-7 7' stroke='%23059cff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.content-card {
  --brand-blue: #063073;
  --brand-light-blue: rgb(209, 240, 255);
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  background-color: #fff;
  padding-block: 24px;
}

@media (min-width: 1024px) {
  .content-card {
    display: flex;
    align-items: center;
    gap: 48px;
    border: 1px solid var(--brand-light-blue);
    border-radius: 12px;
    padding: 24px 48px;
    background-color: #fff !important;
  }
}

.content-card.content-card--alternate {
  background-color: #f3f6fa;
}

@media (max-width: 1023px) {
  .content-card.content-card--alternate::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background: #f3f6fa;
    z-index: -1;
    pointer-events: none;
  }
}

.content-card.content-card--alternate .content-card__image {
  order: 1;
}

.content-card.content-card--grayonly {
  background-color: #f3f6fa;
}

@media (max-width: 1023px) {
  .content-card.content-card--grayonly::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background: #f3f6fa;
    z-index: -1;
    pointer-events: none;
  }
}

@media (min-width: 1024px) {
  .content-card.content-card--noborder {
    border: none;
  }
}

.content-card.content-card--fullwidth {
  border: none !important;
  padding: 0; !important;
}

@media (max-width: 1023px) {
  .content-card.content-card--fullwidth {
    padding-block: 24px !important;
  }
}

.content-card__image {
  display: block;
  width: 100%;
  height: 140px !important;
  object-fit: cover;
  border-radius: 12px;
}

@media (min-width: 1024px) {
  .content-card__image {
    width: 100%;
    height: 320px !important;
  }
}

.content-card__info-wrapper {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 1024px) {
  .content-card__info-wrapper {
    width: 100%;
  }
}

.content-card__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand-blue);
}

.content-card__body {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
  color: var(--brand-blue);
}

@media (min-width: 1024px) {
  .content-card__body {
    font-size: 16px;
  }
}

.content-card__action-button {
  background-color: var(--brand-blue);
  color: white;
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  padding-inline: 16px;
  padding-block: 12px;
  display: block;
  width: fit-content;
  border-radius: 6px;
  font-size: 14px;
}

.content-card__action-button:hover {
  opacity: 0.9;
}

.content-card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #059cff;
  text-decoration: none;
}

.content-card__link:hover {
  text-decoration: underline;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .content-card__image {
    height: 250px !important;
  }
}