/**
 * Tech Mentor Civic Lab - Main Stylesheet
 * Neo-Brutalist Layouts, Components, & Utilities
 * Version: 1.0.1
 */

/* ==========================================================================
   1. LAYOUT & CONTAINER
   ========================================================================== */
.tm-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ==========================================================================
   2. HEADER, TICKER & NAVIGATION (ISOLATED & RESILIENT)
   ========================================================================== */
/* Live Emergency Ticker Bar */
.tm-ticker-bar {
  background-color: var(--tm-ink);
  color: var(--tm-amber);
  font-family: var(--tm-font-mono);
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid #000000;
  position: relative;
  z-index: 60;
}

.tm-ticker-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tm-ticker-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tm-ticker-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #34d399;
  box-shadow: 0 0 6px #34d399;
  flex-shrink: 0;
}

.tm-ticker-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Polylang / Language Switcher */
.tm-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--tm-font-mono);
}

.tm-lang-switcher li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-block !important;
}

.tm-lang-switcher li a {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.tm-lang-switcher li a:hover {
  color: var(--tm-amber) !important;
}

/* Main Site Header */
.tm-header {
  background-color: var(--tm-paper);
  border-bottom: 2px solid var(--tm-ink);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.2s ease;
}

.tm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

/* Branding */
.tm-branding {
  display: flex;
  align-items: center;
}

.tm-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo, .custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.tm-logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--tm-ink);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tm-font-heading);
  font-weight: 900;
  font-size: 1.125rem;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0px 0px var(--tm-amber);
  flex-shrink: 0;
}

.tm-logo-title {
  font-family: var(--tm-font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--tm-ink);
  line-height: 1.1;
  display: block;
}

.tm-logo-sub {
  font-family: var(--tm-font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--tm-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

/* Desktop Navigation - STRICTLY HIDDEN ON MOBILE/TABLET (< 1024px) */
.tm-nav-desktop {
  display: none !important;
}

@media (min-width: 1024px) {
  .tm-nav-desktop {
    display: flex !important;
    align-items: center;
  }
}

.tm-nav-list,
#primary-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tm-nav-list li,
#primary-menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}

.tm-nav-list li a,
#primary-menu li a {
  font-family: var(--tm-font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--tm-ink);
  text-decoration: none;
  transition: color 0.15s ease;
}

.tm-nav-list li a:hover,
#primary-menu li a:hover {
  color: var(--tm-amber-hover);
  text-decoration: underline;
}

.tm-nav-list li.current-menu-item > a,
#primary-menu li.current-menu-item > a {
  color: var(--tm-crimson);
  font-weight: 800;
}

/* Helpline CTA Button in Navigation */
li.tm-menu-cta-item {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

li.tm-menu-cta-item a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--tm-font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff !important;
  background-color: var(--tm-crimson) !important;
  padding: 0.5rem 1rem !important;
  border: 2px solid #000000 !important;
  box-shadow: 3px 3px 0px 0px #000000 !important;
  transition: all 0.15s ease;
  text-decoration: none !important;
}

li.tm-menu-cta-item a:hover {
  background-color: var(--tm-crimson-hover) !important;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px 0px #000000 !important;
}

/* Mobile Toggle Wrap (< 1024px only) */
.tm-mobile-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .tm-mobile-toggle-wrap {
    display: none !important;
  }
}

/* Mobile Navigation Drawer - STRICTLY HIDDEN BY DEFAULT & NEVER ON DESKTOP */
.tm-mobile-drawer {
  display: none;
  border-top: 2px solid var(--tm-ink);
  background-color: #faf8f5;
  padding: 1.5rem 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tm-mobile-drawer.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .tm-mobile-drawer,
  .tm-mobile-drawer.is-open {
    display: none !important;
  }
}

.tm-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--tm-font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.tm-mobile-nav-list li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tm-mobile-nav-list li a {
  display: block;
  padding: 0.65rem 0.5rem;
  color: var(--tm-ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--tm-border-light);
  transition: color 0.15s ease;
}

