.wtt-season-tabs{
  --wtt-season-tab-active:var(--primary-color,#E79372);
  --wtt-season-tab-active-bg:#f7e8e2;
  --wtt-season-tab-muted:#6e6e6e;
  --wtt-season-tab-muted-bg:#ececec;
  --wtt-season-tab-muted-hover-bg:#e2e2e2;
  --wtt-season-tab-font:var(--primary-font,Work Sans,sans-serif);
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  gap:0 0.2rem;
  margin:0 0 0.65em;
  padding:0;
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  font-family:var(--wtt-season-tab-font);
  border-bottom:1px solid rgba(0,0,0,.08);
}
.entry-content > .wtt-season-tabs{
  max-width:100%;
}

/* Folder-style tabs: rounded top, flush square bottom. */
.entry-content .wtt-season-tabs .wtt-season-tabs__tab,
.wtt-season-tabs .wtt-season-tabs__tab{
  appearance:none;
  -webkit-appearance:none;
  display:inline-block;
  margin:0 0 -1px;
  padding:0.42rem 0.95rem 0.38rem;
  border:1px solid transparent;
  border-bottom:none;
  border-radius:8px 8px 0 0;
  background:var(--wtt-season-tab-muted-bg);
  box-shadow:none;
  font-family:inherit;
  font-size:0.88rem;
  font-weight:500;
  line-height:1.25;
  letter-spacing:0.01em;
  text-decoration:none;
  color:var(--wtt-season-tab-muted);
  transition:color .15s ease, background-color .15s ease, border-color .15s ease;
  position:relative;
  z-index:1;
}

.entry-content .wtt-season-tabs a.wtt-season-tabs__tab:hover,
.entry-content .wtt-season-tabs a.wtt-season-tabs__tab:focus,
.entry-content .wtt-season-tabs a.wtt-season-tabs__tab:focus-visible,
.wtt-season-tabs a.wtt-season-tabs__tab:hover,
.wtt-season-tabs a.wtt-season-tabs__tab:focus,
.wtt-season-tabs a.wtt-season-tabs__tab:focus-visible{
  color:#555;
  background:var(--wtt-season-tab-muted-hover-bg);
  box-shadow:none;
  outline:none;
  text-decoration:none;
}

.entry-content .wtt-season-tabs .wtt-season-tabs__tab.is-active,
.wtt-season-tabs .wtt-season-tabs__tab.is-active{
  color:var(--wtt-season-tab-active);
  background:var(--wtt-season-tab-active-bg);
  border-color:rgba(231,147,114,.35);
  border-bottom:1px solid var(--wtt-season-tab-active-bg);
  cursor:default;
  z-index:2;
}

.entry-content .wtt-season-tabs .wtt-season-tabs__tab.is-static,
.wtt-season-tabs .wtt-season-tabs__tab.is-static{
  cursor:default;
  pointer-events:none;
}
