:root {
  --bg-base: #e8edf5;
  --bg-gradient-1: #e0e7ff;
  --bg-gradient-2: #dbeafe;
  --bg-gradient-3: #e0f2fe;
  --bg-gradient-4: #ede9fe;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-hover: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-border-hover: rgba(255, 255, 255, 0.85);

  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-bg: rgba(37, 99, 235, 0.08);
  --accent-glow: rgba(37, 99, 235, 0.2);
  --accent-2: #0ea5e9;
  --accent-2-dark: #0284c7;

  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.08);
  --warning: #f59e0b;
  --warning-bg: rgba(245, 158, 11, 0.08);
  --error: #ef4444;
  --error-bg: rgba(239, 68, 68, 0.08);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 16px rgba(100, 120, 180, 0.1), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 32px rgba(100, 120, 180, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-primary);
  background:
    linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 25%, var(--bg-gradient-3) 50%, var(--bg-gradient-4) 75%, var(--bg-base) 100%);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

button {
  cursor: pointer;
}

svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.app-shell {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 1680px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 20px;
  flex-direction: column;
  gap: 14px;
}

.panel {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: auto;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-icon {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 4px 12px rgba(96, 1, 210, 0.26);
}

.brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand h1 {
  margin: 0;
  color: var(--text-primary);
  overflow-wrap: anywhere;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.brand p {
  margin: 1px 0 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: auto;
  padding: 6px 14px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  color: var(--success);
  background: var(--success-bg);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

.status-pill.busy {
  color: var(--warning);
  background: var(--warning-bg);
  border-color: rgba(245, 158, 11, 0.15);
}

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

.workspace {
  display: flex;
  flex: 1;
  min-height: 0;
  gap: 14px;
  margin-top: 0;
}

.sidebar {
  position: static;
  display: flex;
  width: 360px;
  min-width: 360px;
  max-height: calc(100vh - 110px);
  min-height: 0;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
}

.section-title svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.section-title strong {
  margin-left: auto;
  min-width: auto;
  min-height: auto;
  padding: 2px 10px;
  border-radius: 20px;
  color: var(--accent);
  background: var(--accent-bg);
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.6;
  font-weight: 600;
}

.section-title.slim {
  font-size: 0.88rem;
}

.input-wrap,
.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-muted);
}

.input-wrap {
  padding: 0;
}

.input-wrap svg {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
}

.sidebar .input-wrap svg {
  width: 15px;
  height: 15px;
}

.input-wrap input,
.select-wrap select {
  width: 100%;
  min-width: 0;
  padding: 9px 14px 9px 38px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  outline: none;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 400;
  transition: var(--transition-fast);
}

.sidebar .input-wrap input {
  padding: 9px 12px 9px 36px;
  background: rgba(255, 255, 255, 0.68);
}

.input-wrap input:focus,
.select-wrap select:focus,
textarea:focus {
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-wrap input::placeholder {
  color: var(--text-muted);
}

.sidebar .input-wrap {
  margin-top: 0;
}

.select-wrap {
  width: 110px;
  min-width: 110px;
}

.select-wrap select {
  appearance: none;
  padding-left: 14px;
  padding-right: 30px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.primary-btn,
.cyan-btn,
.ghost-btn,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: auto;
  padding: 9px 18px;
  border: 0;
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}

.cyan-btn {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.25);
}

.ghost-btn {
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.5);
}

.primary-btn:hover,
.cyan-btn:hover {
  transform: translateY(-1px);
}

.primary-btn:hover {
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}

.cyan-btn:hover {
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.35);
}

.ghost-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.8);
}

.primary-btn:active,
.cyan-btn:active,
.ghost-btn:active {
  transform: scale(0.97);
}

.primary-btn:disabled,
.cyan-btn:disabled,
.ghost-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none !important;
}

.full {
  width: 100%;
  margin-top: 0;
}

.danger-soft {
  color: var(--text-secondary);
}

.danger-soft:hover {
  color: var(--error);
  background: var(--error-bg);
}

.checkline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  padding: 4px 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 400;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
}

.account-list {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  gap: 5px;
  margin-top: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.account-list::-webkit-scrollbar,
.message-list::-webkit-scrollbar {
  width: 5px;
}

.account-list::-webkit-scrollbar-track,
.message-list::-webkit-scrollbar-track {
  background: transparent;
}

.account-list::-webkit-scrollbar-thumb,
.message-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08);
}

.empty-mini {
  display: flex;
  min-height: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 40px 20px;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 400;
}

.empty-mini p {
  margin: 0;
}

.text-muted {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.account-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: auto;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
}

.account-row:hover {
  border-color: rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.6);
}

.account-row.selected {
  border-color: rgba(37, 99, 235, 0.15);
  background: rgba(37, 99, 235, 0.06);
}

.account-email {
  flex: 1;
  min-width: 0;
}

.account-email strong {
  display: block;
  overflow: visible;
  color: var(--text-primary);
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 400;
}

.account-email span {
  display: none;
}

