@charset "UTF-8";
.c-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #f0f0f3;
  overflow: hidden;
}

.c-card--full {
  gap: 16px;
  border-radius: 24px;
  padding: 29px 25px;
}
@media (min-width: 768px) {
  .c-card--full {
    padding: 41px;
  }
}
.c-card--full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
}
.c-card--full.c-card--accent-1::before {
  background: linear-gradient(to right, #1557b5, #0ea5e9);
}
.c-card--full.c-card--accent-2::before {
  background: linear-gradient(to right, #0ea5e9, #7dd3fc);
}
.c-card--full.c-card--accent-3::before {
  background: linear-gradient(to right, #7dd3fc, #bae6fd);
}
.c-card--full.c-card--accent-4::before {
  background: linear-gradient(to right, #bae6fd, #e0f2fe);
}
.c-card--full .c-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.c-card--full .c-card__icon {
  font-size: 22px;
}
.c-card--full .c-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.022em;
}
@media (min-width: 768px) {
  .c-card--full .c-card__title {
    font-size: 26px;
    letter-spacing: -0.015em;
  }
}
.c-card--full .c-card__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.c-card--full .c-card__body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  color: #6b7280;
  margin: 0 0 16px;
}
.c-card--full .c-card__body p:last-child {
  margin-bottom: 0;
}
.c-card--full .c-card__body p.card-eyebrow {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.21;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #1557b5;
  margin: 4px 0 12px;
}
.c-card--full .c-card__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-card--full .c-card__body li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.62;
  color: #1c2024;
}
.c-card--full .c-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #1557b5;
  flex-shrink: 0;
}
.c-card--full .c-card__body p.card-callout {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: #1c2024;
  background: rgba(21, 87, 181, 0.05);
  border-left: 3px solid #1557b5;
  border-radius: 0 8px 8px 0;
  padding: 15px 20px;
  margin: 4px 0 0;
}

.c-card--teaser {
  gap: 0;
  border-radius: 20px;
  padding: 29px 25px 25px;
}
.c-card--teaser::before {
  display: none;
}
.c-card--teaser .c-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 32px;
}
.c-card--teaser .c-card__icon-wrap--image {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef4ff 0%, #dbf4ff 100%);
  overflow: hidden;
}
.c-card--teaser .c-card__icon-wrap--image .c-card__image-pill {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 24px;
  max-height: 24px;
  object-fit: cover;
}
.c-card--teaser .c-card__icon {
  font-size: 20px;
}
.c-card--teaser .c-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: 0;
  margin-bottom: 9px;
}
.c-card--teaser .c-card__body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
}

.c-card--teaser-dark {
  gap: 0;
  border-radius: 20px;
  padding: 29px 25px 25px;
  background: linear-gradient(135deg, #030d2e 0%, #0038a1 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.c-card--teaser-dark::before {
  display: none;
}
.c-card--teaser-dark .c-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 32px;
}
.c-card--teaser-dark .c-card__icon-wrap--image {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1019607843);
  overflow: hidden;
}
.c-card--teaser-dark .c-card__icon-wrap--image .c-card__image-pill {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 24px;
  max-height: 24px;
  object-fit: cover;
}
.c-card--teaser-dark .c-card__icon {
  font-size: 24px;
  filter: brightness(0) invert(1);
}
.c-card--teaser-dark .c-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 9px;
}
.c-card--teaser-dark .c-card__body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.c-card--teaser-dark .c-card__tag {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.8509803922);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
}
.c-card--teaser-dark .card-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.c-card--icon {
  align-items: center;
  gap: 16px;
  border-radius: 20px;
  padding: 32px 24px 28px;
}
.c-card--icon::before {
  display: none;
}
.c-card--icon .c-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #dbf4ff, #cde4ff);
}
.c-card--icon .c-card__icon {
  font-size: 26px;
}
.c-card--icon .c-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
.c-card--icon .c-card__body {
  display: none;
}

