@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.yt-sct-wrap {
  --yt-sct-bg: #6B1029;
  --yt-sct-header: #851738;
  --yt-sct-gold: #d0943d;
  --yt-sct-peach: #f0c691;
  --yt-sct-line: rgba(255,255,255,0.055);
  width: 100%;
  background: var(--yt-sct-bg);
  padding: 40px 8.5% 38px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.yt-sct-wrap * {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.yt-sct-tab-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 0 35px;
  flex-wrap: wrap;
}

.yt-sct-tab-button {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: rgba(240,198,145,0.72);
  padding: 15px 25px;
  min-width: 153px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  transition: all .2s ease;
  border-radius: 0;
}

.yt-sct-tab-button:hover,
.yt-sct-tab-button.is-active {
  border-color: var(--yt-sct-gold);
  background: var(--yt-sct-gold);
  color: #7b162f;
}

.yt-sct-wrap table,
.yt-sct-wrap td,
.yt-sct-wrap th {
  border: 1px solid transparent !important;
}

.yt-sct-panel {
  display: none;
}

.yt-sct-panel.is-active {
  display: block;
}

.yt-sct-table-scroll {
  width: 100%;
  overflow-x: auto;
}

.yt-sct-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--yt-sct-gold);
  table-layout: fixed;
  margin: 0;
}

.yt-sct-table thead tr {
  background: var(--yt-sct-header);
}

.yt-sct-table th {
  color: var(--yt-sct-peach);
  text-align: left;
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 600;
  padding: 16px 22px;
  text-transform: uppercase;
  border: none !important;
}

.yt-sct-table td {
  color: var(--yt-sct-gold);
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  padding: 18px 22px;
  border: none !important;
  border-bottom: 1px solid var(--yt-sct-line) !important;
}

.yt-sct-table tbody tr:last-child td {
  border-bottom: 1px solid var(--yt-sct-line) !important;
}

@media (max-width: 767px) {
  .yt-sct-wrap {
    padding: 28px 18px;
  }

  .yt-sct-tab-buttons {
    gap: 10px;
    margin-bottom: 25px;
  }

  .yt-sct-tab-button {
    width: 100%;
    min-width: 0;
    font-size: 13px;
  }

  .yt-sct-table {
    min-width: 620px;
  }

  .yt-sct-table th,
  .yt-sct-table td {
    padding: 14px 18px;
  }
}