/* Covered vs Not Covered Section */
.covered-vs-not {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.covered-vs-not .section-inner {
  max-width: 1010px;
  margin: 0 auto;
}

.covered-vs-not .section-headline {
  max-width: 558px;
}

.covered-vs-not .section-sub {
  max-width: 452px;
  margin-bottom: 42px;
}

/* Table layout */
.cvn-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.cvn-table th,
.cvn-table td {
  padding: 20px 16px;
  text-align: left;
  border-bottom: 1px solid #EAEAEA;
}

.cvn-table th {
  font-weight: 600;
  color: #001D3F;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 16px;
  padding-top: 0;
  border-bottom: 0;
}

.cvn-table td.situation {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  width: 50%;
}

.cvn-table tbody tr:last-child td {
  border-bottom: 0;
}

.cvn-table td.status-col,
.cvn-table th.status-col {
  width: 25%;
}

.cvn-table td.status-col2 {
  padding-left: 51px;
}

.th-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Icons */
.icon-green-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #00E477;
  color: white;
  border-radius: 50%;
  font-size: 12px;
}

.icon-red-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #FF5A5F;
  color: white;
  border-radius: 50%;
  font-size: 12px;
}

.icon-green-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid #00E477;
  color: #00E477;
  border-radius: 50%;
  font-size: 12px;
}

.icon-red-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid #FF5A5F;
  color: #FF5A5F;
  border-radius: 50%;
  font-size: 12px;
}

.status-covered {
  color: #00C853;
  font-weight: 400;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.status-not-covered {
  color: #EE3241;
  font-weight: 400;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.status-dash {
  color: #001D3F;
  font-weight: 700;
}

/* Note box */
.cvn-note {
  background-color: #F8F8E8;
  border: 1px solid #EAEAD2;
  border-radius: 20px;
  padding: 24px 32px;
  color: #001D3F;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.cvn-note strong {
  color: #001D3F;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .covered-vs-not {
    padding: 60px 20px;
  }

  .cvn-table th,
  .cvn-table td {
    padding: 16px 8px;
  }

  .cvn-table th.situation {
    width: 50%;
  }

  .cvn-table td.situation {
    width: 50%;
    font-size: 12px;
    line-height: 18px;
  }

  .cvn-table td.status-col,
  .cvn-table th.status-col {
    width: 20%;
  }

  .cvn-table td.status-col:last-child,
  .cvn-table th.status-col:last-child {
    width: 30%;
  }

  .status-not-covered,
  .status-covered {
    font-size: 12px;
    line-height: 14px;
  }

  .cvn-table th {
    font-size: 14px;
    line-height: 14px;
  }

  .cvn-table td.status-col2 {
    padding-left: 40px;
  }
}

@media (max-width: 576px) {
  .cvn-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }
}

@media (max-width: 426px) {
  .status-not-covered,
  .status-covered {
    gap: 8px;
  }
}