/* LIACourt Portal — Public CSS
   Primary: #0d2443  |  Secondary/Gold: #a0834c
   Fonts: Cinzel (headings), Libre Baskerville (body)
   Developer: Zoon11 (zoon11.com)
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── Reset / Base
   Scoped entirely inside .lc-portal so Elementor's
   own layout is never disrupted.
────────────────────────────────────────────────────── */
/* ── Scope box-sizing to our portal only ────────── */
.lc-portal *, .lc-portal *::before, .lc-portal *::after,
.lc-portal-nav *, .lc-portal-nav *::before, .lc-portal-nav *::after {
  box-sizing: border-box;
}

/* ── Global button reset inside the portal
   Prevents theme/Elementor/WP-admin styles (e.g. pink
   focus rings) from bleeding into portal buttons.
   Specific buttons are re-styled below.
─────────────────────────────────────────────────── */
.lc-portal button,
.lc-portal-nav button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  color: inherit;
  line-height: inherit;
}
/* Force-clear any focus/active chrome the theme injects on buttons */
.lc-portal button:focus,
.lc-portal button:active,
.lc-portal button:focus-visible,
.lc-portal-nav button:focus,
.lc-portal-nav button:active,
.lc-portal-nav button:focus-visible {
  background-color: transparent !important;
  outline:    none !important;
  box-shadow: none !important;
  border:     none !important;
}

.lc-portal {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f5f4f0;
  /* Stretch to fill the Elementor container vertically */
  min-height: calc(100vh - 120px);
  /* Prevent the theme's body styles from leaking in */
  -webkit-font-smoothing: antialiased;
}

.lc-portal h1, .lc-portal h2, .lc-portal h3, .lc-portal h4 {
  font-family: 'Cinzel', serif;
  color: #0d2443;
  line-height: 1.25;
  margin: 0;
}

.lc-portal p  { margin: 0; }
.lc-portal ul { margin: 0; padding: 0; list-style: none; }

