.blue-table-block {
  padding-top: 48px;
}
@media (min-width: 768px) {
  .blue-table-block {
    padding-top: 96px;
  }
}
.blue-table-block.padding-top-reduced {
  padding-top: 48px;
}
.blue-table-block {
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .blue-table-block {
    padding-bottom: 96px;
  }
}
.blue-table-block.padding-bottom-reduced {
  padding-bottom: 48px;
}
.blue-table-block.section-bg-default {
  background: #ffffff;
}
.blue-table-block.section-bg-neutral {
  background: #f8f8f8;
}
.blue-table-block.section-bg-primary {
  background: #e6f7fd;
}
.blue-table-block.section-bg-futures {
  background: #e6f2fa;
}
.blue-table-block.section-bg-action {
  background: #feeeed;
}
.blue-table-block.section-bg-sponsorship {
  background: #fff9ed;
}
.blue-table-block.section-bg-enrichment {
  background: #f0fefc;
}
.blue-table-block.section-bg-parenting {
  background: #f0ecf1;
}
.blue-table-block > .container {
  width: 100%;
}
.blue-table-block .inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}
.blue-table-block .blue-table-card {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}
.blue-table-block .blue-table-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 20px 17px;
  background: #004159;
  border-bottom: 1px solid #e5e7eb;
}
.blue-table-block .blue-table-title {
  color: #fff;
  line-height: 1.4;
}
.blue-table-block .blue-table-subtitle {
  color: #fff;
  line-height: 1.6;
}
.blue-table-block .blue-table-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #f3f4f6;
  border-left: 1px solid #f3f4f6;
  background: #ffffff;
}
@media (min-width: 640px) {
  .blue-table-block .blue-table-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .blue-table-block .blue-table-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.blue-table-block .blue-table-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding: 12px 16px 13px;
  border-right: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}
.blue-table-block .blue-table-cell-label {
  color: #99a1af;
  line-height: 1.5;
}
.blue-table-block .blue-table-cell-value-wrap {
  min-width: 0;
}
.blue-table-block .blue-table-cell-value {
  display: block;
  color: #1e2939;
  line-height: 1.6;
  word-break: break-word;
}
.blue-table-block .blue-table-cell-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #006fa0;
  line-height: 1.6;
  text-decoration: none;
  word-break: break-word;
}
.blue-table-block .blue-table-cell-link:hover, .blue-table-block .blue-table-cell-link:focus-visible {
  color: #006fa0;
  text-decoration: underline;
}
.blue-table-block .blue-table-cell-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #006fa0;
}
.blue-table-block .blue-table-cell-link-icon-image {
  display: block;
  width: 12px;
  height: 12px;
}