/* ===================================================================
   Flagship Kansas Tech Member Hub — Layout & Component Styles
   ===================================================================

   Styling system using brand colors from
   flagship-utilities.css. This file handles layout, typography,
   components, and responsive behavior. Don't Judge.
*/

/* ===================================================================
   BASE & TYPOGRAPHY
   =================================================================== */

:root {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  min-width: 1180px;
  background: var(--bg-page);
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink-900);
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

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

a {
  color: var(--flag-blue);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--flag-cyan);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

.container {
  width: min(1280px, 100% - 3rem);
  margin-inline: auto;
}

/* Disabled responsive behavior - desktop only (1180px+) */

/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */

.app-header {
  background: var(--white);
  border-bottom: 1px solid var(--ink-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.app-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  gap: var(--space-xl);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--flag-blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.app-brand:hover {
  opacity: 0.85;
}

.app-brand__logo {
  height: 75px;
  width: auto;
  display: block;
  margin: 0rem;
}

.app-brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.app-brand__name {
  font-size: 1.70rem;
  font-weight: 700;
  color: var(--flag-blue);
  letter-spacing: -0.01em;
  margin-left: 2rem;
}

.app-brand__tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.app-nav__link {
  position: relative;
  color: var(--ink-600);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.app-nav__link:hover {
  color: var(--flag-blue);
  background: var(--ink-50);
}

.app-nav__link--active {
  color: var(--flag-blue);
  background: rgba(0, 76, 218, 0.08);
}

.app-nav__link--active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 24px;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--flag-blue), var(--flag-cyan));
}

.app-nav__logout {
  margin-left: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--flag-blue);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-blue);
}

.app-nav__logout:hover {
  background: var(--flag-blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* User Dropdown */
.user-dropdown {
  position: relative;
  margin-left: auto;
}

.user-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid var(--ink-200);
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--ink-700);
}

.user-dropdown__trigger:hover {
  background: var(--ink-50);
  border-color: var(--flag-blue);
}

.user-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--flag-blue), var(--flag-cyan));
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  letter-spacing: 0.5px;
}

.user-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 220px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.user-dropdown__menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  background: none;
  border: none;
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}

.user-dropdown__item:hover {
  background: var(--ink-50);
  color: var(--flag-blue);
}

.user-dropdown__item--danger {
  color: #dc2626;
}

.user-dropdown__item--danger:hover {
  background: #fef2f2;
  color: #991b1b;
}

.user-dropdown__divider {
  height: 1px;
  background: var(--ink-200);
  margin: 0.25rem 0;
}

/* Notifications Button */
.notifications-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--ink-200);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  margin-left: 1rem;
}

.notifications-trigger:hover {
  background: var(--ink-50);
  border-color: var(--flag-blue);
}

.notifications-trigger svg {
  color: var(--ink-700);
}

.notifications-badge {
  position: absolute;
  top: -4px;
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.notifications-badge--messages {
  right: -4px;
  background: linear-gradient(135deg, #ff4757, #ff6348);
}

.notifications-badge--reminders {
  right: 12px;
  background: linear-gradient(135deg, var(--flag-cyan), var(--flag-blue));
}

/* Notifications Overlay */
.notifications-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notifications-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* Notifications Panel */
.notifications-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.notifications-panel--open {
  transform: translateX(0);
}

.notifications-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 2px solid var(--ink-200);
  flex-shrink: 0;
}

.notifications-panel__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--flag-blue);
  margin: 0;
}

.notifications-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--ink-600);
}

.notifications-panel__close:hover {
  background: var(--ink-100);
  color: var(--ink-900);
}

.notifications-panel__content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.notifications-panel__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--ink-400);
  text-align: center;
}

.notifications-panel__empty svg {
  margin-bottom: 1rem;
  opacity: 0.5;
}

.notifications-panel__empty p {
  font-size: 0.9375rem;
  color: var(--ink-500);
}

/* Notification Item */
.notification-item {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  display: flex;
  gap: 0.75rem;
}

.notification-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: var(--flag-cyan);
}

.notification-item:last-child {
  margin-bottom: 0;
}

.notification-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--flag-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.notification-item__content {
  flex: 1;
  min-width: 0;
}

