/*
 Theme Name:   ENOCH
 Theme URI:    https://enoch.com
 Description:  Professional occupational health association theme matching the ENOCH reference design
 Author:       ENOCH
 Author URI:   https://enoch.com
 Version:      1.0.0
 Text Domain:  enoch
 Requires at least: 6.0
 Requires PHP: 7.4
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 ENOCH WordPress Theme
 Copyright (c) 2024 ENOCH
*/

/* ============================================
   DESIGN TOKENS - CSS VARIABLES
   ============================================ */

:root {
  /* Primary Colors */
  --color-primary: #000000;
  --color-primary-container: #131b2e;
  --color-on-primary: #ffffff;
  --color-on-primary-container: #7c839b;
  --color-on-primary-fixed: #131b2e;
  --color-on-primary-fixed-variant: #3f465c;
  --color-primary-fixed: #dae2fd;
  --color-primary-fixed-dim: #bec6e0;

  /* Secondary Colors */
  --color-secondary: #515f74;
  --color-secondary-fixed: #d5e3fd;
  --color-secondary-fixed-dim: #b9c7e0;
  --color-on-secondary: #ffffff;
  --color-on-secondary-fixed: #0d1c2f;
  --color-on-secondary-fixed-variant: #3a485c;
  --color-on-secondary-container: #57657b;

  /* Tertiary Colors */
  --color-tertiary: #000000;
  --color-tertiary-container: #001d31;
  --color-on-tertiary: #ffffff;
  --color-on-tertiary-container: #188ace;
  --color-on-tertiary-fixed: #001d31;
  --color-on-tertiary-fixed-variant: #004b73;
  --color-tertiary-fixed: #cce5ff;
  --color-tertiary-fixed-dim: #93ccff;

  /* Surface Colors */
  --color-surface: #f7f9fb;
  --color-surface-bright: #f7f9fb;
  --color-surface-container: #eceef0;
  --color-surface-container-high: #e6e8ea;
  --color-surface-container-highest: #e0e3e5;
  --color-surface-container-low: #f2f4f6;
  --color-surface-container-lowest: #ffffff;
  --color-surface-dim: #d8dadc;
  --color-surface-variant: #e0e3e5;
  --color-surface-tint: #565e74;

  /* Background */
  --color-background: #f7f9fb;
  --color-on-background: #191c1e;

  /* Text Colors */
  --color-on-surface: #191c1e;
  --color-on-surface-variant: #45464d;
  --color-inverse-on-surface: #eff1f3;
  --color-inverse-surface: #2d3133;

  /* Border Colors */
  --color-outline: #76777d;
  --color-outline-variant: #c6c6cd;

  /* Error Colors */
  --color-error: #ba1a1a;
  --color-error-container: #ffdad6;
  --color-on-error: #ffffff;
  --color-on-error-container: #93000a;

  /* Inverse Colors */
  --color-inverse-primary: #bec6e0;

  /* Spacing Scale */
  --space-base: 8px;
  --space-xs: 4px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 64px;
  --space-2xl: 80px;
  --space-3xl: 96px;
  --space-container-max: 1280px;
  --space-margin-desktop: 48px;
  --space-margin-mobile: 16px;
  --space-gutter: 24px;

  /* Border Radius */
  --radius-sm: 0.125rem;
  --radius-md: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0px 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0px 1px 3px rgba(15, 23, 42, 0.08), 0px 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0px 4px 6px -1px rgba(15, 23, 42, 0.1), 0px 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0px 4px 12px -2px rgba(15, 23, 42, 0.08), 0px 2px 6px -3px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0px 10px 15px -3px rgba(15, 23, 42, 0.1), 0px 4px 6px -4px rgba(15, 23, 42, 0.05);

  /* Typography */
  --font-display: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.9rem;

  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  --transition-slower: 400ms ease;

  /* Z-Index */
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal-backdrop: 40;
  --z-modal: 50;
  --z-popover: 60;
  --z-tooltip: 70;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-on-surface);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
  background-color: var(--color-tertiary-fixed);
  color: var(--color-on-tertiary-fixed);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--color-on-tertiary-container);
  outline-offset: 2px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md);
  color: var(--color-on-surface);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: var(--tracking-tight);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  margin: 0 0 var(--space-md);
  line-height: var(--leading-relaxed);
}

a {
  color: var(--color-on-tertiary-container);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-on-tertiary-fixed);
}

small {
  font-size: var(--text-sm);
}

strong {
  font-weight: 600;
}

/* ============================================
   LAYOUT
   ============================================ */

.site-container {
  max-width: var(--space-container-max);
  margin: 0 auto;
  padding-left: var(--space-margin-desktop);
  padding-right: var(--space-margin-desktop);
}

@media (max-width: 768px) {
  .site-container {
    padding-left: var(--space-margin-mobile);
    padding-right: var(--space-margin-mobile);
  }
}

.site-main {
  min-height: 60vh;
}

.section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.section-lg {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section-xl {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--color-surface-container-lowest);
  border-bottom: 1px solid var(--color-outline-variant);
  box-shadow: var(--shadow-xs);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-header__logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.site-header__logo:hover {
  color: var(--color-primary);
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-header__nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  color: var(--color-secondary);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-base);
}

