@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy-darkest: #0a1628;
  --navy-dark: #1a2a3a;
  --navy-medium: #2c4058;
  --navy-light: #3d5670;
  
  --accent-gold: #c9a961;
  --accent-gold-dark: #a68841;
  --accent-blue: #4a90e2;
  --accent-blue-dark: #357abd;
  
  --text-primary: #1a1a1a;
  --text-secondary: #5c6671;
  --text-muted: #8b95a0;
  --text-inverse: #ffffff;
  
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-lighter: #fafbfc;
  --border-light: #e1e4e8;
  --border-medium: #d0d5db;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--navy-darkest) 0%, var(--navy-dark) 50%, var(--navy-medium) 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   TOP NAVIGATION BAR
   ========================================================================== */

.topbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.topbar__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.topbar__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.topbar__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.topbar__actions {
  display: flex;
  gap: 12px;
}

.topbar__btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.topbar__btn:hover {
  background: var(--bg-light);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-1px);
}

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

.banner-section {
  padding: 28px 32px 0;
}

.banner-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.banner-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-text {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.banner-text p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ==========================================================================
   SEARCH PANEL
   ========================================================================== */

.search-panel {
  padding: 36px 32px 24px;
}

.search-panel__container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  border: 1px solid var(--border-light);
}

.search-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.search-panel__header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 4px;
}

.search-panel__header p {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.search-panel__toggle {
  border: 1px solid var(--border-medium);
  background: var(--bg-light);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
}

.search-panel__bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 8px;
}

.search-panel__bar input {
  width: 100%;
}

.search-panel__bar input {
  padding: 12px 14px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 15px;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--text-inverse);
  border: none;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: var(--bg-light);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.search-panel__quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.search-panel__quick .field label,
.filters-grid .filter-group label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.search-panel__quick input,
.search-panel__quick select,
.filters-grid input,
.filters-grid select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 14px;
}

.search-panel__advanced {
  margin-top: 12px;
  background: var(--bg-lighter);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
}

.search-panel__footer {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

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

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-hint {
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
}

.filter-group--tip {
  grid-column: 1 / -1;
}

.filter-group--actions {
  justify-content: flex-end;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
}

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

.main-content {
  padding: 28px 20px 64px;
}

.main-content__container {
  max-width: 1400px;
  margin: 0 auto;
}

.content-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
}

.content-card h1 {
  margin-bottom: 16px;
  font-size: 28px;
}

.content-card p {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  gap: 20px;
  flex-wrap: wrap;
}

.stats-bar--embedded {
  margin: 0 0 12px;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.stats-bar__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.stats-bar__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pagination__btn {
  padding: 8px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pagination__btn:hover:not(:disabled) {
  background: var(--bg-light);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-1px);
}

.pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination__current {
  min-width: 40px;
  text-align: center;
  padding: 8px 16px;
  background: var(--accent-blue);
  color: var(--text-inverse);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
}

/* ==========================================================================
   RESULTS CARD / TABLE
   ========================================================================== */

.results-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: visible;
  padding: 8px 6px;
}

.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  table-layout: auto;
}

.data-table thead {
  background: var(--bg-light);
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: 71px;
  z-index: 10;
}

.data-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.col-movant {
  width: 20%;
  max-width: 260px;
  min-width: 16ch;
  white-space: normal;
  word-break: break-word;
}

.col-attorney {
  width: 22%;
  min-width: 16ch;
}

.col-city {
  width: 12%;
  min-width: 10ch;
}

.col-state {
  width: 6%;
  min-width: 4ch;
}

.col-date {
  width: 10%;
  min-width: 10ch;
}

.col-type {
  width: 8%;
  min-width: 8ch;
}

.col-source {
  width: 22%;
  min-width: 16ch;
}

.sort-button,
.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.sort-button:hover,
.filter-button:hover {
  color: var(--accent-blue-dark);
}

.sort-indicator {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-secondary);
}

.sort-indicator.active {
  color: var(--accent-blue-dark);
}

.filter-icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
  opacity: 0.7;
}

.filter-button:hover .filter-icon {
  opacity: 1;
}

.data-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: clamp(13px, 1.05vw, 15px);
  color: var(--text-primary);
  transition: background 0.15s ease;
}