.notification-item__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-900);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.notification-item__description {
  font-size: 0.875rem;
  color: var(--ink-600);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.notification-item__meta {
  font-size: 0.75rem;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.notification-item__action {
  flex-shrink: 0;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  background: var(--flag-cyan);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.notification-item__action:hover {
  background: #00A5C3;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 197, 236, 0.3);
}


/* ===================================================================
   MAIN CONTENT AREA
   =================================================================== */

.app-main {
  padding: 1rem 4rem;
  min-height: calc(100vh - 180px);
}


/* ===================================================================
   CARDS & SECTIONS
   =================================================================== */

.card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

.card--elevated:hover {
  box-shadow: var(--shadow-xl);
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink-100);
}

.card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0;
}

.card__subtitle {
  font-size: 0.9375rem;
  color: var(--ink-500);
  margin-top: var(--space-xs);
}

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

/* ===================================================================
   GRIDS & LAYOUTS
   =================================================================== */

.grid {
  display: grid;
  gap: 1.5rem;
  margin: 1rem 0;
}

.grid--sm {
  gap: 1rem;
}

.grid--lg {
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}


.flex {
  display: flex;
  gap: 1rem;
}

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

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--wrap {
  flex-wrap: wrap;
}

/* ===================================================================
   FORMS & INPUTS
   =================================================================== */

.form-group {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

label {
  display: grid;
  gap: 0.5rem;
}

label > span {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-700);
  margin-bottom: 0.25rem;
}

input,
select,
textarea,
.form-control {
  width: 100%;
  border: 2.5px solid var(--ink-400);
  background: var(--white);
  color: var(--ink-900);
  border-radius: 0.5rem;
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  line-height: 1.5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--ink-600);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
  outline: none;
  border-color: var(--flag-blue);
  box-shadow: 0 0 0 4px rgba(0, 76, 218, 0.2), 0 3px 8px rgba(0, 76, 218, 0.15), inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

input[type="checkbox"] {
  width: auto;
  cursor: pointer;
  accent-color: var(--flag-blue);
  width: 1.125rem;
  height: 1.125rem;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  appearance: none;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  font-size: 0.875rem;
  color: var(--ink-500);
  margin-top: var(--space-xs);
}

.form-error {
  font-size: 0.875rem;
  color: var(--error);
  margin-top: var(--space-xs);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: var(--white);
  background: var(--flag-blue);
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: var(--shadow-blue);
  white-space: nowrap;
}

.btn:hover {
  background: var(--flag-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.0625rem;
  border-radius: 0.5rem;
}

.btn--accent {
  background: var(--flag-cyan);
  color: #002244;
  box-shadow: var(--shadow-cyan);
}

.btn--accent:hover {
  background: #00A5C3;
  color: #002244;
}

.btn--gold {
  background: var(--flag-gold);
  color: #1a1200;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: #E5A900;
  color: #1a1200;
}

.btn--outline {
  background: transparent;
  color: var(--flag-blue);
  border: 2px solid var(--flag-blue);
  box-shadow: none;
  padding: calc(0.75rem - 1px) calc(1.5rem - 1px);
}

.btn--outline:hover {
  background: var(--flag-blue);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--flag-blue);
  border: 1px solid transparent;
  box-shadow: none;
  padding: calc(0.75rem - 0.5px) calc(1.5rem - 0.5px);
}

.btn--ghost:hover {
  background: rgba(0, 76, 218, 0.05);
  color: var(--flag-blue);
}

.btn--danger {
  background: var(--error);
  box-shadow: 0 4px 14px 0 rgba(239, 68, 68, 0.15);
}

.btn--danger:hover {
  background: #dc2626;
}

.btn--success {
  background: var(--success);
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.15);
}

.btn--success:hover {
  background: #059669;
}

.btn--gradient {
  background: linear-gradient(135deg, var(--flag-blue) 0%, var(--flag-cyan) 100%);
  box-shadow: 0 4px 14px 0 rgba(0, 76, 218, 0.25);
  position: relative;
  overflow: hidden;
}

.btn--gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--flag-cyan) 0%, var(--flag-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--gradient:hover::before {
  opacity: 1;
}

.btn--gradient:hover {
  box-shadow: 0 6px 20px 0 rgba(0, 197, 236, 0.35);
  transform: translateY(-2px);
}

.btn--gradient svg,
.btn--gradient span {
  position: relative;
  z-index: 1;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===================================================================
   COMPANY LOGO PLACEHOLDER
   =================================================================== */

.company-logo-placeholder {
  padding: 2rem;
  border: 2px dashed var(--ink-300);
  border-radius: var(--radius-md);
  background: var(--ink-50);
  transition: all 0.2s ease;
  cursor: pointer;
}

.company-logo-placeholder:hover {
  border-color: var(--flag-blue);
  background: var(--ink-100);
}

.company-logo-placeholder svg {
  color: var(--ink-400);
  margin: 0 auto 0.5rem;
}

/* ===================================================================
   MEMBERSHIP CARD
   =================================================================== */

.dashboard-membership-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, #004cd8 0%, #00c5ec 100%);
  border: none;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 76, 218, 0.22);
}

.dashboard-membership-card::before,
.dashboard-membership-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.dashboard-membership-card::before {
  top: -40%;
  right: -25%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.dashboard-membership-card::after {
  bottom: -60%;
  left: -40%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 206, 84, 0.22) 0%, transparent 72%);
}

.dashboard-membership-card__seal {
  position: absolute;
  top: -42px;
  right: -42px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 55%, transparent 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dashboardRotateSeal 120s linear infinite;
  z-index: 0;
}

.dashboard-membership-card__seal::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.28);
}

.dashboard-membership-card__seal svg {
  width: 108px;
  height: 108px;
  opacity: 0.22;
  filter: brightness(0) invert(1);
  transform-origin: center;
  animation: dashboardCounterRotateSeal 120s linear infinite;
}

.dashboard-membership-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.dashboard-membership-card__logo {
  width: 94px;
  height: 94px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  flex-shrink: 0;
}

.dashboard-membership-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dashboard-membership-card__logo-placeholder {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--flag-blue);
  letter-spacing: 0.05em;
}

.dashboard-membership-card__heading {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dashboard-membership-card__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-membership-card__heading h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: white;
}

.dashboard-membership-card .membership-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.dashboard-membership-card .membership-status-pill__text {
  line-height: 1;
}

.dashboard-membership-card__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.dashboard-membership-card__details > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dashboard-membership-card .tiny-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.dashboard-membership-card__details p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: white;
}

.no-sponsorships-placeholder {
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 206, 84, 0.08), rgba(244, 185, 66, 0.12));
  border-radius: 16px;
  border: 1px dashed rgba(244, 185, 66, 0.3);
  margin-top: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.no-sponsorships-placeholder__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: rgba(244, 185, 66, 0.6);
}

.no-sponsorships-placeholder__text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-600);
  margin: 0;
}