.site-header__nav a:hover {
  color: var(--color-primary);
}

.site-header__nav a.active,
.site-header__nav a.current-menu-item {
  color: var(--color-on-tertiary-container);
  border-bottom-color: var(--color-on-tertiary-container);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .site-header__nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

.occuohealth-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-outline-variant);
  border-radius: 8px;
  color: var(--color-on-surface);
  background: var(--color-surface-container-lowest);
  cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.occuohealth-mobile-toggle:hover,
.occuohealth-mobile-toggle:focus-visible,
.occuohealth-mobile-toggle.is-active {
  background: var(--color-surface-container-low);
  border-color: var(--color-outline);
  outline: none;
}

.occuohealth-mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-outline-variant);
  background: var(--color-surface-container-lowest);
  box-shadow: var(--shadow-sm);
}

.occuohealth-mobile-menu.is-open {
  display: flex;
}

.occuohealth-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.occuohealth-mobile-menu__nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
}

.occuohealth-mobile-menu__nav a:hover,
.occuohealth-mobile-menu__nav a:focus-visible,
.occuohealth-mobile-menu__nav a.is-active {
  color: var(--color-on-tertiary-container);
  background: var(--color-tertiary-fixed);
  outline: none;
}

.occuohealth-mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.occuohealth-mobile-menu__secondary,
.occuohealth-mobile-menu__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
}

.occuohealth-mobile-menu__secondary {
  border: 1px solid var(--color-outline);
  color: var(--color-secondary);
  background: var(--color-surface-container-lowest);
}

.occuohealth-mobile-menu__primary {
  border: 1px solid var(--color-primary);
  color: var(--color-on-primary);
  background: var(--color-primary);
}

@media (min-width: 768px) {
  .occuohealth-mobile-toggle,
  .occuohealth-mobile-menu,
  .occuohealth-mobile-menu.is-open {
    display: none;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--color-on-primary);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--color-outline);
  color: var(--color-on-surface);
}

.btn-secondary:hover {
  background-color: var(--color-surface-container-low);
  color: var(--color-on-surface);
}

.btn-tertiary {
  background-color: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  color: var(--color-secondary);
}

.btn-tertiary:hover {
  border-color: var(--color-tertiary-container);
  color: var(--color-on-tertiary-fixed);
}

.btn-lg {
  padding: 16px 32px;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 8px 16px;
  font-size: var(--text-sm);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background-color: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
}

.card:hover {
  border-color: var(--color-tertiary-container);
  box-shadow: var(--shadow-lg);
}

.card-bento {
  background-color: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
}

.card-bento:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--color-surface-container-lowest);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: var(--space-xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 8px 16px;
  background-color: var(--color-secondary-fixed);
  color: var(--color-on-secondary-fixed);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-title .accent {
  color: var(--color-on-tertiary-container);
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--color-on-surface-variant);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-image {
  position: relative;
  height: 500px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.hero-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: var(--color-surface-container-lowest);
  padding: var(--space-md);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  max-width: 280px;
}

.hero-stats-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-tertiary-container);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-on-tertiary);
}

/* ============================================
   NEWS & ARTICLES
   ============================================ */

.news-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-outline-variant);
  transition: all var(--transition-slow);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.news-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  color: white;
}

.news-card-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--color-on-tertiary-container);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

/* ============================================
   BENTO GRID
   ============================================ */

.bento-grid {
  display: grid;
  gap: var(--space-gutter);
  grid-template-columns: repeat(12, 1fr);
}

.bento-8 { grid-column: span 8; }
.bento-6 { grid-column: span 6; }
.bento-4 { grid-column: span 4; }
.bento-3 { grid-column: span 3; }

@media (max-width: 1024px) {
  .bento-8, .bento-6, .bento-4, .bento-3 {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-outline-variant);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-on-tertiary-container);
  opacity: 0.4;
  transition: opacity var(--transition-base);
}

.timeline-item:hover .timeline-year {
  opacity: 1;
}

@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
}

/* ============================================
   DIRECTORS / TEAM
   ============================================ */

.director-card {
  background-color: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.director-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.director-card-image {
  height: 288px;
  overflow: hidden;
}

.director-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.director-card:hover .director-card-image img {
  transform: scale(1.05);
}

.director-card-content {
  padding: var(--space-md);
}

.director-card-role {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-on-tertiary-container);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

/* ============================================
   EVENTS
   ============================================ */

.event-card {
  background-color: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
}

.event-card-image {
  height: 224px;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}

.event-card:hover .event-card-image img {
  transform: scale(1.05);
}

.event-card-content {
  padding: var(--space-lg);
}

.event-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  border-radius: 2px;
}

.event-tag-webinar {
  background-color: var(--color-tertiary-container);
  color: var(--color-on-tertiary);
}

.event-tag-conference {
  background-color: var(--color-secondary-fixed);
  color: var(--color-on-secondary-fixed);
}

.event-tag-workshop {
  background-color: var(--color-primary-fixed);
  color: var(--color-on-primary-fixed);
}

