:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef2fb;
  --line: #d8deea;
  --text: #1c2733;
  --muted: #5e6b7c;
  --primary: #3655a7;
  --primary-dark: #243d7b;
  --accent: #6b8cff;
  --success: #1d7f53;
  --warning: #c47b11;
  --danger: #c74852;
  --shadow: 0 14px 30px rgba(32, 57, 114, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1240px;
  --label-col: 190px;
  --font: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
}

body {
  min-width: 320px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

code {
  padding: 0.12rem 0.35rem;
  border-radius: 0.35rem;
  background: #eef2ff;
  color: var(--primary-dark);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-links {
  position: fixed;
  inset: 8px auto auto 8px;
  display: flex;
  gap: 8px;
  z-index: 200;
}

.skip-links a {
  transform: translateY(-200%);
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  font-size: 0.92rem;
}

.skip-links a:focus {
  transform: translateY(0);
}

.utility-bar {
  border-bottom: 1px solid var(--line);
  background: #f8f8fb;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  gap: 16px;
}

.utility-right,
.utility-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.93rem;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
}

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

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand span {
  display: block;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
}

.search-box {
  display: flex;
  align-items: center;
  width: min(420px, 100%);
  margin-left: auto;
  border: 2px solid var(--primary);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.search-box input {
  width: 100%;
  border: 0;
  padding: 14px 16px;
  background: transparent;
}

.search-box button {
  min-width: 72px;
  height: 50px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.desktop-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.desktop-nav-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.gnb-item {
  position: relative;
}

.gnb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.gnb-item.is-active > .gnb-link,
.gnb-item:hover > .gnb-link {
  color: var(--primary);
}

.gnb-submenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: var(--shadow);
  z-index: 10;
}

.gnb-item:hover .gnb-submenu,
.gnb-item:focus-within .gnb-submenu {
  display: block;
}

.gnb-submenu ul {
  margin: 0;
  padding: 14px 18px;
  list-style: none;
}

.gnb-submenu a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
}

.gnb-submenu a:hover {
  color: var(--primary);
}

.mobile-drawer,
.mobile-backdrop {
  display: none;
}

.sub-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 42%, rgba(255,255,255,0.32) 100%),
    linear-gradient(135deg, #eef3ff 0%, #fef7ee 100%);
  border-bottom: 1px solid var(--line);
}

.sub-visual::before,
.sub-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(54, 85, 167, 0.08);
}

.sub-visual::before {
  width: 240px;
  height: 240px;
  left: -80px;
  top: 40px;
}

.sub-visual::after {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -120px;
}

.sub-visual-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 20px;
  min-height: 270px;
}

.sub-copy {
  position: relative;
  z-index: 1;
  padding: 28px 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(54, 85, 167, 0.12);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.sub-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.2;
}

.sub-copy > p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.sub-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mode-badge,
.tf-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.mode-badge {
  background: #eef2ff;
  color: var(--primary-dark);
}

.tf-badge {
  background: #edf8f3;
  color: var(--success);
}

.sub-art {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.page-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 36px 0 72px;
}

.page-shell.is-home {
  grid-template-columns: 1fr;
}

#side-nav[hidden] {
  display: none !important;
}

.side-card {
  position: sticky;
  top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 26px 26px 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.side-card h2 {
  margin: 0;
  padding: 28px 24px;
  background: radial-gradient(circle at 20% 20%, rgba(109, 151, 255, 0.4), rgba(54,85,167,1));
  color: #fff;
  font-size: 1.7rem;
}

.side-nav-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.side-nav-list li + li {
  border-top: 1px solid #edf1f8;
}

.side-nav-list a {
  display: block;
  padding: 18px 24px;
  font-weight: 600;
}

.side-nav-list li.is-active a {
  color: var(--primary);
  background: #f4f7ff;
}

.page-main {
  min-width: 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: #8a96a9;
}

.page-heading-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #d4dced;
}

.page-heading-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.page-mini-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: #1f2937;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-title {
  margin: 0;
  font-size: clamp(1.95rem, 2.8vw, 2.6rem);
  line-height: 1.25;
}