.dashboard-membership-card .status-indicator {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.dashboard-membership-card .status-indicator--active {
  background: #48cfad;
  box-shadow: 0 0 0 0 rgba(72, 207, 173, 0.5);
  animation: dashboardDotPulseActive 1.8s ease-out infinite;
}

.dashboard-membership-card .status-indicator--inactive {
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
  animation: dashboardDotPulseInactive 1.8s ease-out infinite;
}

@keyframes dashboardRotateSeal {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes dashboardCounterRotateSeal {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-365deg);
  }
}

@keyframes dashboardDotPulseActive {
  0% {
    box-shadow: 0 0 0 0 rgba(72, 207, 173, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(72, 207, 173, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(72, 207, 173, 0);
  }
}

@keyframes dashboardDotPulseInactive {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@media (max-width: 768px) {
  .dashboard-membership-card {
    padding: var(--space-lg);
  }

  .dashboard-membership-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-membership-card__logo {
    width: 78px;
    height: 78px;
  }
}

.membership-card {
  /*background: linear-gradient(135deg, rgba(0, 76, 218, 0.03) 0%, rgba(0, 197, 236, 0.03) 100%);*/
  border: 2px solid rgba(0, 76, 218, 0.1);
}

/* Tier Display */
.membership-card__tier-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--flag-blue) 0%, var(--flag-cyan) 100%);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 76, 218, 0.25);
  position: relative;
  overflow: hidden;
}

.membership-card__tier-display::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.membership-tier-badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.membership-tier-info {
  flex: 1;
  z-index: 1;
}

.membership-tier-level {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.membership-tier-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.membership-status-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.membership-status-badge--active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--success);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.membership-status-badge--inactive {
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Timeline */
.membership-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
  position: relative;
}

.membership-timeline-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.membership-timeline-line {
  width: 40px;
  height: 2px;
  /*background: linear-gradient(90deg, var(--flag-blue) 0%, var(--flag-cyan) 100%);*/
  margin: 0 -0.5rem;
  position: relative;
  top: 18px;
}

.membership-timeline-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.membership-timeline-marker--start {
  background: linear-gradient(135deg, rgba(0, 76, 218, 0.15) 0%, rgba(0, 197, 236, 0.15) 100%);
  border: 2px solid var(--flag-blue);
  color: var(--flag-blue);
}

.membership-timeline-marker--end {
  background: linear-gradient(135deg, rgba(0, 197, 236, 0.15) 0%, rgba(255, 188, 0, 0.15) 100%);
  border: 2px solid var(--flag-cyan);
  color: var(--flag-cyan);
}

.membership-timeline-content {
  flex: 1;
}

.membership-timeline-label {
  font-size: 0.75rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.membership-timeline-date {
  font-size: 0.9375rem;
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.3;
}

.membership-card__empty {
  text-align: center;
  padding: 2rem 1rem;
}

.membership-card__empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--ink-300);
}

.membership-card__empty-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-700);
  margin: 0 0 0.5rem 0;
}

.membership-card__empty-text {
  font-size: 0.9375rem;
  color: var(--ink-500);
  margin: 0;
}

/* ===================================================================
   TABLES
   =================================================================== */

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.table thead {
  background: linear-gradient(180deg, var(--ink-50) 0%, var(--ink-100) 100%);
  border-bottom: 2px solid var(--ink-200);
}

.table th {
  text-align: left;
  padding: 1rem 1.25rem;
  color: var(--ink-700);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ink-100);
  color: var(--ink-700);
  font-size: 0.9375rem;
}

.table tbody tr {
  transition: background-color 0.15s ease;
}

.table tbody tr:hover {
  background: var(--ink-50);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table--compact th,
.table--compact td {
  padding: 0.75rem 1rem;
}

/* ===================================================================
   FLASH MESSAGES & ALERTS
   =================================================================== */

/* Flash Message Animations */
@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.flash-message,
.alert {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 9999;
  min-width: 400px;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideInFromTop 0.3s ease-out;
}

.flash-message.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

.flash-message,
.alert--info {
  background: var(--info-light);
  border-color: var(--info);
  color: #1e3a8a;
}

.alert--success {
  background: var(--success-light);
  border-color: var(--success);
  color: #065f46;
}

.alert--warning {
  background: var(--warning-light);
  border-color: var(--warning);
  color: #92400e;
}

.alert--error {
  background: var(--error-light);
  border-color: var(--error);
  color: #991b1b;
}

/* ===================================================================
   DASHBOARD SPECIFIC
   =================================================================== */

.dashboard-welcome {
  background: linear-gradient(135deg, var(--flag-blue) 0%, #0061D8 100%);
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-xl);
}

.dashboard-welcome h1 {
  color: white;
  margin-bottom: var(--space-sm);
}

.dashboard-welcome p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0;
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
}

.stat-card__value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--flag-blue);
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 0.9375rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.reminder-item {
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--flag-cyan);
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--ink-100);
  transition: all 0.2s ease;
}

.reminder-item:hover {
  background: var(--ink-50);
  padding-left: 1.25rem;
}

.reminder-item:last-child {
  border-bottom: none;
}

.reminder-item__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-900);
  margin-bottom: 0.25rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.reminder-item__description {
  font-size: 0.875rem;
  color: var(--ink-600);
  margin-bottom: 0.5rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.reminder-item__meta {
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Announcement Grid Layout */
.announcement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.announcement-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.announcement-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--flag-gold);
}

.announcement-card__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-900);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.announcement-card__meta {
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-top: auto;
}

/* Reminder Grid Layout */
.reminder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}

.reminder-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reminder-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--flag-cyan);
}

.reminder-card__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-900);
  line-height: 1.4;
}

.reminder-card__description {
  font-size: 0.875rem;
  color: var(--ink-600);
  line-height: 1.5;
}

.reminder-card__meta {
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-top: auto;
}