.c-card--featured {
  flex-direction: column;
  gap: 24px;
  border-radius: 20px;
  padding: 32px 24px;
  background: linear-gradient(135deg, #dbf4ff, #cdf1ff);
  border: none;
}
@media (min-width: 768px) {
  .c-card--featured {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    border-radius: 28px;
    padding: 52px 56px;
  }
}
.c-card--featured::before {
  display: none;
}
.c-card--featured .c-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1557b5, #0ea5e9);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .c-card--featured .c-card__icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 24px;
  }
}
.c-card--featured .c-card__icon {
  font-size: 30px;
}
@media (min-width: 768px) {
  .c-card--featured .c-card__icon {
    font-size: 40px;
  }
}
.c-card--featured .c-card__content {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  min-width: 0;
}
.c-card--featured .c-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #081462;
}
@media (min-width: 768px) {
  .c-card--featured .c-card__title {
    font-size: 22px;
  }
}
.c-card--featured .c-card__body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  color: #1c2024;
  margin: 0;
}
.c-card--featured .c-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #1557b5;
  text-decoration: none;
  margin-top: 4px;
}
.c-card--featured .c-card__link::after {
  content: "→";
  font-size: 1.5rem;
  margin-left: 0.35em;
  margin-top: -5px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}
.c-card--featured .c-card__link:hover::after, .c-card--featured .c-card__link:focus::after {
  transform: translateX(4px);
}

.c-card--list-text {
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  border-radius: 16px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid #f0f0f3;
}
.c-card--list-text::before {
  display: none;
}
.c-card--list-text .c-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef4ff, #dbf4ff);
  flex-shrink: 0;
}
.c-card--list-text .c-card__icon-wrap--image {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef4ff, #dbf4ff);
  overflow: hidden;
}
.c-card--list-text .c-card__icon-wrap--image .c-card__image-pill {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card--list-text .c-card__icon {
  font-size: 20px;
}
.c-card--list-text .c-card__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.c-card--list-text .c-card__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.21;
  color: #1c2024;
}
.c-card--list-text .c-card__body p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2024;
  margin: 0;
}

.c-card--numbered {
  gap: 0;
  border-radius: 20px;
  padding: 29px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.c-card--numbered::before {
  display: none;
}
.c-card--numbered .c-card__number {
  display: block;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.21;
  letter-spacing: 1.1px;
  color: #0ea5e9;
  margin-bottom: 8px;
}
.c-card--numbered .c-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  color: #fff;
  margin-bottom: 11px;
}
.c-card--numbered .c-card__body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.c-card--numbered-light {
  gap: 0;
  border-radius: 24px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #f0f0f3;
}
.c-card--numbered-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #1557b5, #0ea5e9);
  border-radius: 24px 24px 0 0;
}
.c-card--numbered-light .c-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1557b5, #0ea5e9);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.c-card--numbered-light .c-card__subtitle {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: #1557b5;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}
.c-card--numbered-light .c-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1c2024;
  margin: 0 0 12px 0;
}
.c-card--numbered-light .c-card__body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #1c2024;
  margin: 0;
}
.c-card--numbered-light .c-card__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 20px;
  background: #f0f5ff;
  border-radius: 8px;
  padding: 5px 12px;
}
.c-card--numbered-light .c-card__badge-text {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: #1557b5;
}

.c-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbf4ff, #bfe0ff);
  flex-shrink: 0;
}

.c-card__icon {
  line-height: 1;
}

.c-card__title {
  color: #1c2024;
  margin: 0;
}

.c-card--left {
  flex-direction: column;
  gap: 24px;
  border-radius: 4px;
  padding: 24px;
  background: linear-gradient(135deg, #ddf2fc 0%, #ffffff 70%);
  border: none;
}
@media (min-width: 768px) {
  .c-card--left {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding: 32px;
  }
}
.c-card--left::before {
  display: none;
}
.c-card--left .c-card__image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .c-card--left .c-card__image-wrap {
    width: 457px;
    border-radius: 16px;
  }
}
.c-card--left .c-card__image {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .c-card--left .c-card__image {
    height: 533px;
    border-radius: 16px;
  }
}
.c-card--left .c-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .c-card--left .c-card__content {
    gap: 24px;
  }
}
.c-card--left .c-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #1c2024;
  margin: 0;
}
@media (min-width: 768px) {
  .c-card--left .c-card__title {
    font-size: 30px;
    line-height: 36px;
  }
}
.c-card--left .c-card__body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1c2024;
  margin: 0;
}
.c-card--left .c-card__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.c-card--left .c-card__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #1557b5;
  text-decoration: none;
  border: 1.5px solid #1557b5;
  border-radius: 8px;
  padding: 10px 18px;
  transition: background 0.15s ease, color 0.15s ease;
}
.c-card--left .c-card__btn--primary::after {
  content: "›";
  font-size: 1.2em;
  line-height: 1;
}
.c-card--left .c-card__btn--primary:hover, .c-card--left .c-card__btn--primary:focus {
  background: #1557b5;
  color: #fff;
}
.c-card--left .c-card__btn--secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #0038a1;
  text-decoration: none;
}
.c-card--left .c-card__btn--secondary::after {
  content: "›";
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.15s ease;
}
.c-card--left .c-card__btn--secondary:hover, .c-card--left .c-card__btn--secondary:focus {
  text-decoration: underline;
}
.c-card--left .c-card__btn--secondary:hover::after, .c-card--left .c-card__btn--secondary:focus::after {
  transform: translateX(3px);
}