/* ============================================
   FORMS
   ============================================ */

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-background);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-tertiary-container);
  box-shadow: 0 0 0 3px rgba(24, 138, 206, 0.1);
}

.form-input::placeholder {
  color: var(--color-outline);
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-background);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2376777d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-select:focus {
  outline: none;
  border-color: var(--color-tertiary-container);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-on-surface-variant);
  margin-bottom: var(--space-xs);
}

/* ============================================
   LOGIN / JOIN PAGES
   ============================================ */

.auth-page {
  min-height: 72vh;
  background:
    linear-gradient(120deg, rgba(204, 229, 255, 0.32), rgba(247, 249, 251, 0) 42%),
    var(--color-background);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  gap: var(--space-xl);
  align-items: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.auth-shell--wide {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.95fr);
}

.auth-panel h1 {
  max-width: 720px;
  margin-bottom: var(--space-md);
}

.auth-panel p {
  margin-top: 0;
}

.auth-panel--intro p {
  max-width: 620px;
  color: var(--color-on-surface-variant);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.auth-eyebrow {
  display: inline-flex;
  margin-bottom: var(--space-sm);
  color: var(--color-on-tertiary-container);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.auth-highlights {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  max-width: 560px;
}

.auth-highlights div {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 18px;
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.auth-highlights .material-symbols-outlined {
  color: var(--color-on-tertiary-container);
}

.auth-card {
  width: 100%;
  padding: clamp(28px, 4vw, 48px);
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.auth-card h2 {
  margin-bottom: var(--space-sm);
}

.auth-card__copy {
  color: var(--color-on-surface-variant);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.auth-card form p,
.join-form p {
  margin: 0 0 var(--space-sm);
}

.auth-card input[type="text"],
.auth-card input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-background);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.auth-card input[type="text"]:focus,
.auth-card input[type="password"]:focus {
  outline: none;
  border-color: var(--color-tertiary-container);
  box-shadow: 0 0 0 3px rgba(24, 138, 206, 0.1);
}

.auth-card label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-on-surface-variant);
}

.auth-card .login-username label,
.auth-card .login-password label,
.auth-card .login-remember label,
.auth-card .login-username input,
.auth-card .login-password input {
  font-family: var(--font-body);
}

.auth-card .login-username label,
.auth-card .login-password label,
.auth-card .login-remember label {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}

.auth-card .login-username input,
.auth-card .login-password input {
  font-size: 15px;
  line-height: 24px;
}

.auth-card .login-remember label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 500;
}

.auth-card .login-submit {
  margin-bottom: 0;
}

.auth-card .button-primary,
.auth-submit {
  width: 100%;
}

.auth-card .button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-on-primary);
  border: 0;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
}

.auth-meta,
.auth-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.auth-meta {
  color: var(--color-on-surface-variant);
  font-size: var(--text-sm);
}

.auth-meta a {
  color: var(--color-on-tertiary-container);
  font-weight: 600;
}

.join-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}

.join-form textarea.form-input {
  min-height: 112px;
  resize: vertical;
}

@media (max-width: 900px) {
  .auth-shell,
  .auth-shell--wide {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }
}

@media (max-width: 560px) {
  .join-form__grid {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 24px;
  }
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
  background-color: var(--color-primary-container);
  color: var(--color-on-primary);
  padding: var(--space-2xl) 0;
}

.cta-section h2 {
  color: var(--color-on-primary);
}

.cta-section p {
  color: var(--color-on-primary-container);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: var(--color-surface-container-highest);
  border-top: 1px solid var(--color-outline-variant);
  padding: var(--space-xl) 0;
}

.site-footer a {
  color: var(--color-on-secondary-fixed-variant);
  transition: all var(--transition-base);
}

.site-footer a:hover {
  text-decoration: underline;
  color: var(--color-on-tertiary-fixed);
}

.footer-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.footer-nav-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: var(--space-xs);
}

.footer-copyright {
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-outline-variant);
  text-align: center;
  color: var(--color-on-secondary-fixed-variant);
  font-size: var(--text-sm);
  opacity: 0.7;
}

/* ============================================
   ICONS - MATERIAL SYMBOLS
   ============================================ */

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.material-symbols-filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-24 { font-size: 24px; }
.icon-32 { font-size: 32px; }
.icon-40 { font-size: 40px; }
.icon-48 { font-size: 48px; }

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-balance { text-wrap: balance; }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

.text-md {
  font-size: 15px;
  line-height: 24px;
}

.text-display-lg {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
}

.text-display-lg-mobile {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

.text-headline-md,
.font-headline-md {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
}

.text-headline-sm,
.font-headline-sm {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}

.text-body-lg,
.font-body-lg {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 28px;
}

.text-body-md,
.font-body-md {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 24px;
}

.text-body-sm,
.font-body-sm {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
}

.text-label-md,
.font-label-md {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}

.text-label-sm,
.font-label-sm {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-on-tertiary-container); }

.bg-white { background-color: var(--color-surface-container-lowest); }
.bg-surface { background-color: var(--color-surface); }
.bg-dark { background-color: var(--color-primary-container); }

.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.hidden { display: none; }

/* ============================================
   SHARED TEAM MEMBERS
   ============================================ */