/* Event Reminder Items */
.event-reminder-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--ink-100);
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.event-reminder-item:hover {
  background: var(--ink-50);
  padding-left: 1.25rem;
}

.event-reminder-item:last-child {
  border-bottom: none;
}

.event-reminder-item__date {
  flex-shrink: 0;
  width: 50px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--ink-200);
  display: flex;
  flex-direction: column;
}

.event-reminder-item__month {
  font-size: 0.625rem;
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 0.25rem;
  text-transform: uppercase;
}

.event-reminder-item__day {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-800);
  background: white;
}

.event-reminder-item__content {
  flex: 1;
  min-width: 0;
}

.event-reminder-item__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-900);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.event-reminder-item__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.event-reminder-item__location {
  font-size: 0.8125rem;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Dashboard Horizontal Scroll Container */
.dashboard-scroll-container {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1.5rem 1rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.dashboard-scroll-container::-webkit-scrollbar {
  height: 4px;
}

.dashboard-scroll-container::-webkit-scrollbar-track {
  background: var(--ink-100);
  border-radius: 2px;
}

.dashboard-scroll-container::-webkit-scrollbar-thumb {
  background: var(--ink-300);
  border-radius: 2px;
}

.dashboard-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--ink-400);
}

/* Dashboard Reminder Card */
.dashboard-reminder-card {
  flex: 0 0 90px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  scroll-snap-align: start;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.dashboard-reminder-card:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
  border-color: var(--flag-cyan);
}

.dashboard-reminder-card__title {
  font-weight: 600;
  font-size: 0.6875rem;
  color: var(--ink-900);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dashboard-reminder-card__meta {
  font-size: 0.625rem;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
}

/* Dashboard Event Card */
.dashboard-event-card {
  flex: 0 0 90px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.dashboard-event-card:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
  border-color: var(--flag-blue);
}

.dashboard-event-card__date {
  flex-shrink: 0;
  width: 100%;
  height: 40px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.dashboard-event-card__month {
  font-size: 0.5rem;
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 0.125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.dashboard-event-card__day {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-800);
  background: white;
}

.dashboard-event-card__content {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.dashboard-event-card__title {
  font-weight: 600;
  font-size: 0.6875rem;
  color: var(--ink-900);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dashboard-event-card__meta {
  font-size: 0.625rem;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
}

.announcement-preview {
  padding: var(--space-md);
  border-left: 3px solid var(--flag-cyan);
  background: var(--ink-50);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.announcement-preview:last-child {
  margin-bottom: 0;
}

.announcement-preview__title {
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: var(--space-xs);
}

.announcement-preview__meta {
  font-size: 0.875rem;
  color: var(--ink-500);
  margin-bottom: var(--space-sm);
}

/* ===================================================================
   MEMBERSHIP CARD
   =================================================================== */

.membership-tier-hero-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.membership-timeline-compact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.membership-timeline-compact__item {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(255, 206, 84, 0.2);
  border: 1px solid var(--ink-200);
  display: flex;
  flex-direction: column;
}

.membership-timeline-compact__label {
  font-size: 0.5625rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--flag-blue) 0%, #003a8c 100%);
}

.membership-timeline-compact__month {
  background: var(--flag-gold);
  color: #003a8c;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

.membership-timeline-compact__month-text {
  flex: 1;
}

.membership-timeline-compact__year {
  font-size: 0.625rem;
  font-weight: 700;
  color: #003a8c;
  opacity: 0.8;
}

.membership-timeline-compact__day {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink-900);
  text-align: center;
  padding: 0.5rem 0.25rem;
  line-height: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership-tier-hero {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 76, 218, 0.08) 0%, rgba(0, 197, 236, 0.05) 100%);
  border-radius: 12px;
  border: 2px solid rgba(0, 76, 218, 0.15);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 76, 218, 0.08);
}

.membership-tier-hero--compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  text-align: left;
}

.membership-tier-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--flag-blue), var(--flag-cyan));
  border-radius: 8px;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 76, 218, 0.25);
  flex-shrink: 0;
}

.membership-tier-hero--compact .membership-tier-hero__badge {
  margin-bottom: 0;
  width: 40px;
  height: 40px;
}

.membership-tier-hero__content {
  flex: 1;
}

.membership-tier-hero__label {
  font-size: 0.75rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.membership-tier-hero--compact .membership-tier-hero__label {
  margin-bottom: 0.125rem;
}

.membership-tier-hero__tier {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--flag-blue);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.membership-tier-hero--compact .membership-tier-hero__tier {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.membership-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  width: fit-content;
}

.membership-status-pill--active {
  background: rgba(72, 207, 173, 0.15);
  color: var(--success);
}

.membership-status-pill--inactive {
  background: rgba(228, 66, 88, 0.15);
  color: var(--danger);
}

.sponsorship-section {
  padding-top: 1.25rem;
  flex: 1;
}

.sponsorship-section__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sponsorship-item {
  padding: 0.5rem 0.8rem;
  background: linear-gradient(135deg, rgba(255, 206, 84, 0.1) 0%, rgba(244, 185, 66, 0.05) 100%);
  border-left: 4px solid var(--flag-gold);
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(255, 206, 84, 0.1);
  margin-bottom: 0.75rem;
}

.sponsorship-item:last-child {
  margin-bottom: 0;
}

.sponsorship-item__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
  margin-bottom: 0.5rem;
}

.sponsorship-item__details {
  font-size: 0.875rem;
  color: var(--ink-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sponsorship-item__tier-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 206, 84, 0.2);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.75rem;
}

.sponsorship-item__amount {
  font-weight: 700;
  color: var(--flag-gold);
  font-size: 1rem;
}

/* ===================================================================
   AUTHENTICATION PAGES
   =================================================================== */