.c-card--right {
  flex-direction: column;
  gap: 24px;
  border-radius: 4px;
  padding: 24px;
  background: linear-gradient(225deg, #ddf2fc 0%, #ffffff 70%);
  border: none;
}
@media (min-width: 768px) {
  .c-card--right {
    flex-direction: row-reverse;
    align-items: center;
    gap: 64px;
    padding: 32px;
  }
}
.c-card--right::before {
  display: none;
}
.c-card--right .c-card__image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .c-card--right .c-card__image-wrap {
    width: 457px;
    border-radius: 16px;
  }
}
.c-card--right .c-card__image {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .c-card--right .c-card__image {
    height: 533px;
    border-radius: 16px;
  }
}
.c-card--right .c-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .c-card--right .c-card__content {
    gap: 24px;
  }
}
.c-card--right .c-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #1c2024;
  margin: 0;
}
@media (min-width: 768px) {
  .c-card--right .c-card__title {
    font-size: 30px;
    line-height: 36px;
  }
}
.c-card--right .c-card__body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #1c2024;
  margin: 0;
}
.c-card--right .c-card__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.c-card--right .c-card__btn--secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #0038a1;
  text-decoration: none;
}
.c-card--right .c-card__btn--secondary::after {
  content: "›";
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.15s ease;
}
.c-card--right .c-card__btn--secondary:hover, .c-card--right .c-card__btn--secondary:focus {
  text-decoration: underline;
}
.c-card--right .c-card__btn--secondary:hover::after, .c-card--right .c-card__btn--secondary:focus::after {
  transform: translateX(3px);
}

.c-card--dark {
  gap: 0;
  border-radius: 20px;
  padding: 29px 30px;
  background: linear-gradient(145deg, #081462 0%, #1557b5 100%);
  border: none;
}
.c-card--dark::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.c-card--dark::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  pointer-events: none;
}
.c-card--dark .c-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.18);
  margin-bottom: 16px;
}
.c-card--dark .c-card__icon {
  font-size: 22px;
}
.c-card--dark .c-card__subtitle {
  display: block;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.21;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 10px;
}
.c-card--dark .c-card__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.44px;
  color: #fff;
  margin: 0 0 11px;
}
@media (min-width: 768px) {
  .c-card--dark .c-card__title {
    font-size: 30px;
    letter-spacing: -0.66px;
    line-height: 36.6px;
  }
}
.c-card--dark .c-card__body {
  margin-bottom: 20px;
}
.c-card--dark .c-card__body p {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.44px;
  color: #fff;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .c-card--dark .c-card__body p {
    font-size: 30px;
    line-height: 36.6px;
    letter-spacing: -0.66px;
  }
}
.c-card--dark .c-card__body p:last-child {
  margin-bottom: 0;
}
.c-card--dark .c-card__body p.card-eyebrow {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.21;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(14, 165, 233, 0.9);
  margin: 4px 0 12px;
}
.c-card--dark .c-card__body p.card-callout {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid rgba(14, 165, 233, 0.6);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  margin: 4px 0 0;
}
.c-card--dark .c-card__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-card--dark .c-card__body ul:last-child {
  margin-bottom: 0;
}
.c-card--dark .c-card__body li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.72);
}
.c-card--dark .c-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(14, 165, 233, 0.75);
  flex-shrink: 0;
}
.c-card--dark .c-card__body .text-color-primary {
  color: #1557b5;
}
.c-card--dark .c-card__body .text-color-sky {
  color: #0ea5e9;
}
.c-card--dark .c-card__body .text-gradient {
  background: linear-gradient(94deg, #93C5FD 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.c-card--dark .c-card__body .text-grey {
  color: rgba(255, 255, 255, 0.45);
}
.c-card--dark .c-card__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
  margin-top: auto;
}
.c-card--dark .c-card__badge-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0ea5e9;
  flex-shrink: 0;
}
.c-card--dark .c-card__badge-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.card-tag {
  display: inline-block;
  background: rgba(21, 87, 181, 0.07);
  border: 1px solid rgba(21, 87, 181, 0.12);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.21;
  color: #1557b5;
  vertical-align: middle;
  margin-top: 32px;
}