.occuo-team-tabs {
  align-items: center;
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 6px;
}

.occuo-team-tab-btn {
  background: transparent;
  border: 0;
  border-radius: var(--radius-full);
  color: var(--color-secondary);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  padding: 12px 28px;
  transition: background-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
}

.occuo-team-tab-btn:hover,
.occuo-team-tab-btn.is-active {
  background: var(--color-primary);
  box-shadow: var(--shadow-sm);
  color: var(--color-on-primary);
}

.occuo-team-tab-content {
  animation: occuoTeamFadeIn 0.3s ease-out;
}

@keyframes occuoTeamFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.occuo-member-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.occuo-member-card {
  align-items: center;
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 20px 24px;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.occuo-member-card:hover {
  border-color: var(--color-on-tertiary-container);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.occuo-member-card__photo-wrap {
  margin-bottom: 14px;
  position: relative;
}

.occuo-member-card__photo {
  background: var(--color-secondary-fixed);
  border: 5px solid var(--color-primary-fixed);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  height: 112px;
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base);
  width: 112px;
}

.occuo-member-card:hover .occuo-member-card__photo {
  border-color: var(--color-on-tertiary-container);
  transform: scale(1.03);
}

.occuo-member-card__photo img,
.occuo-member-card__placeholder {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.occuo-member-card__placeholder {
  align-items: center;
  display: flex;
  justify-content: center;
}

.occuo-member-card__placeholder .material-symbols-outlined {
  color: var(--color-on-secondary-fixed);
  font-size: 44px;
}

.occuo-member-card__badge {
  align-items: center;
  background: var(--color-on-tertiary-container);
  border: 3px solid var(--color-surface-container-lowest);
  border-radius: var(--radius-full);
  bottom: 0;
  box-shadow: var(--shadow-sm);
  color: var(--color-on-primary);
  display: flex;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: -2px;
  width: 28px;
}

.occuo-member-card__badge .material-symbols-outlined {
  font-size: 18px;
  font-variation-settings: 'FILL' 1;
}

.occuo-member-card h3 {
  color: var(--color-on-surface);
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.occuo-member-card__role {
  background: var(--color-tertiary-fixed);
  border-radius: var(--radius-full);
  color: var(--color-on-tertiary);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  padding: 4px 12px;
}

@media (max-width: 1024px) {
  .occuo-member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .occuo-team-tabs {
    border-radius: var(--radius-xl);
    width: 100%;
  }

  .occuo-team-tab-btn {
    flex: 1 1 auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .occuo-member-grid {
    grid-template-columns: 1fr;
  }

  .occuo-member-card h3 {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */

.alignwide {
  max-width: var(--space-container-max);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   ARTICLE SINGLE
   ============================================ */

.article-single__hero {
  background: var(--color-surface-container-low);
  border-bottom: 1px solid var(--color-outline-variant);
  padding: var(--space-xl) 0;
}

.article-single__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: var(--space-xl);
  align-items: center;
}

.article-single__hero-grid--text-only {
  grid-template-columns: minmax(0, 900px);
}

.article-single__intro {
  max-width: 780px;
}

.article-single__eyebrow-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.article-single__back-link,
.article-single__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.article-single__back-link {
  color: var(--color-secondary);
  font-size: var(--text-sm);
  font-weight: 600;
  min-height: 32px;
}

.article-single__back-link .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}

.article-single__badge {
  background: var(--color-tertiary-fixed);
  border-radius: var(--radius-full);
  color: var(--color-on-tertiary-fixed);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  line-height: 20px;
  min-height: 32px;
  padding: 6px 16px;
  text-transform: uppercase;
}

.article-single__title {
  font-size: var(--text-6xl);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  max-width: 900px;
}

.article-single__dek {
  color: var(--color-on-surface-variant);
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 var(--space-md);
  max-width: 760px;
}

.article-single__meta {
  color: var(--color-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 15px;
  font-weight: 600;
}

.article-single__meta-item {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.article-single__meta .material-symbols-outlined {
  color: var(--color-on-tertiary-fixed-variant);
  font-size: 18px;
}

.article-single__featured-image {
  aspect-ratio: 4 / 3;
  background: var(--color-surface-container-high);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: 0;
  overflow: hidden;
}

.article-single__featured-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-single__body-section {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.article-single__layout {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: minmax(0, 2fr) minmax(280px, 360px);
  align-items: start;
}

.article-single__main {
  min-width: 0;
}

.article-single__content {
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  color: var(--color-on-surface-variant);
  font-size: 18px;
  line-height: 30px;
  padding: clamp(24px, 5vw, 56px);
}

.article-single__content > *:first-child {
  margin-top: 0;
}

.article-single__content > *:last-child {
  margin-bottom: 0;
}

.article-single__content p,
.article-single__content ul,
.article-single__content ol,
.article-single__content blockquote,
.article-single__content .wp-block-image {
  margin-bottom: 1.5em;
}

.article-single__content h2,
.article-single__content h3,
.article-single__content h4 {
  color: var(--color-on-surface);
  margin-top: 1.7em;
  margin-bottom: 0.65em;
}

.article-single__content h2 {
  font-size: var(--text-3xl);
}

.article-single__content h3 {
  font-size: var(--text-2xl);
}

.article-single__content a {
  color: var(--color-on-tertiary-fixed-variant);
  font-weight: 600;
}

.article-single__content ul,
.article-single__content ol {
  padding-left: 1.4em;
}

.article-single__content li {
  margin-bottom: 0.65em;
}

.article-single__content blockquote {
  border-left: 4px solid var(--color-on-tertiary-container);
  color: var(--color-on-surface);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  margin-left: 0;
  padding: 8px 0 8px var(--space-md);
}

.article-single__content img {
  border-radius: var(--radius-lg);
}

.article-single__sidebar {
  display: grid;
  gap: var(--space-md);
  position: sticky;
  top: 104px;
}

.article-single__panel {
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md);
}

.article-single__panel h2 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.article-single__panel dl {
  margin: 0;
}

.article-single__panel dl div {
  border-bottom: 1px solid var(--color-outline-variant);
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.article-single__panel dl div:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.article-single__panel dt {
  color: var(--color-outline);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.article-single__panel dd {
  color: var(--color-on-surface);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.article-single__panel a {
  color: inherit;
  text-decoration: none;
}

.article-single__related-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-single__related-list li {
  border-bottom: 1px solid var(--color-outline-variant);
}

.article-single__related-list li:last-child {
  border-bottom: 0;
}

.article-single__related-list a {
  align-items: flex-start;
  display: flex;
  font-size: 16px;
  gap: 10px;
  padding: 14px 0;
}

.article-single__related-list .material-symbols-outlined {
  color: var(--color-on-tertiary-fixed-variant);
  font-size: 18px;
  margin-top: 2px;
}

.article-single__post-nav {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: var(--space-md);
}

.article-single__nav-item a {
  align-items: center;
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  color: var(--color-on-surface);
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 10px;
  min-height: 72px;
  padding: 16px;
  text-decoration: none;
}

.article-single__nav-item--next a {
  justify-content: flex-end;
  text-align: right;
}

.article-single__page-links {
  border-top: 1px solid var(--color-outline-variant);
  color: var(--color-secondary);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
}

@media (max-width: 1024px) {
  .article-single__hero-grid,
  .article-single__layout {
    grid-template-columns: 1fr;
  }

  .article-single__sidebar {
    position: static;
  }

  .article-single__title {
    font-size: var(--text-5xl);
  }
}

@media (max-width: 640px) {
  .article-single__hero,
  .article-single__body-section {
    padding: var(--space-lg) 0;
  }

  .article-single__title {
    font-size: var(--text-4xl);
  }

  .article-single__post-nav {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ARTICLE ARCHIVE
   ============================================ */

.article-archive__hero {
  background: var(--color-surface-container-low);
  border-bottom: 1px solid var(--color-outline-variant);
  padding: var(--space-xl) 0;
}

.article-archive__hero-inner {
  max-width: 860px;
}

.article-archive__eyebrow-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.article-archive__back-link {
  align-items: center;
  color: var(--color-secondary);
  display: inline-flex;
  font-size: var(--text-sm);
  font-weight: 600;
  gap: 8px;
  min-height: 32px;
  text-decoration: none;
}

.article-archive__back-link .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}

.article-archive__eyebrow {
  background: var(--color-tertiary-fixed);
  border-radius: var(--radius-full);
  color: var(--color-on-tertiary-fixed);
  display: inline-flex;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  line-height: 20px;
  min-height: 32px;
  padding: 6px 16px;
  text-transform: uppercase;
}

.article-archive__hero h1 {
  font-size: var(--text-6xl);
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.article-archive__description {
  color: var(--color-on-surface-variant);
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 var(--space-md);
  max-width: 760px;
}

.article-archive__description p {
  margin: 0;
}

.article-archive__meta {
  align-items: center;
  color: var(--color-secondary);
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  gap: 8px;
}

.article-archive__meta .material-symbols-outlined {
  color: var(--color-on-tertiary-fixed-variant);
  font-size: 18px;
}

.article-archive__section {
  padding: var(--space-xl) 0 var(--space-2xl);
}

.article-archive__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-archive__card {
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  min-width: 0;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.article-archive__card:hover {
  border-color: var(--color-on-tertiary-fixed-variant);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.article-archive__card-link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.article-archive__thumb {
  aspect-ratio: 16 / 10;
  background: var(--color-surface-container-high);
  margin: 0;
  overflow: hidden;
}

.article-archive__thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
  width: 100%;
}

.article-archive__card:hover .article-archive__thumb img {
  transform: scale(1.04);
}

.article-archive__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: var(--space-md);
}

.article-archive__card-meta {
  color: var(--color-secondary);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--text-sm);
  font-weight: 600;
  gap: 8px 16px;
  margin-bottom: 14px;
}

.article-archive__card h2 {
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  margin-bottom: 12px;
}

.article-archive__card p {
  color: var(--color-on-surface-variant);
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 var(--space-md);
}

.article-archive__read-more {
  align-items: center;
  color: var(--color-on-tertiary-fixed-variant);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  margin-top: auto;
}

.article-archive__read-more .material-symbols-outlined {
  font-size: 18px;
  transition: transform var(--transition-base);
}

.article-archive__card:hover .article-archive__read-more .material-symbols-outlined {
  transform: translateX(3px);
}

.article-archive__pagination {
  margin-top: var(--space-xl);
}

.article-archive__pagination .nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.article-archive__pagination .page-numbers {
  align-items: center;
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  color: var(--color-on-surface);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 14px;
  text-decoration: none;
}

.article-archive__pagination .page-numbers.current,
.article-archive__pagination a.page-numbers:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-on-primary);
}

.article-archive__pagination .material-symbols-outlined {
  font-size: 18px;
}

.article-archive__empty {
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg);
}

.article-archive__empty h2 {
  font-size: var(--text-2xl);
  margin-bottom: 8px;
}

.article-archive__empty p {
  color: var(--color-on-surface-variant);
  margin: 0;
}

@media (max-width: 1024px) {
  .article-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-archive__hero h1 {
    font-size: var(--text-5xl);
  }
}

@media (max-width: 640px) {
  .article-archive__hero,
  .article-archive__section {
    padding: var(--space-lg) 0;
  }

  .article-archive__grid {
    grid-template-columns: 1fr;
  }

  .article-archive__hero h1 {
    font-size: var(--text-4xl);
  }
}

.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;
  width: 1px;
  word-wrap: normal !important;
}

/* ============================================
   BRICKS BUILDER OVERRIDES
   ============================================ */

.brxe-section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.brxe-container {
  max-width: var(--space-container-max);
  padding-left: var(--space-margin-desktop);
  padding-right: var(--space-margin-desktop);
}

@media (max-width: 768px) {
  .brxe-container {
    padding-left: var(--space-margin-mobile);
    padding-right: var(--space-margin-mobile);
  }
}

.brxe-heading h1,
.brxe-heading h2,
.brxe-heading h3,
.brxe-heading h4 {
  font-family: var(--font-display) !important;
}

.brxe-text {
  font-family: var(--font-body) !important;
}

.brxe-button a,
.brxe-button button {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-lg) !important;
}

/* Image hover effects */
.brxe-image img {
  transition: transform var(--transition-slower) !important;
}

.brxe-image:hover img {
  transform: scale(1.05);
}

/* Div hover effects */
.brxe-div:hover {
  border-color: var(--color-tertiary-container) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-scale-in {
  animation: scaleIn 0.4s ease forwards;
}

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0ms; }
.stagger-children > *:nth-child(2) { animation-delay: 100ms; }
.stagger-children > *:nth-child(3) { animation-delay: 200ms; }
.stagger-children > *:nth-child(4) { animation-delay: 300ms; }
.stagger-children > *:nth-child(5) { animation-delay: 400ms; }
.stagger-children > *:nth-child(6) { animation-delay: 500ms; }

/* ============================================
   TAILWIND-LIKE UTILITY CLASSES
   ============================================ */

/* Layout */
.w-full { width: 100%; }
.h-full { height: 100%; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Flexbox */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.-space-x-2 { margin-left: -0.5rem; }
.-space-x-2 > * { margin-left: 0.5rem; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* Sizing */
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-auto { width: auto; }
.max-w-\[1280px\] { max-width: 1280px; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-sm { max-width: 24rem; }
.max-w-xs { max-width: 20rem; }
.min-h-\[600px\] { min-height: 600px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[280px\] { min-height: 280px; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-\[400px\] { height: 400px; }
.h-\[480px\] { height: 480px; }
.h-\[500px\] { height: 500px; }
.h-auto { height: auto; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pt-1 { padding-top: 0.25rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-12 { padding-left: 3rem; }
.pl-16 { padding-left: 4rem; }
.pr-4 { padding-right: 1rem; }
.pr-8 { padding-right: 2rem; }
.m-0 { margin: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.-translate-y-1\/2 { transform: translateY(-50%); }
.-translate-y-full { transform: translateY(-100%); }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }
.text-\[12px\] { font-size: 12px; }
.text-\[14px\] { font-size: 14px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[32px\] { font-size: 32px; }
.text-\[40px\] { font-size: 40px; }
.text-\[64px\] { font-size: 64px; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.15em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-balance { text-wrap: balance; }
.underline { text-decoration: underline; }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Colors */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-current { color: currentColor; }
.text-\[\#000\] { color: #000; }
.text-\[\#188ace\] { color: #188ace; }
.text-\[\#45464d\] { color: #45464d; }
.text-\[\#515f74\] { color: #515f74; }
.text-\[\#76777d\] { color: #76777d; }
.text-\[\#bec6e0\] { color: #bec6e0; }
.text-\[\#001d31\] { color: #001d31; }
.text-\[\#004b73\] { color: #004b73; }
.text-\[\#0d1c2f\] { color: #0d1c2f; }
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }
.bg-\[\#000\] { background-color: #000; }
.bg-\[\#131b2e\] { background-color: #131b2e; }
.bg-\[\#188ace\] { background-color: #188ace; }
.bg-\[\#001d31\] { background-color: #001d31; }
.bg-\[\#cce5ff\] { background-color: #cce5ff; }
.bg-\[\#d5e3fd\] { background-color: #d5e3fd; }
.bg-\[\#dae2fd\] { background-color: #dae2fd; }
.bg-\[\#e0e3e5\] { background-color: #e0e3e5; }
.bg-\[\#e6e8ea\] { background-color: #e6e8ea; }
.bg-\[\#f2f4f6\] { background-color: #f2f4f6; }
.bg-\[\#f7f9fb\] { background-color: #f7f9fb; }
.bg-\[\#7c839b\] { background-color: #7c839b; }
.bg-\[\#bec6e0\] { background-color: #bec6e0; }
.bg-\[\#515f74\] { background-color: #515f74; }
.bg-\[\#3a485c\] { background-color: #3a485c; }
.bg-\[\#57657b\] { background-color: #57657b; }
.border-white { border-color: #ffffff; }
.border-black { border-color: #000000; }
.border-\[\#000\] { border-color: #000; }
.border-\[\#188ace\] { border-color: #188ace; }
.border-\[\#c6c6cd\] { border-color: #c6c6cd; }
.border-\[\#76777d\] { border-color: #76777d; }
.border-\[\#001d31\] { border-color: #001d31; }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-t-xl { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; }
.rounded-b-xl { border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* Effects */
.opacity-40 { opacity: 0.4; }
.opacity-70 { opacity: 0.7; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.blur { filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur { backdrop-filter: blur(8px); }
.mix-blend-overlay { mix-blend-mode: overlay; }

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Transforms */
.scale-105 { transform: scale(1.05); }
.scale-\[0\.98\] { transform: scale(0.98); }
.translate-x-4 { transform: translateX(1rem); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-visible { overflow: visible; }
.overflow-y-auto { overflow-y: auto; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Other */
.aspect-ratio-3\/4 { aspect-ratio: 3/4; }
.border-box { box-sizing: border-box; }
.content-center { align-content: center; }
.self-center { align-self: center; }
.shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.flex-shrink { flex-shrink: 1; }
.basis-full { flex-basis: 100%; }
.inset-y-0 { top: 0; bottom: 0; }
.overflow-clip { overflow: clip; }
.select-none { user-select: none; }
.select-text { user-select: text; }
.resize { resize: both; }
.origin-center { transform-origin: center; }

/* Group Hover */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-\[\#188ace\] { color: #188ace; }
.group:hover .group-hover\:text-\[\#001d31\] { color: #001d31; }
.group:hover .group-hover\:text-black { color: #000000; }

/* Line clamp on group hover */
.group:hover .group-hover\:line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive variants */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-left { text-align: left; }
  .sm\:justify-start { justify-content: flex-start; }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:col-span-3 { grid-column: span 3; }
  .md\:col-span-4 { grid-column: span 4; }
  .md\:col-span-8 { grid-column: span 8; }
  .md\:col-span-9 { grid-column: span 9; }
  .md\:col-span-12 { grid-column: span 12; }
  .md\:row-span-2 { grid-row: span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:items-start { align-items: flex-start; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-center { justify-content: center; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:py-0 { padding-top: 0; padding-bottom: 0; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:px-0 { padding-left: 0; padding-right: 0; }
  .md\:gap-0 { gap: 0; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:h-auto { height: auto; }
  .md\:w-72 { width: 18rem; }
  .md\:w-auto { width: auto; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.9rem; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:hidden { display: none; }
  .lg\:col-span-4 { grid-column: span 4; }
  .lg\:col-span-8 { grid-column: span 8; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:w-auto { width: auto; }
  .lg\:h-auto { height: auto; }
  .lg\:text-3xl { font-size: 1.875rem; }
}

@media (min-width: 1280px) {
  .xl\:block { display: block; }
  .xl\:flex { display: flex; }
  .xl\:hidden { display: none; }
  .xl\:w-auto { width: auto; }
}

/* Gradient backgrounds */
.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}
.from-\[\#e0e3e5\] {
  --tw-gradient-from: #e0e3e5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}
.to-transparent {
  --tw-gradient-to: transparent;
}

/* OHMA Specific Classes */
.ohma-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f7f9fb;
  color: #191c1e;
}

.ohma-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.ohma-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #fff;
  border-bottom: 1px solid #c6c6cd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ohma-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.ohma-logo {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.ohma-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.ohma-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #515f74;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.ohma-nav a:hover {
  color: #000;
}

.ohma-nav a.active,
.ohma-nav a.current {
  color: #188ace;
  border-bottom-color: #188ace;
}

.ohma-header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ohma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.ohma-btn-primary {
  background-color: #000;
  color: #fff;
}

.ohma-btn-primary:hover {
  opacity: 0.9;
}

.ohma-btn-outline {
  background-color: transparent;
  border: 1px solid #76777d;
  color: #515f74;
}

.ohma-btn-outline:hover {
  background-color: #f2f4f6;
}

.ohma-btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid #c6c6cd;
  color: #515f74;
  background: transparent;
}

.ohma-btn-secondary-outline:hover {
  border-color: #000;
  color: #000;
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
}

.skip-link:focus {
  display: block;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  padding: 16px 24px;
  background: #000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
}

/* ============================================
   CTA SECTION
   ============================================ */

.ohma-cta-section {
  background-color: #131b2e;
  color: #fff;
  padding: 80px 0;
}

.ohma-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .ohma-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
}

.ohma-cta-content {
  flex: 1;
}

.ohma-cta-content h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.ohma-cta-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #bec6e0;
  max-width: 32rem;
}

.ohma-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ohma-cta-buttons {
    flex-direction: row;
  }
}

.ohma-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  background-color: #fff;
  color: #000;
}

.ohma-btn-light:hover {
  opacity: 0.9;
}

.ohma-btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #76777d;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  background-color: transparent;
}

.ohma-btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */

.ohma-footer {
  background-color: #e6e8ea;
  border-top: 1px solid #c6c6cd;
  padding: 4rem 0;
}

.ohma-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .ohma-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.ohma-footer-brand {
  max-width: 24rem;
}

.ohma-footer-logo {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  display: block;
  margin-bottom: 1rem;
}

.ohma-footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #3a485c;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.ohma-footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #3a485c;
  opacity: 0.7;
  margin-top: 1rem;
}

.ohma-footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ohma-footer-nav-col {}

.ohma-footer-nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000;
  margin-bottom: 1rem;
}

.ohma-footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ohma-footer-nav-col li {
  margin-bottom: 0.75rem;
}

.ohma-footer-nav-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #3a485c;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ohma-footer-nav-col a:hover {
  text-decoration: underline;
  color: #001d31;
}

/* ============================================
   SITE MAIN
   ============================================ */

.site-main {
  min-height: 60vh;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.ohma-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.ohma-section-lg {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.ohma-section-xl {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/* ============================================
   CARD STYLES
   ============================================ */

.ohma-card {
  background: #fff;
  border: 1px solid #c6c6cd;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0px 4px 6px -1px rgba(15, 23, 42, 0.1), 0px 2px 4px -2px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.ohma-card:hover {
  border-color: #001d31;
}

.ohma-card-icon {
  font-size: 40px;
  color: #188ace;
  margin-bottom: 1.5rem;
}

.ohma-card-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.ohma-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #45464d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ohma-card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #004b73;
  text-decoration: none;
}

.ohma-card-link:hover {
  text-decoration: underline;
}

/* ============================================
   NEWS SECTION
   ============================================ */

.ohma-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ohma-news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ohma-news-featured {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  grid-column: span 2;
  grid-row: span 2;
  border: 1px solid #c6c6cd;
}

.ohma-news-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ohma-news-featured:hover img {
  transform: scale(1.05);
}

.ohma-news-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
}

.ohma-news-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #188ace;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 1rem;
  width: fit-content;
}

.ohma-news-card {
  background: #fff;
  border: 1px solid #c6c6cd;
  border-radius: 12px;
  padding: 2rem;
  transition: background-color 0.3s ease;
}

.ohma-news-card:hover {
  background-color: #f2f4f6;
}

.ohma-news-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #004b73;
  margin-bottom: 0.75rem;
}

.ohma-news-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000;
}

.ohma-news-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #45464d;
  line-height: 1.5;
}

.ohma-news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #c6c6cd;
}

.ohma-news-date {
  font-size: 0.75rem;
  color: #76777d;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.ohma-section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .ohma-section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.ohma-section-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.ohma-section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #45464d;
  margin-top: 0.5rem;
}

.ohma-section-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.ohma-section-link:hover {
  border-bottom-color: #000;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.ohma-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ohma-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ohma-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .ohma-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ohma-grid-2,
  .ohma-grid-3,
  .ohma-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.ohma-hero {
  background: #fff;
  min-height: 600px;
  overflow: hidden;
}

.ohma-hero-inner {
  display: flex;
  flex-direction: column;
  padding: 4rem 0;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .ohma-hero-inner {
    flex-direction: row;
    align-items: center;
    padding: 6rem 0;
  }
}

.ohma-hero-content {
  flex: 1;
  z-index: 10;
}

.ohma-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  background: #d5e3fd;
  color: #0d1c2f;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.ohma-hero-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #000;
}

@media (min-width: 768px) {
  .ohma-hero-title {
    font-size: 4rem;
  }
}

.ohma-hero-title .accent {
  color: #188ace;
}

.ohma-hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #45464d;
  max-width: 32rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.ohma-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ohma-hero-visual {
  flex: 1;
  position: relative;
}

.ohma-hero-image {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ohma-hero-image {
    height: 500px;
  }
}

.ohma-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
}

.ohma-hero-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #c6c6cd;
  box-shadow: 0px 4px 6px -1px rgba(15, 23, 42, 0.1), 0px 2px 4px -2px rgba(15, 23, 42, 0.05);
  max-width: 280px;
  z-index: 20;
}

@media (min-width: 1024px) {
  .ohma-hero-stats {
    bottom: -24px;
    left: -24px;
  }
}

.ohma-hero-stats-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ohma-hero-stats-icon {
  width: 48px;
  height: 48px;
  background: #001d31;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ohma-hero-stats-number {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}

.ohma-hero-stats-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #45464d;
}
