/* ═══════════════════════════════════════════
   TABS — Option C : Filled Active Tab
   Active = #466439 filled bg + white text
   Gold top accent on active tab
   ═══════════════════════════════════════════ */

div#profile-tab .t-TabsRegion-items {
  min-height: unset !important;
}

ul.t-Tabs.t-Tabs--simple {
  display: flex;
  align-items: flex-end;
  gap: 0;
  list-style: none;
  margin: 0;
  background: #f2f6ef;
  border-bottom: 1px solid var(--bd);
  overflow: visible !important;
  height: auto !important;
}

ul.t-Tabs.t-Tabs--simple::after {
  content: none;
}

ul.t-Tabs.t-Tabs--simple .t-Tabs-item {
  list-style: none;
  position: relative;
}

/* Default tab */
ul.t-Tabs.t-Tabs--simple .t-Tabs-link {
  display: flex;
  align-items: center;
  font-family: var(--fb);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #6b7f65;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 22px 13px;
  margin-bottom: -1px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  clip-path: none;
  white-space: nowrap;
}

ul.t-Tabs.t-Tabs--simple .t-Tabs-link:hover {
  color: var(--pd);
  background: rgba(70, 100, 57, 0.05);
}

/* Active tab — filled green */
ul.t-Tabs.t-Tabs--simple .t-Tabs-item.is-active .t-Tabs-link {
  color: #ffffff;
  background: #466439;
  border-bottom: 2px solid var(--p);
  font-weight: 700;
}

/* Gold top accent on active */
ul.t-Tabs.t-Tabs--simple .t-Tabs-item.is-active .t-Tabs-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

ul.t-Tabs.t-Tabs--simple .t-Tabs-item.is-active .t-Tabs-link::after,
ul.t-Tabs.t-Tabs--simple .t-Tabs-item.is-active .t-Tabs-link span::before {
  display: none;
}