.icon-btn {
  width: 24px;
  min-height: 24px;
  padding: 2px;
  border: 0;
  border-radius: 4px;
  color: var(--error);
  background: none;
  opacity: 0;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

.account-row:hover .icon-btn,
.account-row:focus-within .icon-btn {
  opacity: 0.5;
}

.icon-btn:hover {
  opacity: 1 !important;
  color: var(--error);
  background: var(--error-bg);
  transform: none;
}

.sidebar-footer {
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-footer .ghost-btn {
  padding: 6px 12px;
  font-size: 0.75rem;
}

.content {
  display: flex;
  flex: 1;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  gap: 12px;
}

.toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
}

.filters {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters .wide {
  flex: 1;
}

.filters .sender {
  width: min(330px, 26%);
}

.toolbar-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 0;
}

.protocols,
.actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.protocol {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 5px 14px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 20px;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.06);
  font-size: 0.75rem;
  font-weight: 600;
}

.protocol.muted {
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.06);
}

.actions button {
  min-width: auto;
  padding: 9px 18px;
}

.progress-panel {
  margin-top: 0;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
}

.progress-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
}

.progress-head span {
  overflow-wrap: anywhere;
}

.progress-track {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: width 0.4s ease;
}

.result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 8px 4px;
}

.result-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.result-stats span,
.result-stats strong {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  line-height: 1.6;
  font-weight: 600;
}

.result-stats span {
  color: var(--success);
  background: var(--success-bg);
}

.result-stats strong {
  color: var(--accent);
  background: var(--accent-bg);
}

.message-list {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding-right: 4px;
}

.message-card {
  display: grid;
  gap: 5px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: var(--transition);
}

.message-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.message-card.error {
  border-color: rgba(239, 68, 68, 0.15);
  background: var(--error-bg);
}

.message-card.notice {
  border-color: rgba(14, 165, 233, 0.14);
  background: rgba(14, 165, 233, 0.06);
}

.message-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sender-line {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
}

.sender-line span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: auto;
  padding: 1px 7px;
  border-radius: 4px;
  color: var(--success);
  background: var(--success-bg);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.message-date {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 400;
  white-space: nowrap;
}

.message-card h3 {
  margin: 0;
  overflow: hidden;
  color: var(--text-primary);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
  line-height: 1.4;
  font-weight: 600;
}

.message-card p {
  margin: 0;
  overflow: hidden;
  color: var(--text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.5;
  font-size: 0.78rem;
  font-weight: 400;
}

.message-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.account-mark {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  overflow-wrap: anywhere;
  font-size: 0.7rem;
  font-weight: 400;
}

.code-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.code-chip {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 3px 9px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 8px;
  color: #92400e;
  background: var(--warning-bg);
  font-size: 0.72rem;
  font-weight: 600;
}

.code-chip:hover {
  background: rgba(245, 158, 11, 0.14);
}

.empty-state {
  display: flex;
  flex: 1;
  min-height: 360px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 40px 20px;
  color: var(--text-muted);
  text-align: center;
}

.empty-state svg {
  width: 64px;
  height: 64px;
  margin-bottom: 6px;
  opacity: 0.15;
}

.empty-state p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.empty-state span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(148, 163, 184, 0.3);
  backdrop-filter: blur(6px);
}

.modal {
  width: min(760px, 90vw);
  max-height: 80vh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
}

.modal.small {
  width: min(560px, 90vw);
}

.modal.detail {
  display: grid;
  grid-template-rows: auto auto auto auto minmax(260px, 1fr);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 0;
}

.modal-head h2 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
}

textarea {
  display: block;
  width: calc(100% - 48px);
  min-height: 220px;
  margin: 16px 24px 0;
  padding: 14px;
  resize: vertical;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  outline: 0;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.7);
  font-family: "SF Mono", "Fira Code", Consolas, monospace;
  font-size: 0.8rem;
  line-height: 1.7;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 24px 24px;
}

.modal-actions button {
  min-width: auto;
  padding: 9px 18px;
}

.meta-grid {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 6px 8px;
  margin: 16px 24px 14px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
  font-size: 0.8rem;
}

.meta-grid dt {
  color: var(--text-muted);
  font-weight: 400;
}

.meta-grid dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--text-secondary);
  font-weight: 400;
}

#detailCodes,
.detail-tools {
  margin: 0 24px 12px;
}

.detail-tools {
  display: flex;
  justify-content: flex-end;
}

.detail-tools .ghost-btn {
  min-height: auto;
  padding: 6px 12px;
  font-size: 0.75rem;
}

#detailFrame {
  width: calc(100% - 48px);
  min-height: 320px;
  margin: 0 24px 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  background: #fff;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  max-width: min(380px, calc(100vw - 40px));
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .workspace {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    min-width: unset;
    max-height: 300px;
  }

  .filters {
    flex-wrap: wrap;
  }

  .filters .wide,
  .filters .sender,
  .select-wrap {
    width: 100%;
    min-width: unset;
    flex: 1 1 100%;
  }

  .toolbar-bottom,
  .result-head {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .app-shell {
    padding: 10px;
  }

  .topbar {
    padding: 12px 16px;
  }

  .brand h1 {
    font-size: 1.1rem;
  }

  .brand p {
    font-size: 0.7rem;
  }

  .toolbar-bottom {
    gap: 10px;
  }

  .actions {
    width: 100%;
  }

  .actions .primary-btn,
  .actions .cyan-btn {
    flex: 1;
  }

  .modal-backdrop {
    padding: 10px;
  }

  .modal-head,
  .modal-actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  textarea,
  #detailFrame {
    width: calc(100% - 36px);
    margin-left: 18px;
    margin-right: 18px;
  }

  .meta-grid,
  #detailCodes,
  .detail-tools {
    margin-left: 18px;
    margin-right: 18px;
  }

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