.titan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding:
    11px
    19px;
  border: 1px solid transparent;
  border-radius: var(--titan-radius-pill);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.titan-button:hover {
  transform: translateY(-1px);
}

.titan-button-primary {
  background: var(--titan-gold);
  color: #1f241f;
  box-shadow:
    0 12px 30px rgba(214, 151, 60, 0.25);
}

.titan-button-primary:hover {
  background: var(--titan-gold-light);
}

.titan-button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* ==========================================
   PROJECT TITAN - Expand Buttons
========================================== */

.titan-schools-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
    padding: 12px 22px;

    background: #f8f5ef;
    color: #0f3b2e;

    border: 1px solid #d7c7a1;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;
}

.titan-schools-toggle:hover {
    background: #0f3b2e;
    color: #ffffff;

    border-color: #0f3b2e;
}

.titan-schools-toggle:active {
    transform: scale(0.98);
}

/* ==========================================
   PROJECT TITAN Period Tabs
========================================== */

.titan-period-tabs {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--titan-border);
  border-radius: 999px;
  background: var(--titan-surface-soft);
}

.titan-period-tab {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--titan-muted);
  cursor: pointer;
  padding: 8px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.titan-period-tab:hover {
  color: var(--titan-primary-dark);
}

.titan-period-tab.is-active {
  background: var(--titan-primary-dark);
  color: #ffffff;
  box-shadow: 0 2px 7px rgba(15, 59, 46, 0.18);
}

.titan-period-tab:focus-visible {
  outline: 2px solid var(--titan-gold);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .titan-period-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .titan-period-tab {
    flex: 1 0 auto;
    padding:
      8px
      11px;
  }
}