.data-table a {
  color: var(--accent-blue-dark);
  text-decoration: none;
}

.data-table a:hover {
  text-decoration: underline;
}

.source-secondary {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.data-table tbody tr:nth-child(even) {
  background: var(--bg-lighter);
}

.data-table tbody tr:hover {
  background: #f0f7ff !important;
  cursor: pointer;
}

.data-table tbody tr:hover td {
  color: var(--accent-blue-dark);
}

.cell-action {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.cell-action:hover {
  text-decoration-color: currentColor;
}

/* ==========================================================================
   CORRECTIONS SECTION
   ========================================================================== */

.corrections-section {
  background: rgba(255, 255, 255, 0.98);
  padding: 60px 32px;
  border-top: 1px solid var(--border-light);
}

.corrections-section__container {
  max-width: 800px;
  margin: 0 auto;
}

.corrections-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.corrections-section__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.corrections-section__header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */

.correction-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: all 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
}

.form-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

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

.btn-primary {
  padding: 14px 32px;
  background: var(--accent-blue);
  color: var(--text-inverse);
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.btn-primary--large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-secondary {
  padding: 10px 20px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

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

.footer {
  background: rgba(10, 22, 40, 0.95);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__disclaimer strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.footer__legal {
  text-align: right;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal__content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

.modal__close:hover {
  color: var(--text-primary);
}

.modal__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.modal__content h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.modal__content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.modal__content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.modal__content li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .topbar__container {
    padding: 12px 20px;
  }
  
  .topbar__title {
    font-size: 16px;
  }
  
  .banner-section {
    padding: 32px 20px 0;
  }

  .banner-section__container {
    grid-template-columns: 1fr;
  }

  .banner-text {
    padding: 20px;
  }
  
  .search-panel__container {
    padding: 18px;
  }

  .search-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-panel__bar {
    grid-template-columns: 1fr;
  }

  .search-panel__quick {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer__legal {
    text-align: left;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .stats-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .wrap {
    max-width: min(1200px, 96vw);
    padding: 20px;
  }

  .hero {
    padding: 36px 26px;
  }

  .hero__content h1 {
    font-size: 28px;
  }

  .hero__content .lede {
    font-size: 16px;
  }

  .panel {
    padding: 24px;
  }

  .data-table th,
  .data-table td {
    padding: 12px 14px;
  }
}

@media (max-width: 600px) {
  .topbar__actions {
    display: none;
  }

  .search-panel__quick {
    grid-template-columns: 1fr;
  }

  .filters-grid {
    grid-template-columns: 1fr;
  }

  .wrap {
    padding: 16px;
  }

  .hero {
    padding: 26px 18px;
  }

  .hero__content h1 {
    font-size: 24px;
  }

  .hero__content .lede {
    font-size: 15px;
  }

  .panel {
    padding: 18px;
  }

  .data-table thead {
    display: none;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table tr {
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
  }

  .data-table td {
    padding: 6px 0;
    font-size: 13px;
  }

  .main-content__container {
    padding: 0 10px;
  }

  .results-card {
    margin: 0 6px 12px;
    padding: 10px 8px;
  }

  .data-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
}

/* ==========================================================================
   UTILITY & ANIMATIONS
   ========================================================================== */

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

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

*:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

::selection {
  background: rgba(74, 144, 226, 0.2);
  color: var(--text-primary);
}

/* ==========================================================================
   CONTENT PAGES (bar-admission, etc.)
   ========================================================================== */

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero__content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero__content .lede {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.panel {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.panel:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.panel h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
}

.panel h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 12px 0;
}

.panel p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 12px 0;
}

.panel ul, .panel ol {
  margin: 16px 0 16px 24px;
  color: var(--text-secondary);
}

.panel li {
  margin: 8px 0;
  line-height: 1.7;
}

.panel a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.panel a:hover {
  color: var(--accent-blue-dark);
  text-decoration: underline;
}

.panel strong {
  color: var(--text-primary);
  font-weight: 600;
}

.footer {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-inverse);
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
}

.footer a {
  color: var(--text-inverse);
  text-decoration: underline;
  font-weight: 500;
}

.footer a:hover {
  opacity: 0.8;
}