.auth-body {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--flag-blue) 0%, #002b75 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
}

.auth-card {
  width: min(480px, 100%);
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(0, 76, 218, 0.1);
}

.auth-card__logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-card__logo img {
  height: 50px;
  width: auto;
}

.auth-card h1 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, var(--flag-blue), var(--flag-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-card__subtitle {
  color: var(--ink-500);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.auth-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-200);
  flex-wrap: wrap;
  gap: 1rem;
}

.auth-card__footer a {
  font-size: 0.9375rem;
  font-weight: 600;
}

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

.app-footer {
  background: var(--white);
  border-top: 1px solid var(--ink-200);
  color: var(--ink-500);
  padding: var(--space-xl) 0;
  font-size: 0.9375rem;
  text-align: center;
}

.app-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}


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

.team-members-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.team-member-card {
  background: var(--white);
  border: 2px solid var(--ink-200);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.2s ease;
}

.team-member-card:hover {
  border-color: var(--flag-cyan);
  box-shadow: 0 4px 12px rgba(0, 197, 236, 0.15);
  transform: translateY(-2px);
}

.team-member-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink-100);
}

.team-member-card__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--flag-cyan) 0%, var(--flag-blue) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 197, 236, 0.25);
}

.team-member-card__info {
  flex: 1;
  min-width: 0;
}

.team-member-card__name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0;
  line-height: 1.4;
}

.team-member-card__email {
  font-size: 0.875rem;
  color: var(--ink-600);
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
  word-break: break-word;
}

.team-member-card__email:hover {
  color: var(--flag-cyan);
}

.team-member-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.team-member-status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
}

.team-member-status--active {
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
}

.team-member-status--inactive {
  color: var(--ink-500);
  background: var(--ink-100);
}

.team-members-cta {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(0, 197, 236, 0.03) 0%, rgba(0, 76, 218, 0.03) 100%);
  border: 1.5px dashed var(--ink-300);
  border-radius: 0.75rem;
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */

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

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.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; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

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

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }

.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }

/* ===================================================================
   PROSE (for rich text content)
   =================================================================== */

.prose {
  color: var(--ink-700);
  line-height: 1.75;
  max-width: 65ch;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: var(--ink-900);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.prose h1 { font-size: 2rem; }
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.25rem; }
.prose h4 { font-size: 1.125rem; }

.prose p {
  margin-bottom: var(--space-md);
}

.prose a {
  color: var(--flag-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  color: var(--flag-cyan);
}

.prose ul,
.prose ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.prose li {
  margin-bottom: var(--space-sm);
}

.prose strong {
  font-weight: 600;
  color: var(--ink-900);
}

.prose code {
  background: var(--ink-100);
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-sm);
  font-size: 0.875em;
  font-family: 'Monaco', 'Courier New', monospace;
}

.prose blockquote {
  border-left: 4px solid var(--flag-cyan);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  color: var(--ink-600);
  font-style: italic;
}

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

/* Events Page Header */
.events-page-header {
  background: linear-gradient(135deg, #004CDA 0%, #00C5EC 100%);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 76, 218, 0.2);
}

.events-page-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.events-page-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
}

.events-page-header__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Event Type Legend */
.events-legend {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.events-legend__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.events-legend__items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.events-legend__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: white;
  font-weight: 500;
}

.events-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Calendar Container Layout */
.events-calendar-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  align-items: start;
}

.events-calendar-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.events-calendar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #004CDA 0%, #00C5EC 100%);
}

.events-upcoming-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.events-upcoming-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFCE54 0%, #F4B942 100%);
}

/* Calendar Header */
.events-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--ink-200);
}

.events-calendar-month {
  font-size: 1.5rem;
  color: var(--flag-blue);
  margin: 0;
}

.events-calendar-nav {
  background: transparent;
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--ink-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.events-calendar-nav:hover {
  background: var(--ink-100);
  border-color: var(--flag-blue);
  color: var(--flag-blue);
}

/* Calendar Grid */
.events-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.events-calendar-day-header {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  padding: 0.5rem;
}

.events-calendar-day {
  aspect-ratio: 1;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--white);
  transition: all 0.2s ease;
  position: relative;
}

.events-calendar-day:hover {
  border-color: var(--flag-blue);
  background: var(--ink-50);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 76, 218, 0.15);
}

.events-calendar-day--other-month {
  opacity: 0.3;
}

.events-calendar-day--today {
  background: linear-gradient(135deg, rgba(0, 76, 218, 0.15) 0%, rgba(0, 197, 236, 0.15) 100%);
  border-color: var(--flag-blue);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(0, 76, 218, 0.1);
  animation: todayPulse 3s ease-in-out infinite;
}

@keyframes todayPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(0, 76, 218, 0.1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 76, 218, 0.2);
  }
}

.events-calendar-day--past {
  opacity: 0.6;
}

.events-calendar-day--active {
  background: var(--flag-blue);
  border-color: var(--flag-blue);
}

.events-calendar-day--active .events-calendar-day-number {
  color: var(--white);
}

.events-calendar-day-number {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 0.25rem;
}

/* Event Dots */
.events-calendar-dots {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  margin-top: auto;
}

.events-calendar-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  animation: pulse 2s ease-in-out infinite;
}

.events-calendar-dot--past {
  opacity: 0.4;
  filter: grayscale(0.6);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.events-calendar-dot-more {
  font-size: 0.625rem;
  color: var(--ink-500);
  font-weight: 600;
}

/* Upcoming Events List */
.events-upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-upcoming-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: all 0.2s ease;
}

.event-upcoming-item:hover {
  border-color: var(--flag-blue);
  box-shadow: 0 8px 24px rgba(0, 76, 218, 0.2);
  transform: translateY(-4px);
}