.lc-portal a { color: #0d2443; text-decoration: none; }
.lc-portal a:hover { color: #a0834c; }

/* ─── Navigation ────────────────────────────────────────────── */

/*
  --lc-header-height controls where the portal nav sticks.
  Set this to match your Elementor site header height.
  Default 0 = sticks right at the top (use when the Elementor
  header is fixed/sticky — the portal nav will sit below it).
  Example: add to your Elementor Custom CSS for the page:
    :root { --lc-header-height: 80px; }
*/
:root { --lc-header-height: 0px; }

.lc-portal-nav {
  background: #0d2443;
  display: flex;
  align-items: center;
  padding: 0 28px;
  height: 60px;
  position: sticky;
  top: var(--lc-header-height);
  z-index: 900;
  gap: 0;
  box-shadow: 0 2px 8px rgba(13,36,67,.35);
  /* Constrain to the same 1350 px column as the page content.
     Do NOT use width:100% or left:0 — those break out of the
     Elementor container and push the bar to the viewport edges. */
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}

.lc-nav-brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.lc-nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  border-right: 1px solid rgba(160,131,76,.4);
  padding-right: 20px;
  margin-right: 20px;
}

.lc-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.lc-nav-links::-webkit-scrollbar { display: none; }

/* ── Nav links: force white on dark background even if the Elementor
   theme globally overrides anchor colours.  !important is intentional
   and scoped tightly to .lc-portal-nav so nothing else is affected. ── */
.lc-portal-nav .lc-nav-link,
.lc-portal-nav .lc-nav-link:visited,
.lc-portal-nav .lc-nav-link:link {
  color: rgba(255,255,255,.82) !important;
  font-size: 13px;
  font-family: 'Cinzel', serif;
  letter-spacing: .5px;
  padding: 0 14px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  text-decoration: none !important;
  transition: color .2s, border-color .2s;
}
.lc-portal-nav .lc-nav-link:hover,
.lc-portal-nav .lc-nav-link.active {
  color: #a0834c !important;
  border-bottom-color: #a0834c;
}
.lc-nav-sep { color: rgba(255,255,255,.25); padding: 0 4px; }

.lc-nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

/* Notification bell
   Four !important declarations target the four properties that Elementor /
   Hello-theme / GeneratePress / Astra commonly override on buttons.
   They are tightly scoped to .lc-notif-bell so nothing else is affected. */
.lc-notif-bell-wrap { position: relative; }
.lc-notif-bell,
.lc-notif-bell:link,
.lc-notif-bell:visited,
.lc-notif-bell:hover,
.lc-notif-bell:focus,
.lc-notif-bell:active,
.lc-notif-bell:focus-visible,
.lc-notif-bell:focus-within {
  background:   transparent !important;
  background-color: transparent !important;
  border:       none !important;
  box-shadow:   none !important;
  outline:      none !important;
  cursor: pointer;
  font-size: 18px;
  padding: 8px;
  position: relative;
  line-height: 1;
}
.lc-notif-bell       { color: rgba(255,255,255,.8) !important; }
.lc-notif-bell:hover { color: #a0834c !important; }
.lc-badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a0834c;
  color: #fff;
  font-size: 10px;
  font-family: sans-serif;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 8px;
  padding: 0 4px;
  margin-left: 2px;
  vertical-align: middle;
}

.lc-notif-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  width: 320px;
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 1000;
}
.lc-notif-dropdown-header {
  padding: 12px 16px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: #0d2443;
  border-bottom: 1px solid #e5e0d8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lc-notif-mark-all {
  background: none;
  border: none;
  cursor: pointer;
  color: #a0834c;
  font-size: 11px;
  font-family: 'Libre Baskerville', serif;
}
.lc-notif-dd-item {
  padding: 10px 16px;
  border-bottom: 1px solid #f0ece5;
  cursor: pointer;
  font-size: 13px;
  transition: background .15s;
}
.lc-notif-dd-item:hover { background: #faf8f4; }
.lc-notif-dd-item.unread { background: #fef9f2; border-left: 3px solid #a0834c; }
.lc-notif-empty { padding: 24px; text-align: center; color: #888; font-size: 13px; }

/* User menu button — same aggressive reset as the notification bell */
.lc-user-menu-wrap { position: relative; }
.lc-user-menu-btn,
.lc-user-menu-btn:focus,
.lc-user-menu-btn:active,
.lc-user-menu-btn:focus-visible {
  background-color: transparent !important;
  border:     none !important;
  box-shadow: none !important;
  outline:    none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85) !important;
  font-size: 13px;
  font-family: 'Libre Baskerville', serif;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color .2s;
}
.lc-user-menu-btn:hover { background-color: rgba(255,255,255,.08) !important; }
.lc-avatar-sm {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(160,131,76,.5);
}
.lc-caret { font-size: 10px; opacity: .6; }

.lc-user-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 1000;
  overflow: hidden;
}
.lc-user-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #1a1a1a;
  transition: background .15s;
}
.lc-user-dropdown a:hover { background: #faf8f4; color: #0d2443; }
.lc-dropdown-divider { height: 1px; background: #e5e0d8; }

/* ─── Page Layout ───────────────────────────────────────────── */
.lc-page-content {
  max-width: 1350px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}
.lc-page-content--narrow { max-width: 820px; }

.lc-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.lc-page-title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  color: #0d2443;
}

.lc-breadcrumb {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}
.lc-breadcrumb a { color: #a0834c; }
.lc-breadcrumb a:hover { text-decoration: underline; }

/* ─── Buttons ───────────────────────────────────────────────── */
.lc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, opacity .2s;
  white-space: nowrap;
  text-decoration: none;
}
.lc-btn--primary { background: #0d2443; color: #fff; border-color: #0d2443; }
.lc-btn--primary:hover { background: #163461; border-color: #163461; color: #fff; }
.lc-btn--outline { background: transparent; color: #0d2443; border-color: #0d2443; }
.lc-btn--outline:hover { background: #0d2443; color: #fff; }
.lc-btn--gold { background: #a0834c; color: #fff; border-color: #a0834c; }
.lc-btn--gold:hover { background: #8c6e3c; border-color: #8c6e3c; color: #fff; }
.lc-btn--danger { background: #c62828; color: #fff; border-color: #c62828; }
.lc-btn--danger:hover { background: #b71c1c; border-color: #b71c1c; color: #fff; }
.lc-btn--sm { padding: 6px 14px; font-size: 12px; }
.lc-btn--xs { padding: 3px 10px; font-size: 11px; }
.lc-btn--lg { padding: 14px 32px; font-size: 15px; }
.lc-btn--full { width: 100%; display: flex; }
.lc-btn:disabled { opacity: .55; cursor: not-allowed; }

/* ─── Badges ────────────────────────────────────────────────── */
.lc-badge {
  display: inline-block;
  padding: 2px 10px;
  font-size: 11px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 3px;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.lc-badge--sm { padding: 1px 7px; font-size: 10px; }
.lc-badge--pendente  { color: #795548; background: #efebe9; }
.lc-badge--ativo     { color: #1565c0; background: #e3f2fd; }
.lc-badge--audiencia { color: #6a1b9a; background: #f3e5f5; }
.lc-badge--decisao   { color: #e65100; background: #fff3e0; }
.lc-badge--encerrado { color: #2e7d32; background: #e8f5e9; }
.lc-badge--arquivado { color: #546e7a; background: #eceff1; }
.lc-badge--draft     { color: #795548; background: #efebe9; }
.lc-badge--issued    { color: #1565c0; background: #e3f2fd; }
.lc-badge--published { color: #2e7d32; background: #e8f5e9; }
.lc-badge--scheduled { color: #1565c0; background: #e3f2fd; }
.lc-badge--completed { color: #2e7d32; background: #e8f5e9; }
.lc-badge--cancelled { color: #c62828; background: #ffebee; }

/* ─── Cards / Sections ──────────────────────────────────────── */
.lc-section-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 20px;
}
.lc-section-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: #0d2443;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5e0d8;
}

/* ─── Empty state ───────────────────────────────────────────── */
.lc-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #888;
}
.lc-empty-icon { font-size: 48px; margin-bottom: 16px; }
.lc-empty { color: #888; font-size: 14px; font-style: italic; }

/* ─── Error / Success boxes ─────────────────────────────────── */
.lc-error-box {
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #c62828;
  padding: 14px 18px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
}
.lc-form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* ─── Forms ─────────────────────────────────────────────────── */
.lc-form-group { margin-bottom: 16px; }
.lc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lc-form-group label {
  display: block;
  font-size: 12px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: #0d2443;
  letter-spacing: .3px;
  margin-bottom: 6px;
}
.lc-required { color: #c62828; }
.lc-input {
  width: 100%;
  padding: 10px 13px;
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #d0c8be;
  border-radius: 4px;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.lc-input:focus {
  outline: none;
  border-color: #0d2443;
  box-shadow: 0 0 0 3px rgba(13,36,67,.08);
}
.lc-input::placeholder { color: #aaa; }
textarea.lc-input { resize: vertical; min-height: 80px; }
select.lc-input { cursor: pointer; }
.lc-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.5;
}
.lc-checkbox-label input[type=checkbox] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #0d2443;
}

/* ─── Modal ─────────────────────────────────────────────────── */
.lc-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,36,67,.55);
  backdrop-filter: blur(2px);
}
.lc-modal-box {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.lc-modal-box--wide { max-width: 740px; }
.lc-modal-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: #0d2443;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e0d8;
}
.lc-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #888;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background .15s;
}
.lc-modal-close:hover { background: #f0ece5; color: #1a1a1a; }

/* ─── Filter bar ────────────────────────────────────────────── */
.lc-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.lc-filter-tab {
  padding: 7px 18px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #555;
  background: #fff;
  border: 1px solid #d0c8be;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.lc-filter-tab:hover { border-color: #0d2443; color: #0d2443; }
.lc-filter-tab.active { background: #0d2443; color: #fff; border-color: #0d2443; }

/* ─── Table ─────────────────────────────────────────────────── */
.lc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.lc-table th {
  text-align: left;
  padding: 10px 14px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #0d2443;
  background: #f8f5f0;
  border-bottom: 2px solid #e5e0d8;
  white-space: nowrap;
}
.lc-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f0ece5;
  vertical-align: middle;
}
.lc-table tr:last-child td { border-bottom: none; }
.lc-table tr:hover td { background: #faf8f4; }

/* ─── Progress bar ──────────────────────────────────────────── */
.lc-progress {
  height: 6px;
  background: #e5e0d8;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}
.lc-progress-bar {
  height: 100%;
  background: #a0834c;
  width: 0%;
  transition: width .3s ease;
  border-radius: 3px;
}

/* ─── Dashboard ─────────────────────────────────────────────── */
.lc-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.lc-stat-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lc-stat-icon { font-size: 28px; }
.lc-stat-body {}
.lc-stat-value {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: #0d2443;
  line-height: 1;
}
.lc-stat-label { font-size: 12px; color: #777; margin-top: 3px; }

.lc-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
}
.lc-dashboard-main {}
.lc-dashboard-sidebar {}

/* Upcoming hearings */
.lc-upcoming-hearing {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0ece5;
  align-items: flex-start;
}
.lc-upcoming-hearing:last-child { border-bottom: none; }
.lc-upcoming-date-badge {
  background: #0d2443;
  color: #fff;
  border-radius: 5px;
  padding: 6px 10px;
  text-align: center;
  min-width: 48px;
  flex-shrink: 0;
}
.lc-upcoming-date-badge .day { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; line-height: 1; }
.lc-upcoming-date-badge .mo  { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; opacity: .8; }
.lc-upcoming-info {}
.lc-upcoming-title { font-weight: 700; font-size: 14px; color: #0d2443; }
.lc-upcoming-case  { font-size: 12px; color: #888; margin-top: 2px; }
.lc-upcoming-time  { font-size: 12px; color: #a0834c; margin-top: 2px; }

/* Notifications panel */
.lc-notif-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0ece5;
  font-size: 13px;
}
.lc-notif-item.unread { font-weight: 700; }
.lc-notif-item:last-child { border-bottom: none; }
.lc-notif-item-title { color: #0d2443; }
.lc-notif-item-time  { font-size: 11px; color: #999; margin-top: 2px; }

/* Quick actions */
.lc-quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── Cases grid ────────────────────────────────────────────── */
.lc-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.lc-case-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 20px;
  transition: box-shadow .2s;
}
.lc-case-card:hover { box-shadow: 0 4px 16px rgba(13,36,67,.1); }
.lc-case-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.lc-case-number { font-family: 'Cinzel', serif; font-size: 12px; color: #a0834c; font-weight: 700; }
.lc-case-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.lc-case-title a { color: #0d2443; }
.lc-case-title a:hover { color: #a0834c; }
.lc-case-type { font-size: 12px; color: #777; margin-bottom: 10px; }
.lc-case-meta { font-size: 12px; color: #666; display: flex; flex-direction: column; gap: 3px; margin-bottom: 14px; }
.lc-case-actions { display: flex; gap: 8px; }

/* ─── Case single ───────────────────────────────────────────── */
.lc-case-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.lc-case-header-number { font-family: 'Cinzel', serif; font-size: 13px; color: #a0834c; font-weight: 700; margin-bottom: 4px; }
.lc-case-header-meta { font-size: 13px; color: #777; margin-top: 6px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.lc-case-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }

.lc-case-subnav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e5e0d8;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lc-case-subnav::-webkit-scrollbar { display: none; }
.lc-subnav-link {
  padding: 10px 18px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #777;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.lc-subnav-link:hover { color: #0d2443; }
.lc-subnav-link.active { color: #0d2443; border-bottom-color: #a0834c; }

.lc-case-body { display: grid; grid-template-columns: 1fr 300px; gap: 20px; }
.lc-case-main {}
.lc-case-sidebar {}
.lc-case-description { font-size: 15px; line-height: 1.7; color: #333; }

/* Participants */
.lc-participant-group { margin-bottom: 20px; }
.lc-participant-group-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: #0d2443;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lc-participant-cards { display: flex; flex-direction: column; gap: 10px; }
.lc-participant-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  background: #faf8f4;
  border-radius: 5px;
}
.lc-participant-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid #e5e0d8; flex-shrink: 0; }
.lc-participant-name { font-weight: 700; font-size: 14px; color: #0d2443; }
.lc-participant-bio  { font-size: 12px; color: #777; margin-top: 2px; }

/* Sidebar */
.lc-sidebar-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 16px;
}
.lc-sidebar-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: #0d2443;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e0d8;
}
.lc-sidebar-link {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  color: #333;
  border-radius: 4px;
  transition: background .15s;
}
.lc-sidebar-link:hover { background: #f0ece5; color: #0d2443; }
.lc-sidebar-event { padding: 8px 0; border-bottom: 1px solid #f0ece5; }
.lc-sidebar-event:last-of-type { border-bottom: none; }
.lc-sidebar-event-date { font-size: 11px; color: #a0834c; font-weight: 700; }
.lc-sidebar-event-title { font-size: 13px; color: #333; }
.lc-sidebar-more { display: block; font-size: 12px; color: #a0834c; margin-top: 10px; }
.lc-sidebar-more:hover { text-decoration: underline; }

/* ─── Documents ─────────────────────────────────────────────── */
.lc-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.lc-doc-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.lc-doc-card:hover { box-shadow: 0 3px 12px rgba(13,36,67,.08); }
.lc-doc-ext {
  width: 44px; height: 44px;
  background: #0d2443;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  flex-shrink: 0;
}
.lc-doc-info { flex: 1; min-width: 0; }
.lc-doc-title { font-weight: 700; font-size: 14px; color: #0d2443; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lc-doc-meta  { display: flex; gap: 8px; align-items: center; margin-bottom: 4px; font-size: 12px; }
.lc-doc-uploader { font-size: 11px; color: #999; }
.lc-doc-desc     { font-size: 12px; color: #666; margin-top: 4px; }
.lc-doc-actions  { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; flex-shrink: 0; }

/* File drop zone */
.lc-file-drop {
  border: 2px dashed #d0c8be;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}
.lc-file-drop:hover, .lc-file-drop.drag-over { border-color: #a0834c; background: #fef9f2; }
.lc-file-drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.lc-file-drop p { font-size: 14px; color: #555; pointer-events: none; }
.lc-file-drop small { font-size: 12px; color: #999; pointer-events: none; }

/* ─── Hearings ──────────────────────────────────────────────── */
.lc-hearings-list { display: flex; flex-direction: column; gap: 14px; }
.lc-hearing-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 20px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: start;
  transition: box-shadow .2s;
}
.lc-hearing-card:hover { box-shadow: 0 3px 12px rgba(13,36,67,.08); }
.lc-hearing-card--past { opacity: .7; }
.lc-hearing-card-date {
  background: #0d2443;
  color: #fff;
  border-radius: 5px;
  padding: 12px 8px;
  text-align: center;
}
.lc-date-day   { font-family: 'Cinzel', serif; font-size: 26px; font-weight: 700; line-height: 1; }
.lc-date-month { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: .8; margin: 4px 0; }
.lc-date-year  { font-size: 11px; opacity: .6; }
.lc-hearing-card-header { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.lc-hearing-card-title  { font-size: 16px; font-weight: 700; color: #0d2443; }
.lc-hearing-card-meta   { font-size: 13px; color: #666; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.lc-hearing-video-link  { color: #a0834c; }
.lc-hearing-notes       { font-size: 13px; color: #555; margin-top: 10px; border-top: 1px solid #f0ece5; padding-top: 10px; }
.lc-hearing-card-actions { display: flex; gap: 8px; flex-direction: column; align-items: flex-end; }

/* ─── Decisions ─────────────────────────────────────────────── */
.lc-decisions-list { display: flex; flex-direction: column; gap: 14px; }
.lc-decision-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 0;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 0;
  overflow: hidden;
  transition: box-shadow .2s;
}
.lc-decision-card:hover { box-shadow: 0 3px 12px rgba(13,36,67,.08); }
.lc-decision-card-aside {
  background: #f8f5f0;
  padding: 20px 14px;
  border-right: 1px solid #e5e0d8;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  position: relative;
}
.lc-decision-status-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #d0c8be;
}
.lc-decision-card--draft   .lc-decision-status-bar { background: #bdbdbd; }
.lc-decision-card--issued  .lc-decision-status-bar { background: #1565c0; }
.lc-decision-card--published .lc-decision-status-bar { background: #2e7d32; }
.lc-decision-date   { font-size: 11px; color: #888; text-align: center; }
.lc-decision-card-body { padding: 20px; flex: 1; }
.lc-decision-card-header { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.lc-decision-title  { font-size: 16px; font-weight: 700; color: #0d2443; }
.lc-decision-summary { font-size: 14px; color: #555; line-height: 1.6; }
.lc-decision-full-text { margin-top: 12px; }
.lc-decision-full-text summary { font-size: 13px; color: #a0834c; cursor: pointer; }
.lc-decision-text-body { margin-top: 10px; font-size: 14px; color: #333; line-height: 1.7; padding: 12px; background: #faf8f4; border-radius: 4px; }
.lc-decision-card-actions { padding: 20px 16px; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; border-left: 1px solid #e5e0d8; }

/* ─── Timeline ──────────────────────────────────────────────── */
.lc-timeline { position: relative; }
.lc-timeline-year-group { margin-bottom: 8px; }
.lc-timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: #a0834c;
  letter-spacing: 1px;
  padding: 6px 0 6px 32px;
  border-bottom: 1px solid #e5e0d8;
  margin-bottom: 4px;
}
.lc-timeline-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0ece5;
  align-items: start;
}
.lc-timeline-item:last-child { border-bottom: none; }
.lc-timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #0d2443;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #0d2443;
  margin-top: 4px;
  flex-shrink: 0;
}
.lc-timeline-item--auto .lc-timeline-dot { background: #a0834c; box-shadow: 0 0 0 2px #a0834c; }
.lc-timeline-header { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.lc-timeline-type-label { font-size: 11px; font-family: 'Cinzel', serif; font-weight: 700; color: #a0834c; letter-spacing: .3px; }
.lc-timeline-date  { font-size: 11px; color: #999; }
.lc-timeline-title { font-size: 14px; font-weight: 700; color: #0d2443; }
.lc-timeline-desc  { font-size: 13px; color: #666; margin-top: 4px; }

/* ─── Messages ──────────────────────────────────────────────── */
.lc-messages-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  min-height: 560px;
  overflow: hidden;
}
.lc-thread-list { border-right: 1px solid #e5e0d8; overflow-y: auto; }
.lc-thread-item {
  padding: 14px 16px;
  border-bottom: 1px solid #f0ece5;
  display: grid;
  grid-template-columns: 40px 1fr 8px;
  gap: 10px;
  cursor: pointer;
  transition: background .15s;
  position: relative;
  align-items: start;
}
.lc-thread-item:hover { background: #faf8f4; }
.lc-thread-item.unread { background: #fef9f2; }
.lc-thread-avatar img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.lc-thread-subject { font-size: 14px; font-weight: 700; color: #0d2443; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lc-thread-meta { font-size: 11px; color: #999; display: flex; gap: 6px; margin: 2px 0; }
.lc-thread-preview { font-size: 12px; color: #777; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lc-unread-dot { width: 8px; height: 8px; background: #a0834c; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.lc-message-view { padding: 24px; overflow-y: auto; }
.lc-message-view-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: #bbb; gap: 12px; }
.lc-thread-view {}
.lc-thread-subject-title { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700; color: #0d2443; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #e5e0d8; }
.lc-msg-bubble { display: flex; gap: 12px; margin-bottom: 16px; }
.lc-msg-bubble--mine { flex-direction: row-reverse; }
.lc-msg-avatar img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.lc-msg-body-wrap { max-width: 70%; }
.lc-msg-meta { display: flex; gap: 8px; font-size: 11px; color: #999; margin-bottom: 6px; }
.lc-msg-bubble--mine .lc-msg-meta { flex-direction: row-reverse; }
.lc-msg-body { background: #f0ece5; border-radius: 6px; padding: 10px 14px; font-size: 14px; line-height: 1.6; }
.lc-msg-bubble--mine .lc-msg-body { background: #0d2443; color: #fff; }
.lc-reply-form { margin-top: 24px; padding-top: 16px; border-top: 2px solid #e5e0d8; }

/* ─── Profile ───────────────────────────────────────────────── */
.lc-profile-layout { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: start; }
.lc-profile-avatar-col { text-align: center; }
.lc-avatar-wrap { position: relative; display: inline-block; margin-bottom: 14px; }
.lc-avatar-lg { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid #e5e0d8; display: block; }
.lc-avatar-upload-btn {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-family: 'Cinzel', serif;
  color: #a0834c;
  cursor: pointer;
  text-decoration: underline;
}
.lc-profile-name  { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 700; color: #0d2443; }
.lc-profile-email { font-size: 12px; color: #888; margin-top: 4px; }

/* ─── Request form ──────────────────────────────────────────── */
.lc-portal--public .lc-page-content { max-width: 800px; }
.lc-request-header { margin-bottom: 28px; }
.lc-request-intro  { font-size: 15px; color: #555; margin-top: 8px; line-height: 1.6; }
.lc-request-form {}
.lc-multi-upload { display: flex; flex-direction: column; gap: 8px; }
.lc-req-file-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: center; }
.lc-req-file-row input[type=file] { font-size: 13px; }

/* Success page */
.lc-success-page { text-align: center; padding: 60px 20px; }
.lc-success-icon { font-size: 64px; color: #2e7d32; background: #e8f5e9; width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.lc-success-page h1 { font-family: 'Cinzel', serif; font-size: 28px; color: #0d2443; margin-bottom: 12px; }
.lc-success-page p  { font-size: 16px; color: #555; margin-bottom: 24px; }

/* ─── Arbitrators ───────────────────────────────────────────── */
.lc-arbitrators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.lc-arbitrator-card {
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #faf8f4;
  transition: box-shadow .2s;
}
.lc-arbitrator-card:hover { box-shadow: 0 3px 12px rgba(13,36,67,.08); background: #fff; }
.lc-arbitrator-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid #e5e0d8; flex-shrink: 0; }
.lc-arbitrator-name  { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 700; color: #0d2443; }
.lc-arbitrator-role  { font-size: 11px; color: #a0834c; font-family: 'Cinzel', serif; font-weight: 700; letter-spacing: .5px; margin: 3px 0 8px; }
.lc-arbitrator-bio   { font-size: 13px; color: #555; line-height: 1.5; }

/* ─── Login page ────────────────────────────────────────────── */
.lc-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f4f0;
  padding: 40px 20px;
}
.lc-login-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 24px rgba(13,36,67,.09);
}
.lc-login-logo {
  text-align: center;
  margin-bottom: 32px;
}
.lc-login-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  color: #0d2443;
  letter-spacing: 4px;
}
.lc-login-logo-sub {
  font-size: 11px;
  color: #a0834c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.lc-login-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #0d2443;
  text-align: center;
  margin-bottom: 24px;
}
.lc-login-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}
.lc-login-footer a { color: #a0834c; }

/* 2FA digit inputs */
.lc-otp-inputs { display: flex; gap: 8px; justify-content: center; margin: 16px 0; }
.lc-otp-inputs input {
  width: 46px; height: 54px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  border: 2px solid #d0c8be;
  border-radius: 5px;
  color: #0d2443;
  transition: border-color .2s;
}
.lc-otp-inputs input:focus { outline: none; border-color: #0d2443; }

/* ─── Dashboard (lc-dash-* classes used by tmpl-dashboard.php) ───── */

.lc-page-subtitle { font-size: 13px; color: #888; margin-top: 4px; }
.lc-case-link { color: #0d2443; font-weight: 600; }
.lc-case-link:hover { color: #a0834c; text-decoration: underline; }

/* Stat row */
.lc-dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.lc-dash-stat {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 18px 20px;
  text-align: center;
  transition: box-shadow .2s;
}
.lc-dash-stat:hover { box-shadow: 0 3px 12px rgba(13,36,67,.08); }
.lc-dash-stat--alert { border-left: 4px solid #a0834c; }
.lc-dash-stat-n {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  color: #0d2443;
  line-height: 1;
  margin-bottom: 4px;
}
.lc-dash-stat--alert .lc-dash-stat-n { color: #a0834c; }
.lc-dash-stat-l { font-size: 12px; color: #777; }

/* Dashboard grid */
.lc-dash-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.lc-dash-panel {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 6px;
  padding: 20px 22px;
}
.lc-dash-panel--wide { grid-column: 1 / -1; }

.lc-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0ece5;
}
.lc-panel-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: #0d2443;
}
.lc-panel-link {
  font-size: 12px;
  color: #a0834c;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Libre Baskerville', serif;
}
.lc-panel-link:hover { text-decoration: underline; }

/* Upcoming hearings in dashboard */
.lc-hearing-list { display: flex; flex-direction: column; gap: 12px; }
.lc-hearing-item {
  padding: 10px 12px;
  background: #faf8f4;
  border-radius: 5px;
  border-left: 3px solid #0d2443;
}
.lc-hearing-date  { font-size: 11px; color: #a0834c; font-weight: 700; font-family: 'Cinzel', serif; margin-bottom: 3px; }
.lc-hearing-title { font-size: 14px; font-weight: 700; color: #0d2443; margin-bottom: 3px; }
.lc-hearing-case  { font-size: 12px; color: #777; margin-bottom: 5px; }
.lc-hearing-video { font-size: 12px; color: #a0834c; display: block; margin-top: 4px; }
.lc-hearing-loc   { font-size: 12px; color: #666; margin-top: 3px; }

/* Notifications in dashboard */
.lc-notif-list { display: flex; flex-direction: column; }
.lc-notif-item {
  padding: 10px 0;
  border-bottom: 1px solid #f0ece5;
  cursor: pointer;
  transition: background .1s;
}
.lc-notif-item:last-child { border-bottom: none; }
.lc-notif-item--unread { background: #fef9f2; padding-left: 8px; border-left: 3px solid #a0834c; margin-left: -8px; }
.lc-notif-title { font-size: 13px; font-weight: 700; color: #0d2443; }
.lc-notif-msg   { font-size: 12px; color: #555; margin-top: 2px; }
.lc-notif-time  { font-size: 11px; color: #999; margin-top: 3px; }

/* Quick-action buttons */
.lc-quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lc-quick-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #0d2443;
  background: #fff;
  border: 2px solid #0d2443;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.lc-quick-action-btn:hover { background: #0d2443; color: #fff; }

/* ─── Auth / Login card (lc-auth-* classes used by tmpl-login.php) ─ */

/* On the login page the portal div has no nav — centre the card */
.lc-portal.lc-login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 20px;
  background: transparent; /* let Elementor section background show */
}

.lc-auth-card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 24px rgba(13,36,67,.09);
}

.lc-auth-logo {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: #0d2443;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 4px;
}

.lc-auth-org {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: #a0834c;
  text-align: center;
  margin-bottom: 24px;
}

.lc-auth-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: #0d2443;
  text-align: center;
  margin-bottom: 24px;
}

.lc-auth-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: #0d2443;
  margin-bottom: 16px;
  margin-top: 8px;
}

.lc-auth-desc {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

.lc-auth-footer {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #777;
}
.lc-auth-footer a { color: #a0834c; }
.lc-auth-footer a:hover { text-decoration: underline; }

/* Password field with eye-toggle */
.lc-input-eye { position: relative; display: flex; align-items: center; }
.lc-input-eye .lc-input { padding-right: 44px; }
.lc-eye-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #999;
  padding: 0;
  line-height: 1;
}
.lc-eye-toggle:hover { color: #0d2443; }

/* Inline form group (checkbox + link on same row) */
.lc-form-group--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lc-link-subtle { font-size: 12px; color: #a0834c; white-space: nowrap; }
.lc-link-subtle:hover { text-decoration: underline; }

/* Form-level error message */
.lc-form-error {
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #c62828;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 12px;
}

/* Divider between login form and reset form */
.lc-divider {
  height: 1px;
  background: #e5e0d8;
  margin: 24px 0;
}

/* Secondary button variant (for password reset submit) */
.lc-btn--secondary {
  background: #a0834c;
  color: #fff;
  border-color: #a0834c;
}
.lc-btn--secondary:hover {
  background: #8c6e3c;
  border-color: #8c6e3c;
  color: #fff;
}

/* Generic form class (wraps the form element itself) */
.lc-form { width: 100%; }

/* Elementor container padding reset — removed.
   Previously this used negative margins to make the nav "break out" of
   the Elementor widget padding; it actually caused the nav to stretch
   beyond the intended 1350 px column and meet the screen edges.
   The nav now uses max-width: 1350px + auto margins instead. */

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lc-case-body          { grid-template-columns: 1fr; }
  .lc-dashboard-grid     { grid-template-columns: 1fr; }
  .lc-messages-layout    { grid-template-columns: 1fr; }
  .lc-thread-list        { max-height: 300px; border-right: none; border-bottom: 1px solid #e5e0d8; }
  .lc-profile-layout     { grid-template-columns: 1fr; }
  .lc-profile-avatar-col { text-align: center; }
  .lc-decision-card      { grid-template-columns: 1fr; }
  .lc-decision-card-aside { flex-direction: row; padding: 12px 16px; border-right: none; border-bottom: 1px solid #e5e0d8; }
  .lc-decision-card-actions { border-left: none; border-top: 1px solid #e5e0d8; flex-direction: row; }
}
@media (max-width: 640px) {
  .lc-portal-nav         { padding: 0 14px; }
  .lc-nav-links          { display: none; }
  .lc-page-content       { padding: 20px 14px 48px; }
  .lc-form-row           { grid-template-columns: 1fr; }
  .lc-hearing-card       { grid-template-columns: 60px 1fr; }
  .lc-hearing-card-actions { grid-column: 1/-1; flex-direction: row; }
  .lc-req-file-row       { grid-template-columns: 1fr; }
  .lc-cases-grid         { grid-template-columns: 1fr; }
  .lc-login-card         { padding: 28px 20px; }
}
