:root {
  --bg: #f4f6f8;
  --panel: #fff;
  --text: #151922;
  --muted: #657083;
  --line: #dfe4ea;
  --accent: #2764e7;
  --accent-dark: #184db8;
  --danger: #b42318;
  --ok: #067647;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.queue-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.queue-tab-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.queue-tab {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--panel);
  font-weight: 800;
}

.queue-tab:hover {
  background: #eef2f7;
}

.queue-tab.is-active {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.queue-tab span {
  margin-left: 4px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 18px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 15px;
}

.topbar p,
.muted,
.detail-meta,
.event-item {
  color: var(--muted);
}

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

button {
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  cursor: pointer;
}

button:hover {
  background: var(--accent-dark);
}

button.secondary {
  color: var(--text);
  background: #eef2f7;
}

button.secondary:hover {
  background: #e0e6ef;
}

button.danger {
  background: var(--danger);
}

.layout {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(460px, 1fr) minmax(320px, 420px);
  gap: 16px;
  padding: 16px;
}

.drafts {
  grid-column: 1 / -1;
  min-width: 0;
}

.queue-card:has(.system-schedule-note) {
  height: 280px;
}

.panel {
  min-height: calc(100vh - 112px);
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.account-settings-panel {
  grid-column: 1 / -1;
  min-height: auto;
}

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

.queue-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.account-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.account-filter-button {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.account-filter-button:hover {
  border-color: #9ab8f8;
  color: var(--accent);
  background: #f4f7ff;
}

.account-filter-button.is-active {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.select-all {
  display: flex;
  grid-template-columns: none;
  grid-auto-flow: column;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.select-all input {
  width: auto;
}

.bulk-account-select {
  width: 180px;
  min-height: 36px;
  padding: 8px 10px;
  font-size: 13px;
}

.bulk-schedule-field,
.bulk-schedule-number {
  display: flex;
  grid-template-columns: none;
  grid-auto-flow: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.bulk-schedule-field input {
  width: 168px;
  min-height: 36px;
  padding: 8px 10px;
  font-size: 13px;
}

.bulk-schedule-number input {
  width: 58px;
  min-height: 36px;
  padding: 8px 6px;
  font-size: 13px;
  text-align: center;
}

.queue-status {
  min-height: 20px;
  margin-bottom: 8px;
}

.batch-progress {
  width: 100%;
  height: 8px;
  margin: 0 0 12px;
  overflow: hidden;
  background: #e5e7eb;
  border-radius: 999px;
}

.batch-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
  transition: width 160ms ease;
}

.batch-progress.is-complete .batch-progress-bar {
  background: #16a34a;
}

.batch-progress.is-error .batch-progress-bar {
  background: var(--danger);
}

.account-panel {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

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

.account-select-all {
  display: inline-flex;
  grid-template-columns: none;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
  min-width: 90px;
  font-size: 16px;
  font-weight: 800;
}

.account-select-all input,
.account-check {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.account-search {
  position: relative;
  display: block;
  width: min(100%, 320px);
}

.account-search span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.account-search input {
  height: 42px;
  padding-left: 38px;
  border-radius: 8px;
  background: #f9fafb;
}

.account-search::before {
  position: absolute;
  top: 50%;
  left: 13px;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 2px solid #98a2b3;
  border-radius: 50%;
  content: "";
  transform: translateY(-58%);
}

.account-search::after {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 1;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #98a2b3;
  content: "";
  transform: rotate(45deg);
}

.intake-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.ingest-card {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.endpoint-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
}

.endpoint-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: #dcfae6;
  color: var(--ok);
  font-size: 12px;
  font-weight: 800;
}

.endpoint-row code {
  overflow: hidden;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.manual-composer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
}

.manual-composer summary {
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 800;
}

.manual-composer form {
  padding: 0 14px 14px;
}

.target-form {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
}

.compact-head {
  margin-bottom: 12px;
}

.binding-summary {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
  color: var(--muted);
  font-size: 14px;
}

.settings-form {
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.change-account-btn {
  margin-bottom: 12px;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2f7;
  color: var(--muted);
  font-size: 13px;
}

.status-pill.ok {
  background: #dcfae6;
  color: var(--ok);
}

.status-pill.error {
  background: #fee4e2;
  color: var(--danger);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
}

textarea {
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

legend {
  padding: 0 6px;
  color: var(--muted);
}

.platform-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.platform-row input {
  width: auto;
}

.draft-list,
.asset-list,
.job-list,
.event-list {
  display: grid;
  gap: 10px;
}

.account-list {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  max-height: 620px;
  overflow: auto;
  padding-bottom: 4px;
}

.draft-card,
.account-card,
.asset-card,
.job-card,
.event-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.asset-preview {
  display: block;
  width: 100%;
  max-height: 220px;
  margin-bottom: 10px;
  border-radius: 6px;
  object-fit: contain;
  background: #f4f6f8;
}

.account-card {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) minmax(156px, 0.8fr);
  align-items: center;
  gap: 14px;
  min-height: 74px;
  border: 0;
  border-radius: 8px;
  padding: 14px 16px;
  background: #f7f7f9;
}

.account-card.invalid {
  opacity: 0.55;
}

.account-avatar-wrap {
  position: relative;
  width: 46px;
  height: 46px;
}

.account-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  place-items: center;
}

.account-avatar-fallback {
  background: #e8edf5;
  color: var(--muted);
  font-weight: 900;
}

.platform-badge {
  position: absolute;
  right: -4px;
  bottom: -3px;
  display: inline-grid;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.account-name {
  overflow: hidden;
  font-size: 16px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-identity {
  min-width: 0;
}

.account-published-count {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.account-published-count strong {
  color: var(--accent);
}

.account-invalid-status {
  margin-top: 4px;
  color: var(--danger);
  font-size: 13px;
  font-weight: 600;
}

.account-note-sync-status {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.2;
}

.account-note-sync-status.synced { color: var(--ok); }
.account-note-sync-status.pending { color: #9a6700; }
.account-note-sync-status.failed { color: var(--danger); }
.account-note-sync-status.disabled { color: var(--muted); }

.account-note-field {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
}

.account-note-field span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.account-note-field input {
  min-width: 0;
  width: 100%;
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.platform-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
}

.platform-group-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.platform-group-head h4 {
  margin: 0;
  font-size: 16px;
}

.platform-group-head span {
  color: var(--muted);
  font-size: 13px;
}

.platform-type-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
}

.platform-type-count {
  white-space: nowrap;
}

.platform-type-count strong {
  color: var(--accent);
  font-weight: 800;
}

.platform-account-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  container-type: inline-size;
}

@container (max-width: 620px) {
  .platform-group-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .platform-group-head > :last-child {
    justify-self: end;
  }

  .platform-type-summary {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .account-card {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .account-note-field {
    grid-column: 1 / -1;
  }
}

.platform-empty {
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
}

.draft-card {
  cursor: pointer;
}

.draft-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgb(39 100 231 / 0.12);
}

.queue-card {
  display: grid;
  grid-template-columns: 52px minmax(190px, 240px) minmax(260px, 1fr) minmax(180px, 300px);
  gap: 14px;
  align-items: start;
  height: 180px;
  overflow: hidden;
}

.queue-select-cell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 32px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.queue-select-cell input {
  width: auto;
}

.queue-controls {
  display: grid;
  align-content: start;
  gap: 8px;
  height: 100%;
  overflow: auto;
}

.queue-controls label {
  font-size: 12px;
}

.queue-controls input,
.queue-controls select {
  font-size: 13px;
}

.schedule-toggle {
  display: flex;
  grid-template-columns: none;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-size: 13px;
}

.schedule-toggle input {
  width: auto;
}

.music-picker-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 32px;
  padding: 6px 9px;
  color: var(--text);
  background: #f9fafb;
  border: 1px solid var(--line);
  font-size: 13px;
  text-align: left;
}

.music-picker-button:hover {
  background: #eef2f7;
}

.music-picker-button span {
  color: #98a2b3;
  font-size: 16px;
  line-height: 1;
}

.music-picker-button em {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  height: 100%;
  overflow: auto;
  padding-right: 4px;
}

.queue-copy p {
  color: var(--text);
  line-height: 1.45;
  white-space: pre-wrap;
}

.queue-cloud-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  color: var(--muted);
  font-size: 12px;
}

.queue-cloud-status .error-text {
  width: 100%;
}

.queue-refresh-btn {
  min-height: 28px;
  padding: 3px 8px;
  font-size: 12px;
}

.queue-assets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(58px, 1fr));
  align-content: start;
  gap: 8px;
  height: 100%;
  overflow: auto;
  padding-right: 4px;
}

.queue-assets img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  object-fit: cover;
  background: #f4f6f8;
}

.queue-file,
.queue-empty-assets {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 8px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--muted);
  text-align: center;
}

.music-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgb(0 0 0 / 0.68);
}

.music-overlay[hidden],
.music-drawer[hidden] {
  display: none !important;
}

.music-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 21;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  width: min(100vw, 460px);
  padding: 22px 20px;
  background: #fff;
  box-shadow: -20px 0 40px rgb(15 23 42 / 0.2);
}

.music-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.icon-button {
  display: inline-grid;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 2px solid #8b7cf6;
  border-radius: 8px;
  color: #8b7cf6;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  place-items: center;
}

.icon-button:hover {
  color: #fff;
  background: #8b7cf6;
}

.music-search-row {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}

.music-search-row input {
  height: 44px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding-left: 6px;
}

.music-tabs {
  display: flex;
  gap: 22px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  white-space: nowrap;
}

.music-tab {
  padding: 0 0 10px;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.music-tab.is-active {
  color: #5b47f3;
  border-bottom: 3px solid #5b47f3;
}

.music-tab:hover {
  background: transparent;
}

.music-list {
  display: grid;
  align-content: start;
  gap: 2px;
  overflow: auto;
  padding-right: 6px;
}

.music-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 9px 10px;
  border-radius: 6px;
}

.music-item:hover {
  background: #f2f0ff;
}

.music-play {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background: #777;
  font-size: 11px;
  place-items: center;
}

.music-copy {
  min-width: 0;
}

.music-name {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-author,
.music-duration {
  color: var(--muted);
  font-size: 12px;
}

.music-use {
  padding: 8px 14px;
  border-radius: 6px;
  background: #5b47f3;
  font-weight: 900;
}

.draft-title,
.detail-title {
  font-weight: 700;
}

.inline-copy-edit {
  cursor: text;
  border-radius: 8px;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.inline-copy-edit:hover {
  background: #f3f7ff;
  box-shadow: inset 0 0 0 1px #c8d9f7;
}

.inline-copy-edit.is-editing {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #2563eb;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  font: inherit;
  line-height: inherit;
  padding: 6px 8px;
  outline: none;
  resize: vertical;
}

.inline-copy-edit.is-editing[data-inline-copy-field="title"] {
  font-weight: 700;
}

.draft-meta,
.asset-meta,
.job-meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.detail-title {
  margin-bottom: 6px;
  font-size: 20px;
}

.empty {
  padding: 32px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.asset-form {
  grid-template-columns: 120px 1fr auto;
  align-items: end;
  margin-top: 18px;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.job-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

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

@media (max-width: 1180px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }

  .queue-tabs {
    align-items: stretch;
    flex-direction: column;
    overflow-x: auto;
    padding: 10px 18px;
  }

  .queue-tab-list,
  .queue-toolbar {
    overflow-x: auto;
    width: 100%;
  }

  .queue-toolbar {
    margin-left: 0;
  }

  .account-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
  }

  .account-filter-button {
    flex: 0 0 auto;
  }

  .bulk-schedule-field,
  .bulk-schedule-number,
  .bulk-account-select {
    width: 100%;
  }

  .bulk-schedule-field input,
  .bulk-schedule-number input {
    flex: 1;
    width: auto;
  }

  .account-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .account-search {
    width: 100%;
  }

  .platform-account-list {
    grid-template-columns: 1fr;
  }

  .field-row,
  .platform-row,
  .asset-form {
    grid-template-columns: 1fr;
  }
}
.queue-image-asset,
.queue-file {
  position: relative;
}

.live-photo-tag {
  display: inline-flex;
  align-items: center;
  margin: 4px;
  padding: 2px 5px;
  border-radius: 4px;
  background: #182330;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.publish-alerts { margin: 16px 32px; padding: 16px 20px; border: 1px solid #b8d7c4; border-radius: 10px; background: #f2faf5; color: #263f30; }
.publish-alerts.has-alerts { border-color: #edb56e; background: #fff8ef; color: #784112; }
.publish-alert-heading { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.publish-alert-heading strong { font-size: 19px; }
.publish-alert-heading span, .publish-alert-explanation { font-size: 13px; }
.publish-alert-explanation { margin-top: 8px; line-height: 1.6; }
.publish-alerts summary { cursor: pointer; padding: 12px 0 4px; font-weight: 600; }
.publish-alert-list { max-height: 400px; overflow: auto; margin-top: 8px; display: grid; gap: 10px; }
.publish-alert-item { background: #fff; border: 1px solid #f0dcc4; border-radius: 7px; padding: 14px; color: #30343b; }
.publish-alert-item > div { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.publish-alert-item strong { color: #a34712; }
.publish-alert-item p { margin: 7px 0; line-height: 1.6; overflow-wrap: anywhere; }
.publish-alert-action { font-weight: 600; }
.publish-alert-item a { margin: 0 12px; color: #245dc4; }
@media(max-width: 640px) { .publish-alerts { margin: 12px; padding: 14px; } }