.tm-mobile-nav-list li a:hover {
  color: var(--tm-amber-hover);
}

.tm-mobile-nav-list li.tm-menu-cta-item a,
.tm-mobile-nav-list li a.btn-danger {
  display: block !important;
  text-align: center;
  color: #ffffff !important;
  background-color: var(--tm-crimson) !important;
  padding: 0.75rem 1rem !important;
  border: 2px solid #000000 !important;
  box-shadow: 3px 3px 0px 0px #000000 !important;
  margin-top: 0.5rem;
  border-bottom: 2px solid #000000 !important;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.tm-hero {
  padding: 4rem 0 5rem;
  background-color: var(--tm-paper);
  border-bottom: 2px solid var(--tm-ink);
  position: relative;
}

.tm-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}

@media (min-width: 1024px) {
  .tm-hero-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.tm-hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--tm-ink);
}

@media (min-width: 640px) {
  .tm-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .tm-hero-title {
    font-size: 3.5rem;
  }
}

.tm-hero-highlight {
  background-color: var(--tm-amber);
  padding: 0.15rem 0.5rem;
  border: 1.5px solid var(--tm-ink);
  display: inline-block;
}

.tm-hero-desc {
  font-size: 1.125rem;
  color: #3f3f46;
  margin-bottom: 2rem;
  max-width: 42rem;
  line-height: 1.75;
}

/* ==========================================================================
   4. MODULAR UNITS GRID (MOD-01 .. MOD-04)
   ========================================================================== */
.tm-modules-section {
  padding: 4.5rem 0;
  background-color: #f4f1ea;
  border-bottom: 2px solid var(--tm-ink);
}

.tm-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .tm-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tm-modules-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tm-mod-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  height: 100%;
}

.tm-mod-tag {
  font-family: var(--tm-font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: inline-block;
}

.tm-mod-title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.tm-mod-desc {
  font-size: 0.875rem;
  color: #52525b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tm-mod-footer {
  padding-top: 0.75rem;
  border-top: 1px solid var(--tm-border-light);
  font-family: var(--tm-font-mono);
  font-size: 0.6875rem;
  color: #71717a;
  text-transform: uppercase;
}

/* ==========================================================================
   5. THREAT INTEL & CVE BULLETINS
   ========================================================================== */
.tm-threats-section {
  padding: 4.5rem 0;
  background-color: var(--tm-paper);
  border-bottom: 2px solid var(--tm-ink);
}

.tm-threat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 2px solid var(--tm-ink);
  background-color: #ffffff;
  transition: background-color 0.15s ease;
}

.tm-threat-row:hover {
  background-color: #faf5ed;
}

@media (min-width: 768px) {
  .tm-threat-row {
    grid-template-columns: 3fr 7fr 2fr;
    align-items: center;
  }
}

/* ==========================================================================
   6. SECURITY HELPLINE PAGE & INTAKE BOX
   ========================================================================== */
.tm-helpline-section {
  padding: 4.5rem 0;
  background-color: #f4f1ea;
  border-bottom: 2px solid var(--tm-ink);
}

.tm-helpline-box {
  background-color: #ffffff;
  border: 2px solid var(--tm-ink);
  box-shadow: 6px 6px 0px 0px var(--tm-ink);
  padding: 2rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .tm-helpline-box {
    padding: 3rem;
  }
}

.tm-helpline-notice {
  background-color: var(--tm-amber-light);
  border: 2px solid var(--tm-ink);
  padding: 1rem;
  margin-bottom: 1.75rem;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.tm-form-group {
  margin-bottom: 1.25rem;
}

.tm-label {
  display: block;
  font-family: var(--tm-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--tm-ink);
  margin-bottom: 0.35rem;
}

.tm-input,
.tm-select,
.tm-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--tm-ink);
  background-color: #ffffff;
  border: 2px solid var(--tm-ink);
  border-radius: 0;
  outline: none;
  box-shadow: 2px 2px 0px 0px var(--tm-ink);
  transition: all 0.15s ease;
}

