/*
 * The source site loads CompetitionTable.1ZFROvaZ.css as a lazy Nuxt chunk.
 * That chunk is not present in the static mirror, while the server-rendered
 * table markup is. Keep this fallback scoped to the block so the rest of the
 * mirrored pages continues to use the source utility styles unchanged.
 */
.competition-table-block .table-container {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 2px;
  scrollbar-color: var(--forest-300, #80c1c4) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.competition-table-block .table-container::-webkit-scrollbar {
  height: 8px;
}

.competition-table-block .table-container::-webkit-scrollbar-track {
  background: transparent;
}

.competition-table-block .table-container::-webkit-scrollbar-thumb {
  background: var(--forest-300, #80c1c4);
  border-radius: 999px;
}

.competition-table-block .competition-table {
  background: var(--surface-primary, #fff);
  border: 1px solid var(--border-default-subtle, #d6d6d6);
  border-collapse: separate;
  border-radius: 12px;
  border-spacing: 0;
  min-width: 940px;
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
}

.competition-table-block .competition-table thead tr,
.competition-table-block .competition-table thead th {
  background: var(--surface-secondary, #015258);
}

.competition-table-block .competition-table thead th {
  color: var(--text-heading-primary-inverse, #fff);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  padding: 16px 20px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.competition-table-block .competition-table thead th:first-child {
  padding-left: 20px;
  text-align: left;
  width: 44%;
}

.competition-table-block .competition-table thead th:nth-child(n + 2) {
  width: 14%;
}

.competition-table-block .competition-table thead th:nth-child(2) {
  color: var(--spearmint-500, #06dfc7);
}

.competition-table-block .competition-table thead th:last-child {
  padding-right: 20px;
}

.competition-table-block .competition-table tbody .title-row td {
  background: var(--surface-muted, #f3f2ea);
  border-bottom: 1px solid var(--border-default-subtle, #d6d6d6);
  color: var(--text-heading-primary, #015258);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 24px;
  padding: 12px 20px;
  text-align: left;
}

.competition-table-block .competition-table tbody .content-row td {
  background: var(--surface-primary, #fff);
  border-bottom: 1px solid var(--border-default-subtle, #d6d6d6);
  color: var(--text-body-primary, #333132);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}

.competition-table-block .competition-table tbody .content-row:last-child td {
  border-bottom: 0;
}

.competition-table-block .competition-table tbody .content-row td + td {
  border-left: 1px solid var(--border-default-subtle, #d6d6d6);
}

.competition-table-block .competition-table tbody .content-row .long-text {
  color: var(--text-body-primary, #333132);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  width: 44%;
}

.competition-table-block .competition-table tbody .long-text big {
  color: var(--text-heading-primary, #015258);
  display: inline-block;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 3px;
}

.competition-table-block .competition-table tbody .content-row td.text-center {
  color: var(--text-heading-primary, #015258);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.competition-table-block .competition-table tbody .content-row td.text-center .competition-table-status-icon {
  display: block;
  height: 32px;
  margin-left: auto;
  margin-right: auto;
  vertical-align: middle;
  width: 32px;
}

.competition-table-block .competition-table tbody .content-row td.text-center .text-green {
  color: var(--spearmint-700, #059e8e);
}

.competition-table-block .competition-table tbody .content-row td.text-center .text-red {
  color: #a30015;
}

.competition-table-block .competition-table tbody .content-row td.text-center .competition-table-limited {
  color: var(--text-body-primary, #333132);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

@media (max-width: 767px) {
  .competition-table-block .competition-table {
    min-width: 840px;
  }

  .competition-table-block .competition-table thead th {
    font-size: 16px;
    line-height: 24px;
    padding: 14px 16px;
  }

  .competition-table-block .competition-table thead th:first-child,
  .competition-table-block .competition-table tbody .title-row td {
    padding-left: 16px;
  }

  .competition-table-block .competition-table thead th:last-child {
    padding-right: 16px;
  }

  .competition-table-block .competition-table tbody .title-row td,
  .competition-table-block .competition-table tbody .content-row td {
    padding: 16px;
  }

  .competition-table-block .competition-table tbody .content-row .long-text {
    font-size: 15px;
    line-height: 22px;
  }

  .competition-table-block .competition-table tbody .long-text big {
    font-size: 17px;
    line-height: 24px;
  }
}

/* Match the lazy-loaded CompetitionTable component used on sectigo.com.
 * It is a fixed-height, vertically scrollable comparison panel, rather than
 * a full-length table.  These overrides deliberately follow the computed
 * styles of the source component and supersede the early generic fallback. */
.competition-table-block .table-container {
  border: 1px solid var(--border-default-subtle, #d6d6d6) !important;
  border-radius: 6px !important;
  max-height: calc(100vh - var(--sticky-offset, 80px) - 24px) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding-bottom: 0 !important;
  position: relative;
  scrollbar-color: auto !important;
  scrollbar-width: auto !important;
}

/* The source component uses the browser's native vertical scrollbar. */
.competition-table-block .table-container::-webkit-scrollbar {
  height: auto;
  width: auto;
}

.competition-table-block .table-container::-webkit-scrollbar-track,
.competition-table-block .table-container::-webkit-scrollbar-thumb {
  background: initial;
  border-radius: initial;
}

.competition-table-block .competition-table {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  min-width: 0 !important;
  table-layout: auto !important;
}

.competition-table-block .competition-table thead th {
  padding: 16px 1px !important;
  position: sticky;
  top: 0;
  z-index: 5;
}

.competition-table-block .competition-table thead th::after {
  background: linear-gradient(rgba(0, 0, 0, 0.18), transparent);
  bottom: -8px;
  content: "";
  height: 8px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: opacity 0.2s;
}

.competition-table-block .table-container.is-scrolled .competition-table thead th::after {
  opacity: 1;
}

.competition-table-block .competition-table thead th:first-child {
  padding-left: 20px !important;
  width: auto !important;
}

.competition-table-block .competition-table thead th:nth-child(n + 2) {
  width: auto !important;
}

.competition-table-block .competition-table thead th:last-child {
  padding-right: 20px !important;
}

.competition-table-block .competition-table tbody .title-row td {
  background: #ccdde1 !important;
  border-bottom: 0 !important;
  color: var(--text-heading-primary, #015258) !important;
  font-size: 18px !important;
  line-height: 28px !important;
  padding: 8px 20px !important;
}

.competition-table-block .competition-table tbody .content-row td,
.competition-table-block .competition-table tbody .content-row td.text-center {
  background: transparent !important;
  border-left: 0 !important;
  color: var(--text-body-primary, #333132) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 25.992px !important;
  padding: 12px 20px !important;
  text-wrap: pretty;
}

.competition-table-block .competition-table tbody .content-row:hover td {
  background: #e6f2f3 !important;
}

.competition-table-block .competition-table tbody .content-row .long-text {
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 25.992px !important;
  max-width: 20ch;
  min-width: 180px;
  width: auto !important;
}

.competition-table-block .competition-table tbody .long-text big {
  color: var(--text-body-primary, #333132) !important;
  display: inline !important;
  font-family: Urbanist, sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 33.6px !important;
  margin-bottom: 0 !important;
}

.competition-table-block .competition-table tbody .content-row td.text-center .competition-table-limited {
  color: var(--text-body-primary, #333132) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 25.992px !important;
}

@media (max-width: 767px) {
  .competition-table-block .table-container {
    overflow-x: auto !important;
  }

  .competition-table-block .competition-table {
    min-width: 840px !important;
  }
}