.event-upcoming-date {
  flex-shrink: 0;
  width: 60px;
  height: 70px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--ink-200);
  display: flex;
  flex-direction: column;
}

.event-upcoming-date__month {
  font-size: 0.625rem;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  padding: 0.25rem;
  text-transform: uppercase;
}

.event-upcoming-date__day {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-800);
  background: var(--white);
}

.event-upcoming-content {
  flex: 1;
  min-width: 0;
}

.event-upcoming-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.event-upcoming-time,
.event-upcoming-location {
  font-size: 0.875rem;
  color: var(--ink-600);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}

/* Events Grid (Day Events) */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Responsive Events Grid */
@media (max-width: 1200px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .event-card {
    max-width: 100%;
    overflow: hidden;
  }

  .card {
    max-width: 100%;
    overflow-x: auto;
  }
}

/* Event Cards with Calendar Square Design */
.event-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--flag-blue);
}

.event-card__image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card__past-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.event-card__status-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  animation: statusPulse 2s ease-in-out infinite;
}

.event-card__status-badge svg {
  flex-shrink: 0;
}

.event-card__status-badge--sold-out {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.event-card__status-badge--hot {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.event-card__status-badge--private {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes statusPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.event-card--past {
  opacity: 0.7;
}

.event-card--past .event-card__image {
  filter: grayscale(0.5);
}

.event-card__date-overlay {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 60px;
  height: 63px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.event-card__date-overlay-month {
  font-size: 0.625rem;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  padding: 0.175rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card__date-overlay-day {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-800);
  background: var(--white);
}

.event-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.event-card__type-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.event-card__description {
  font-size: 0.9375rem;
  color: var(--ink-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex: 1;
}

.event-card__meta-item {
  font-size: 0.875rem;
  color: var(--ink-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-card__meta-item svg {
  flex-shrink: 0;
}

.event-card__action {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 1rem;
}

/* Badge Variants */
.badge--sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

/* Events Filters */
.events-filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.events-filters__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.events-filters__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
}

.events-filters__actions {
  display: flex;
  gap: 0.5rem;
}

/* Responsive Events Filters */
@media (max-width: 768px) {
  .events-filters {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .events-filters__actions {
    flex-direction: column;
  }

  .events-filters__actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Profile Tabs
   ========================================================================== */
.profile-tabs {
    max-width: 900px;
}

.tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--ink-200);
    margin-bottom: var(--space-lg);
}

.tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: var(--ink-600);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    font-size: 0.9375rem;
}

.tab:hover {
    color: var(--flag-cyan);
    background: rgba(0, 197, 236, 0.05);
}

.tab--active {
    color: var(--flag-blue);
    border-bottom-color: var(--flag-blue);
}

.tab-content {
    display: none;
}

.tab-content--active {
    display: block;
}

/* ==========================================================================
   Directory
   ========================================================================== */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.directory-card {
    background: white;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    padding: var(--space-lg);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.directory-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--flag-cyan);
}

.directory-card__header {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.directory-card__avatar {
    position: relative;
    flex-shrink: 0;
}

.directory-card__avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 80% 20%;
}

.directory-card__initials {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--flag-cyan), var(--flag-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.online-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.directory-card__info {
    flex: 1;
}

.directory-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--ink-900);
}

.directory-card__title {
    font-size: 0.8125rem;
    color: var(--ink-700);
    margin: 0 0 0.25rem 0;
}

.directory-card__company {
    font-size: 0.8125rem;
    color: var(--ink-600);
    margin: 0;
}

.directory-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.directory-card__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
}

.directory-card__actions {
    margin-top: auto;
    padding-top: var(--space-md);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--flag-blue);
    text-decoration: none;
    font-size: 0.875rem;
}

.contact-link:hover {
    color: var(--flag-cyan);
}

.empty-state {
    text-align: center;
    padding: var(--space-xl) 0;
    color: var(--ink-500);
}

.empty-state svg {
    margin-bottom: var(--space-md);
}

.empty-state p {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   Messaging
   ========================================================================== */
.conversations-list {
    max-width: 800px;
}

.conversation-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.conversation-item:hover {
    background: rgba(0, 197, 236, 0.05);
    border-color: var(--flag-cyan);
}

.conversation-item--unread {
    background: rgba(0, 76, 218, 0.05);
    border-color: var(--flag-blue);
}

.conversation-item__avatar {
    position: relative;
    flex-shrink: 0;
}

.conversation-item__avatar img,
.conversation-item__initials {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.conversation-item__initials {
    background: linear-gradient(135deg, var(--flag-cyan), var(--flag-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

.conversation-item__info {
    flex: 1;
    min-width: 0;
}

.conversation-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.conversation-item__name {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.conversation-item__time {
    font-size: 0.8125rem;
    color: var(--ink-500);
}

.conversation-item__preview {
    margin: 0;
    font-size: 0.875rem;
    color: var(--ink-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unread-badge {
    background: var(--flag-blue);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Conversation View */
.conversation-view {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 200px);
}

.conversation-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 2px solid var(--ink-200);
    margin-bottom: var(--space-md);
}

.conversation-header__info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
}

.conversation-header__avatar img,
.conversation-header__initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.conversation-header__initials {
    background: linear-gradient(135deg, var(--flag-cyan), var(--flag-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
}

.conversation-header__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.conversation-header__title {
    font-size: 0.875rem;
    color: var(--ink-600);
    margin: 0;
}

.messages-container {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
    background: var(--ink-50);
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
}

.date-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.date-divider::before,
.date-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(15, 23, 42, 0.12);
}

.date-divider__text {
    padding: 0 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.message {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.message--sent {
    flex-direction: row-reverse;
}

.message__avatar img,
.message__initials {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.message__initials {
    background: linear-gradient(135deg, var(--flag-cyan), var(--flag-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

.message__content {
    max-width: 70%;
}

.message--sent .message__content {
    text-align: right;
}

.message__bubble {
    display: inline-block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.message__bubble .message-link {
    color: inherit;
    text-decoration: underline;
    word-break: break-all;
    cursor: pointer;
}

.message--received .message__bubble {
    background: white;
    border: 1px solid var(--ink-200);
}

.message--received .message__bubble .message-link {
    color: var(--flag-blue);
    font-weight: 500;
}

.message--sent .message__bubble {
    background: linear-gradient(135deg, var(--flag-cyan), var(--flag-blue));
    color: white;
}

.message--sent .message__bubble .message-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration-color: rgba(255, 255, 255, 0.7);
}

/* Link Previews */
.link-previews {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.link-preview-card {
    display: flex;
    flex-direction: row;
    background: white;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 400px;
}

.link-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.link-preview-card__image {
    width: 120px;
    min-width: 120px;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--ink-100);
}

.link-preview-card__content {
    padding: 0.75rem;
    flex: 1;
    min-width: 0;
}

.link-preview-card__site {
    font-size: 0.75rem;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.link-preview-card__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.link-preview-card__description {
    font-size: 0.8125rem;
    color: var(--ink-600);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.message--sent .link-preview-card {
    margin-left: auto;
}

.message--received .link-preview-card {
    margin-right: auto;
}

/* Reply functionality */
.message__reply-to {
    background: rgba(15, 23, 42, 0.08);
    border-left: 3px solid rgba(15, 23, 42, 0.25);
    padding: 0.5rem 0.625rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm);
}

.message--sent .message__reply-to {
    background: rgba(255, 255, 255, 0.2);
    border-left-color: rgba(255, 255, 255, 0.5);
}

.message__reply-to-author {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
    opacity: 0.9;
}

.message__reply-to-text {
    font-size: 0.8125rem;
    opacity: 0.8;
    font-style: italic;
}

.reply-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 82, 204, 0.08));
    border-left: 3px solid var(--flag-blue);
    margin-bottom: 0.5rem;
    border-radius: var(--radius);
}

.reply-preview__content {
    flex: 1;
    min-width: 0;
}

.reply-preview__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--flag-blue);
    margin-bottom: 0.25rem;
}

.reply-preview__text {
    font-size: 0.875rem;
    color: var(--ink-700);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reply-preview__close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--ink-500);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    transition: color 0.2s ease;
    border-radius: var(--radius);
}

.reply-preview__close:hover {
    color: var(--ink-900);
    background: rgba(15, 23, 42, 0.05);
}

.message__actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.message__reply,
.message__delete {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: var(--flag-blue);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.message__reply:hover {
    background: rgba(0, 102, 255, 0.1);
}

.message__delete {
    color: var(--danger);
}

.message__delete:hover {
    background: rgba(220, 38, 38, 0.1);
}

.message__meta {
    font-size: 0.75rem;
    color: var(--ink-500);
    margin-top: 0.25rem;
}

.message__status {
    color: var(--flag-cyan);
}

.message-input {
    display: flex;
    gap: var(--space-sm);
}

.message-input textarea {
    flex: 1;
    min-height: 44px;
    max-height: 120px;
    resize: none;
    padding: 0.75rem;
    border: 2px solid var(--ink-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9375rem;
}

.message-input textarea:focus {
    outline: none;
    border-color: var(--flag-cyan);
}

.badge-danger {
    background: #ef4444;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ===================================================================
   PROFILE PAGE STYLES
   =================================================================== */

.profile-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Privacy Settings */
.privacy-options-container {
    padding: 0 var(--space-lg) var(--space-lg);
}

.privacy-option {
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--ink-200);
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.privacy-option:hover {
    border-color: var(--flag-cyan);
    background: rgba(0, 197, 236, 0.03);
}

.privacy-option--active {
    border-color: var(--flag-blue);
    background: rgba(0, 76, 218, 0.05);
}

.privacy-option input[type="radio"] {
    margin-top: 0.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.privacy-option__content {
    flex: 1;
    min-width: 0;
}

.privacy-option strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--ink-900);
}

.privacy-option p {
    font-size: 0.875rem;
    color: var(--ink-600);
    margin: 0;
    line-height: 1.6;
}

.messaging-preferences {
    padding: var(--space-lg);
    border-top: 2px solid var(--ink-200);
}

.messaging-preferences h3 {
    margin: 0 0 var(--space-md) 0;
    font-size: 1.125rem;
    color: var(--ink-900);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.checkbox-label:hover {
    background: var(--ink-50);
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--ink-700);
}

.form-actions {
    padding: var(--space-lg);
    border-top: 1px solid var(--ink-200);
}

/* Directory Preview */
.directory-preview {
    padding: var(--space-lg);
    background: var(--ink-50);
    border-radius: var(--radius);
    margin-bottom: var(--space-lg);
}

.member-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.member-card__avatar {
    flex-shrink: 0;
}

.member-card__avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 80% 20%;
}

.member-card__initials {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--flag-cyan), var(--flag-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.member-card__info {
    flex: 1;
}

.member-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.member-card__title {
    color: var(--ink-600);
    margin: 0.25rem 0;
}

.member-card__contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.member-card__contact a {
    color: var(--flag-cyan);
    text-decoration: none;
    font-size: 0.875rem;
}

.online-indicator {
    font-size: 0.75rem;
    color: var(--ink-600);
}

.tip {
    padding: var(--space-md);
    background: rgba(0, 197, 236, 0.1);
    border-left: 4px solid var(--flag-cyan);
    border-radius: var(--radius);
    color: var(--ink-700);
}

/* ===================================================================
   NAVIGATION DROPDOWN STYLES
   =================================================================== */

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown > button.app-nav__link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-dropdown__menu--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--ink-700);
    text-decoration: none;
    transition: background 0.15s;
    font-size: 0.9375rem;
}

.nav-dropdown__item:hover {
    background: var(--ink-50);
    color: var(--flag-blue);
}

.nav-dropdown__item svg {
    flex-shrink: 0;
    color: var(--ink-500);
}

.nav-dropdown__item:hover svg {
    color: var(--flag-cyan);
}

/* ===================================================================
   TWO-COLUMN MESSAGES LAYOUT
   =================================================================== */

.messages-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    height: calc(100vh - 140px);
    max-height: calc(100vh - 140px);
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.messages-sidebar {
    border-right: 1px solid var(--ink-200);
    display: flex;
    flex-direction: column;
    background: var(--ink-50);
    overflow: hidden;
}

.messages-sidebar__header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--ink-200);
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.messages-sidebar__header h2 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--ink-900);
}

.conversations-list {
    flex: 1;
    overflow-y: auto;
}

.conversation-item--active {
    background: white !important;
    border-left: 3px solid var(--flag-blue);
}

.empty-state-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    text-align: center;
    color: var(--ink-500);
}

.empty-state-sidebar svg {
    margin-bottom: var(--space-md);
}

.empty-state-sidebar p {
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.messages-main {
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    overflow: hidden;
}

.empty-state-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ink-400);
    text-align: center;
}

.empty-state-main svg {
    margin-bottom: var(--space-lg);
}

.empty-state-main h3 {
    font-size: 1.25rem;
    color: var(--ink-600);
    margin-bottom: var(--space-sm);
}

.empty-state-main p {
    font-size: 0.9375rem;
    margin: 0;
}

.conversation-view {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.conversation-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--ink-200);
    background: white;
    flex-shrink: 0;
}

.conversation-header__info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.conversation-header__avatar {
    flex-shrink: 0;
}

.conversation-header__avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 80% 20%;
}

.conversation-header__initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--flag-cyan), var(--flag-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
}

.conversation-header__name {
    font-size: 1.125rem;
    margin: 0;
    color: var(--ink-900);
}

.conversation-header__title {
    font-size: 0.875rem;
    color: var(--ink-600);
    margin: 0.25rem 0 0 0;
}

.messages-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--space-lg);
    background: var(--ink-50);
    min-height: 0;
}