.tm-input:focus,
.tm-select:focus,
.tm-textarea:focus {
  background-color: #fafaf9;
  box-shadow: 4px 4px 0px 0px var(--tm-amber);
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.tm-footer {
  background-color: var(--tm-ink);
  color: #a1a1aa;
  font-size: 0.875rem;
  padding: 4rem 0 2rem;
  border-top: 2px solid #000000;
}

.tm-footer h4 {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tm-footer a {
  color: #d4d4d8;
  transition: color 0.15s ease;
}

.tm-footer a:hover {
  color: var(--tm-amber);
  text-decoration: underline;
}

.tm-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #27272a;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .tm-footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* ==========================================================================
   8. NO-JS & TOR SAFEST MODE SAFEGUARDS
   ========================================================================== */
.no-js .tm-js-only,
.no-js #tm-helpline-form,
.no-js .tm-helpline-interactive-wrap {
  display: none !important;
}

.no-js noscript {
  display: block !important;
}

/* ==========================================================================
   9. COMPREHENSIVE UTILITY CLASSES (DEPENDENCY-FREE TAILWIND REPLACEMENT)
   ========================================================================== */
/* Display */
.hidden { display: none !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.inline-flex { display: inline-flex !important; }
.flex { display: flex !important; }
.grid { display: grid !important; }

/* Responsive Visibility */
@media (max-width: 1023px) {
  .lg\:flex { display: none !important; }
  .lg\:block { display: none !important; }
  .lg\:grid { display: none !important; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none !important; }
  .lg\:flex { display: flex !important; }
  .lg\:block { display: block !important; }
  .lg\:grid { display: grid !important; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:text-5xl { font-size: 3rem !important; }
}

@media (max-width: 767px) {
  .md\:flex { display: none !important; }
  .md\:block { display: none !important; }
  .md\:grid { display: none !important; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
  .md\:flex { display: flex !important; }
  .md\:block { display: block !important; }
  .md\:grid { display: grid !important; }
  .md\:flex-row { flex-direction: row !important; }
  .md\:items-center { align-items: center !important; }
  .md\:items-end { align-items: flex-end !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .md\:col-span-3 { grid-column: span 3 / span 3 !important; }
  .md\:col-span-4 { grid-column: span 4 / span 4 !important; }
  .md\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .md\:col-span-8 { grid-column: span 8 / span 8 !important; }
  .md\:pt-0 { padding-top: 0 !important; }
}

@media (max-width: 639px) {
  .sm\:flex { display: none !important; }
  .sm\:block { display: none !important; }
  .sm\:grid { display: none !important; }
}

@media (min-width: 640px) {
  .sm\:hidden { display: none !important; }
  .sm\:flex { display: flex !important; }
  .sm\:block { display: block !important; }
  .sm\:grid { display: grid !important; }
  .sm\:flex-row { flex-direction: row !important; }
  .sm\:items-center { align-items: center !important; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .sm\:p-5 { padding: 1.25rem !important; }
  .sm\:p-7 { padding: 1.75rem !important; }
  .sm\:p-8 { padding: 2rem !important; }
  .sm\:p-10 { padding: 2.5rem !important; }
  .sm\:p-12 { padding: 3rem !important; }
  .sm\:p-14 { padding: 3.5rem !important; }
  .sm\:py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .sm\:text-sm { font-size: 0.875rem !important; }
  .sm\:text-base { font-size: 1rem !important; }
  .sm\:text-lg { font-size: 1.125rem !important; }
  .sm\:text-xl { font-size: 1.25rem !important; }
  .sm\:text-2xl { font-size: 1.5rem !important; }
  .sm\:text-3xl { font-size: 1.875rem !important; }
  .sm\:text-4xl { font-size: 2.25rem !important; }
  .sm\:text-5xl { font-size: 3rem !important; }
  .sm\:text-6xl { font-size: 3.75rem !important; }
}

/* Flexbox utilities */
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-grow { flex-grow: 1 !important; }
.shrink-0 { flex-shrink: 0 !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.items-stretch { align-items: stretch !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }

/* Gap utilities */
.gap-1\.5 { gap: 0.375rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }

/* Space-y utilities */
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem !important; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem !important; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem !important; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem !important; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem !important; }

/* Spacing - Padding & Margin */
.m-0 { margin: 0 !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-12 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-10 { margin-top: 2.5rem !important; }
.mt-12 { margin-top: 3rem !important; }

.p-0 { padding: 0 !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }

.px-1\.5 { padding-left: 0.375rem !important; padding-right: 0.375rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-2\.5 { padding-left: 0.625rem !important; padding-right: 0.625rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }

.py-0\.5 { padding-top: 0.125rem !important; padding-bottom: 0.125rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-3\.5 { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

.pt-0\.5 { padding-top: 0.125rem !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 0.75rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pb-2\.5 { padding-bottom: 0.625rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-10 { padding-bottom: 2.5rem !important; }

/* Sizing & Widths */
.w-full { width: 100% !important; }
.w-6 { width: 1.5rem !important; }
.h-6 { height: 1.5rem !important; }
.max-w-sm { max-width: 24rem !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-4xl { max-width: 56rem !important; }
.max-w-none { max-width: none !important; }

/* Typography */
.font-mono { font-family: var(--tm-font-mono) !important; }
.font-display { font-family: var(--tm-font-heading) !important; }
.font-sans { font-family: var(--tm-font-body) !important; }
.font-normal { font-weight: 400 !important; }
.font-bold { font-weight: 700 !important; }
.font-black { font-weight: 900 !important; }

.text-\[10px\] { font-size: 10px !important; }
.text-\[11px\] { font-size: 11px !important; }
.text-xs { font-size: 0.75rem !important; }
.text-sm { font-size: 0.875rem !important; }
.text-base { font-size: 1rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.text-3xl { font-size: 1.875rem !important; }
.text-4xl { font-size: 2.25rem !important; }

.leading-tight { line-height: 1.25 !important; }
.leading-snug { line-height: 1.375 !important; }
.leading-relaxed { line-height: 1.625 !important; }

.tracking-tight { letter-spacing: -0.025em !important; }
.tracking-wider { letter-spacing: 0.05em !important; }
.tracking-widest { letter-spacing: 0.1em !important; }

.text-center { text-align: center !important; }
.underline { text-decoration: underline !important; }
.uppercase { text-transform: uppercase !important; }
.italic { font-style: italic !important; }
.truncate { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }
.break-all { word-break: break-all !important; }
.select-all { user-select: all !important; }
.list-none { list-style: none !important; }

/* Colors */
.text-white { color: #ffffff !important; }
.text-black { color: #000000 !important; }
.text-amber-200 { color: #fde68a !important; }
.text-amber-300 { color: #fcd34d !important; }
.text-amber-400 { color: #fbbf24 !important; }
.text-amber-600 { color: #d97706 !important; }
.text-rose-600, .text-\[\#e11d48\] { color: #e11d48 !important; }
.text-rose-700 { color: #be123c !important; }
.text-rose-950 { color: #4c0519 !important; }
.text-emerald-700 { color: #047857 !important; }
.text-emerald-800 { color: #065f46 !important; }
.text-emerald-900 { color: #064e3b !important; }
.text-blue-700 { color: #1d4ed8 !important; }
.text-stone-300 { color: #d6d3d1 !important; }
.text-stone-400 { color: #a8a29e !important; }
.text-stone-500 { color: #78716c !important; }
.text-stone-600 { color: #57534e !important; }
.text-stone-700 { color: #44403c !important; }
.text-stone-800 { color: #292524 !important; }
.text-stone-900 { color: #1c1917 !important; }

/* Hover colors */
.hover\:underline:hover { text-decoration: underline !important; }
.hover\:text-white:hover { color: #ffffff !important; }
.hover\:text-amber-300:hover { color: #fcd34d !important; }
.hover\:text-amber-600:hover { color: #d97706 !important; }
.hover\:text-rose-600:hover { color: #e11d48 !important; }
.hover\:text-rose-700:hover { color: #be123c !important; }

/* Backgrounds */
.bg-black { background-color: #000000 !important; }
.bg-white { background-color: #ffffff !important; }
.bg-amber-100 { background-color: #fef3c7 !important; }
.bg-amber-300 { background-color: #fcd34d !important; }
.bg-amber-400 { background-color: #fbbf24 !important; }
.bg-rose-50 { background-color: #fff1f2 !important; }
.bg-rose-600 { background-color: #e11d48 !important; }
.bg-emerald-50 { background-color: #ecfdf5 !important; }
.bg-stone-50 { background-color: #fafaf9 !important; }
.bg-stone-100 { background-color: #f5f5f4 !important; }
.bg-stone-200 { background-color: #e7e5e4 !important; }
.bg-stone-900 { background-color: #1c1917 !important; }
.bg-\[\#faf8f5\] { background-color: #faf8f5 !important; }
.bg-\[\#f4f1ea\] { background-color: #f4f1ea !important; }
.bg-\[\#f4f0e8\] { background-color: #f4f0e8 !important; }
.bg-\[\#18181b\] { background-color: #18181b !important; }

/* Hover backgrounds */
.hover\:bg-black:hover { background-color: #000000 !important; }
.hover\:bg-stone-800:hover { background-color: #27272a !important; }
.hover\:bg-stone-200:hover { background-color: #e7e5e4 !important; }
.hover\:bg-stone-100:hover { background-color: #f5f5f4 !important; }
.hover\:bg-amber-50:hover { background-color: #fffbeb !important; }
.hover\:bg-amber-100:hover { background-color: #fef3c7 !important; }
.hover\:bg-amber-200:hover { background-color: #fde68a !important; }
.hover\:bg-amber-300:hover { background-color: #fcd34d !important; }
.hover\:bg-rose-50:hover { background-color: #fff1f2 !important; }

/* Borders */
.border { border-width: 1px !important; border-style: solid !important; }
.border-2 { border-width: 2px !important; border-style: solid !important; }
.border-t { border-top-width: 1px !important; border-top-style: solid !important; }
.border-t-2 { border-top-width: 2px !important; border-top-style: solid !important; }
.border-b { border-bottom-width: 1px !important; border-bottom-style: solid !important; }
.border-b-2 { border-bottom-width: 2px !important; border-bottom-style: solid !important; }

.border-black { border-color: #000000 !important; }
.border-white { border-color: #ffffff !important; }
.border-amber-500 { border-color: #f59e0b !important; }
.border-rose-300 { border-color: #fca5a5 !important; }
.border-emerald-300 { border-color: #6ee7b7 !important; }
.border-stone-200 { border-color: #e7e5e4 !important; }
.border-stone-300 { border-color: #d6d3d1 !important; }
.border-stone-400 { border-color: #a8a29e !important; }
.border-stone-600 { border-color: #57534e !important; }
.border-stone-700 { border-color: #44403c !important; }
.border-stone-800 { border-color: #292524 !important; }

/* Shadows */
.shadow-\[2px_2px_0px_0px_\#18181b\] { box-shadow: 2px 2px 0px 0px #18181b !important; }
.shadow-\[3px_3px_0px_0px_\#18181b\] { box-shadow: 3px 3px 0px 0px #18181b !important; }
.shadow-\[4px_4px_0px_0px_\#18181b\] { box-shadow: 4px 4px 0px 0px #18181b !important; }

/* Accessibility & Utils */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--tm-amber);
  clip: auto !important;
  clip-path: none;
  color: #000000;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.cursor-not-allowed { cursor: not-allowed !important; }
.opacity-50 { opacity: 0.5 !important; }
.overflow-hidden { overflow: hidden !important; }
.aspect-video { aspect-ratio: 16 / 9 !important; }
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