.page-description {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-block {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-block.compact {
  padding: 24px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h3 {
  margin: 0 0 6px;
  font-size: 1.42rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.home-grid,
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
}

.hero-card,
.summary-card,
.info-card,
.feature-card,
.timeline-card,
.link-card,
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  padding: 30px;
}

.hero-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.32;
}

.hero-card p {
  color: var(--muted);
}

.hero-points {
  display: grid;
  gap: 12px;
}

.mini-stat {
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 18px;
  border: 1px solid #e4eaf7;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6f8ff, #ffffff);
}

.mini-stat strong {
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.summary-card,
.info-card {
  padding: 26px;
}

.summary-card h3,
.info-card h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  padding: 20px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.stat-value {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.1;
}

.link-card-grid,
.feature-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.link-card {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.link-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  transition: 0.2s ease;
}

.link-card strong {
  color: var(--primary-dark);
  font-size: 1.07rem;
}

.link-card span,
.feature-card p,
.timeline-card p {
  color: var(--muted);
}

.feature-card,
.timeline-card {
  padding: 22px;
}

.feature-card h4,
.timeline-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.key-value-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.key-value-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e3e9f6;
}

.key-value-list dt {
  color: var(--muted);
}

.key-value-list dd {
  margin: 0;
  font-weight: 700;
}

.alert-box {
  padding: 18px 20px;
  border: 1px solid #d7e4ff;
  border-radius: 16px;
  background: #f5f8ff;
}

.alert-box.subtle {
  background: #fafbfe;
  border-color: #e6ebf5;
}

.alert-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.toolbar h3 {
  margin: 0 0 6px;
}

.toolbar-note {
  margin: 0;
  color: var(--muted);
}

.filter-panel {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid #e4eaf7;
  border-radius: 18px;
  background: #f8faff;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.filter-grid label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.filter-grid label span {
  font-size: 0.92rem;
  color: var(--muted);
}

.filter-grid .wide {
  grid-column: span 1;
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: end;
}

.table-scroll {
  overflow-x: auto;
}

.tbl-list,
.tbl-form {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #8f9bb5;
}

.tbl-list th,
.tbl-list td,
.tbl-form th,
.tbl-form td {
  border-bottom: 1px solid #d8dee9;
  vertical-align: middle;
}

.tbl-list th {
  padding: 14px 12px;
  background: #f3f6fb;
  text-align: center;
  font-size: 0.95rem;
}

.tbl-list td {
  padding: 14px 12px;
  text-align: center;
}

.tbl-form th {
  width: var(--label-col);
  padding: 14px 16px;
  background: #f6f7f9;
  text-align: center;
  font-size: 1rem;
}

.tbl-form td {
  padding: 12px 16px;
  background: #fff;
}

.table-school {
  display: grid;
  gap: 2px;
  text-align: left;
}

.table-school strong {
  font-weight: 700;
}

.table-school span {
  color: var(--muted);
  font-size: 0.92rem;
}

.empty-cell {
  padding: 32px 16px !important;
  color: var(--muted);
}

input[type="text"],
input[type="search"],
input[type="date"],
select,
textarea {
  width: min(100%, 520px);
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid #bfc8d8;
  border-radius: 8px;
  background: #fff;
}

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

select[multiple] {
  min-height: 150px;
}

.field-stack {
  display: grid;
  gap: 8px;
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.school-meta {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px dashed #c7d3ea;
  border-radius: 12px;
  background: #f8fbff;
  color: var(--muted);
  font-size: 0.94rem;
}

.school-meta strong {
  color: var(--text);
}

.inline-inputs,
.radio-group,
.check-line,
.button-row,
.button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.inline-inputs label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.inline-inputs input {
  width: 120px;
}

.radio-group label,
.check-line {
  font-weight: 600;
}

.static-field {
  display: grid;
  gap: 6px;
}

.button-row {
  margin-top: 20px;
}

.button-row.center {
  justify-content: center;
}

.button-stack {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.btn-small {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.9rem;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #4a4f57;
  color: #fff;
}

.btn-outline {
  border-color: #adb7ca;
  background: #fff;
  color: var(--text);
}

.inline-status-select {
  min-width: 118px;
  width: auto;
  min-height: 38px;
  padding: 8px 10px;
}

.result-box {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid #d4e7dc;
  border-radius: 16px;
  background: #f3fbf6;
}

.result-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--success);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.status-received {
  background: #edf2ff;
  color: var(--primary-dark);
}

.status-review {
  background: #fff4dc;
  color: #8a5b00;
}

.status-approved {
  background: #edf8f3;
  color: var(--success);
}

.status-revise {
  background: #fff2df;
  color: var(--warning);
}

.status-rejected {
  background: #ffecef;
  color: var(--danger);
}

.status-default {
  background: #eff2f6;
  color: var(--muted);
}

.cell-highlight {
  background: #f2f6ff !important;
  color: var(--primary-dark);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-item summary {
  position: relative;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 1.3rem;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--muted);
}

.compare-table td:first-child,
.compare-table th:first-child {
  min-width: 150px;
}

.detail-dialog {
  width: min(880px, calc(100% - 32px));
  border: 0;
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.detail-dialog::backdrop {
  background: rgba(15, 24, 44, 0.45);
}

.detail-dialog-inner {
  padding: 0;
}

.detail-dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: #f7f9fd;
}

.dialog-close {
  border: 0;
  background: #4a4f57;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  margin: 0;
}

.detail-grid div {
  padding: 14px;
  border: 1px solid #e4eaf5;
  border-radius: 14px;
  background: #fff;
}

.detail-grid dt {
  color: var(--muted);
  font-size: 0.92rem;
}

.detail-grid dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  gap: 18px;
  padding: 28px 0 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.footer-copy strong {
  display: block;
  margin-bottom: 4px;
}

.footer-copy p {
  margin: 4px 0 0;
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(28, 39, 51, 0.96);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: 0.24s ease;
  z-index: 300;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.is-hidden {
  display: none;
}

@media (max-width: 1180px) {
  .sub-visual-inner,
  .home-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 960px) {
  .masthead {
    min-height: auto;
    padding: 18px 0;
  }

  .search-box {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: -88%;
    width: min(84vw, 360px);
    height: 100vh;
    padding: 0;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0,0,0,0.18);
    z-index: 120;
    transition: right 0.25s ease;
  }

  .mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 24, 44, 0.4);
    z-index: 110;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .drawer-close {
    border: 0;
    background: #4a4f57;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
  }

  .mobile-drawer-body {
    padding: 12px 20px 24px;
  }

  .mobile-nav-group {
    border-bottom: 1px solid #edf1f8;
    padding: 10px 0;
  }

  .mobile-nav-group summary {
    cursor: pointer;
    font-weight: 700;
  }

  .mobile-nav-group ul {
    list-style: none;
    padding: 8px 0 0 0;
    margin: 0;
  }

  .mobile-nav-group li + li {
    margin-top: 6px;
  }

  .mobile-nav-group a {
    color: var(--muted);
  }

  body.drawer-open .mobile-drawer {
    right: 0;
  }

  body.drawer-open .mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .page-shell {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

  .link-card-grid,
  .feature-grid,
  .timeline-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .utility-inner {
    min-height: 40px;
  }

  .utility-right {
    gap: 10px;
    font-size: 0.86rem;
  }

  .sub-visual-inner {
    min-height: auto;
    padding: 18px 0 26px;
  }

  .sub-copy h1 {
    font-size: 2rem;
  }

  .page-shell {
    padding: 24px 0 56px;
    gap: 22px;
  }

  .section-block,
  .summary-card,
  .info-card,
  .hero-card,
  .stat-card {
    padding: 18px;
  }

  .page-title {
    font-size: 1.7rem;
  }

  .tbl-form th,
  .tbl-form td {
    display: block;
    width: 100%;
    text-align: left;
  }

  .tbl-form th {
    padding-bottom: 8px;
  }

  .tbl-form td {
    padding-top: 0;
  }

  input[type="text"],
  input[type="search"],
  input[type="date"],
  select,
  textarea {
    width: 100%;
  }

  .filter-grid,
  .link-card-grid,
  .feature-grid,
  .timeline-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .filter-actions,
  .button-row {
    width: 100%;
    justify-content: stretch;
  }

  .button-row > * {
    flex: 1 1 auto;
  }

  .toolbar {
    flex-direction: column;
  }
}