.message-input {
    padding: var(--space-lg);
    border-top: 1px solid var(--ink-200);
    background: white;
    flex-shrink: 0;
}

.message-input textarea {
    max-height: 120px;
}

/* ===================================================================
   DIRECTORY SEARCH FORM
   =================================================================== */

.directory-search-form {
    display: grid;
    grid-template-columns: 1fr 180px 180px auto;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.directory-search-form input[type="search"] {
    min-width: 0;
}

.directory-search-form select {
    min-width: 0;
}

.directory-search-form button {
    white-space: nowrap;
}

/* ===================================================================
   TYPING INDICATOR
   =================================================================== */

.typing-indicator {
    display: flex;
    align-items: flex-end;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    animation: fadeIn 0.3s;
}

.typing-indicator__avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 80% 20%;
}

.typing-indicator__initials {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--flag-cyan), var(--flag-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.typing-indicator__dots {
    background: white;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.25rem;
}

.typing-indicator__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ink-400);
    animation: typingBounce 1.4s infinite;
}

.typing-indicator__dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator__dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

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

/* Message delete button */
.message__actions {
    opacity: 0;
    transition: opacity 0.2s;
    margin-top: 0.25rem;
}

.message:hover .message__actions {
    opacity: 1;
}

.message__delete {
    background: none;
    border: none;
    color: var(--ink-500);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.message__delete:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* ==========================================================================
   MOBILE RESPONSIVE OVERRIDES FOR EMBED
   ========================================================================== */

@media (max-width: 768px) {
    body {
        min-width: 0 !important;
        padding: 0.5rem !important;
        overflow-x: hidden;
    }

    html {
        overflow-x: hidden;
    }

    .embed-container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .card {
        margin-left: 0;
        margin-right: 0;
    }

    .events-filters {
        overflow-x: hidden;
    }

    .input, .btn {
        max-width: 100%;
    }
}

/* ===================================================================
   PAGINATION
   =================================================================== */

.pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-elevated);
}

.pagination__link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--flag-blue);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.pagination__link:hover {
  background: var(--flag-blue-light);
  border-color: var(--flag-blue);
}

.pagination__link--disabled {
  color: var(--ink-300);
  cursor: not-allowed;
  pointer-events: none;
}

.pagination__numbers {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0 var(--space-sm);
}

.pagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-600);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.pagination__number:hover {
  background: var(--flag-blue-light);
  color: var(--flag-blue);
  border-color: var(--flag-blue);
}

.pagination__number--active {
  background: var(--flag-blue);
  color: white;
  border-color: var(--flag-blue);
  cursor: default;
}

.pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: var(--ink-300);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .pagination {
    gap: var(--space-xs);
    padding: var(--space-sm);
  }

  .pagination__link {
    font-size: 0.8125rem;
    padding: var(--space-xs) var(--space-sm);
  }

  .pagination__number {
    min-width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }

  .pagination__numbers {
    gap: 4px;
    padding: 0 var(--space-xs);
  }

  /* Hide page numbers on mobile, only show prev/next */
  .pagination__numbers {
    display: none;
  }
}
