:root {
  --blue: #0049ff;
  --blue-2: #2f7fff;
  --yellow: #ffb600;
  --sky: #9ac1f0;
  --ice: #eaf2ff;
  --ink: #151523;
  --muted: #6d7485;
  --line: #e5e9f2;
  --panel: #ffffff;
  --bg: #f7f8fa;
  --success: #16a66a;
  --danger: #ff5a5f;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(21, 21, 35, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 182, 0, 0.12), transparent 34rem),
    linear-gradient(135deg, #f8fbff 0%, var(--bg) 48%, #f5f7fb 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

.login-mask[hidden] {
  display: none;
}

.login-mask {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 182, 0, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(0, 73, 255, 0.94), rgba(21, 21, 35, 0.9));
}

.login-card {
  width: min(420px, 100%);
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(21, 21, 35, 0.28);
}

.login-card .brand-mark {
  width: 58px;
  height: 58px;
}

.login-card h1 {
  font-size: 30px;
}

.login-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 248px;
  padding: 28px 18px;
  color: #fff;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.brand strong {
  display: block;
  font-size: 24px;
  font-weight: 950;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.nav {
  display: grid;
  gap: 8px;
}

.nav-item {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  text-align: left;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 800;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.nav-item:hover,
.nav-item.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(2px);
}

.side-note {
  margin-top: auto;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
}

.side-note span {
  width: 42px;
  height: 8px;
  display: block;
  border-radius: 99px;
  background: var(--yellow);
}

.side-note p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 13px;
}

.shell {
  margin-left: 248px;
  padding: 30px;
  min-width: 0;
}

.topbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 950;
}

h2 {
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
}

.top-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.search {
  width: 320px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  box-shadow: 0 10px 28px rgba(21, 21, 35, 0.05);
}

.search span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.session-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(21, 21, 35, 0.05);
}

.session-pill.is-secure {
  border-color: rgba(22, 166, 106, 0.24);
  color: var(--success);
  background: rgba(22, 166, 106, 0.08);
}

.logout-btn[hidden] {
  display: none;
}

.primary-btn,
.ghost-btn,
.mini-btn {
  border: 0;
  border-radius: 16px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 28px rgba(0, 73, 255, 0.22);
}

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

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 66px;
  height: 40px;
  padding: 0 16px;
  color: var(--blue);
  background: var(--ice);
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 78px;
  max-width: 100%;
  height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--yellow);
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: horizontal-tb;
  overflow-wrap: normal;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.taxonomy-summary {
  display: grid;
  gap: 18px;
}

.taxonomy-group {
  display: grid;
  gap: 10px;
}

.taxonomy-group strong {
  font-size: 15px;
  font-weight: 950;
}

.taxonomy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.taxonomy-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: #f1f5e8;
  font-size: 13px;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-card {
  min-height: 128px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 233, 242, 0.78);
}

.metric-card strong {
  display: block;
  margin-top: 18px;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.metric-card[data-tone="blue"] {
  background: var(--blue);
  color: #fff;
}

.metric-card[data-tone="blue"] span {
  color: rgba(255, 255, 255, 0.78);
}

.metric-card[data-tone="yellow"] {
  background: var(--yellow);
}

.metric-card[data-tone="green"] {
  background: #6d9d39;
  color: #fff;
}

.metric-card[data-tone="green"] span {
  color: rgba(255, 255, 255, 0.78);
}

.metric-card[data-tone="light"] {
  background: var(--ice);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-grid--wide {
  grid-template-columns: minmax(360px, 1.25fr) minmax(280px, 0.75fr);
}

.bar-list,
.followup-list,
.top-job-list {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  gap: 8px;
}

.bar-row-head,
.top-job-item,
.followup-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bar-row-head span,
.followup-item small,
.top-job-item small {
  color: var(--muted);
}

.bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #edf2fb;
}

.bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.followup-item,
.top-job-item {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.followup-item {
  align-items: flex-start;
}

.followup-item strong,
.top-job-item strong {
  display: block;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.followup-item small,
.top-job-item small {
  display: block;
  margin-top: 4px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.followup-item-meta {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: 46%;
}

.followup-item-meta span,
.top-job-item > span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  padding: 0 10px;
  background: var(--ice);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.top-job-item > span {
  width: 30px;
  padding: 0;
  color: var(--ink);
  background: var(--yellow);
}

.top-job-item > div {
  min-width: 0;
  flex: 1 1 auto;
}

.top-job-item b {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 18px;
}

.panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(229, 233, 242, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-head > select {
  width: auto;
  min-width: 150px;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.panel-actions select {
  width: auto;
  min-width: 150px;
}

.panel-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: start;
}

.form-panel {
  position: sticky;
  top: 24px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #303545;
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #f8faff;
  outline: none;
}

input,
select {
  height: 44px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
  line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 73, 255, 0.1);
}

.wide-label,
.check-row {
  margin-top: 14px;
}

.cover-upload {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8faff;
}

.cover-upload-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cover-upload-head strong {
  color: var(--ink);
  font-size: 14px;
}

.cover-upload-head p,
.cover-upload-status {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  color: #141519;
  background: #d8f040;
  cursor: pointer;
  white-space: nowrap;
}

.file-input {
  display: none;
}

.cover-preview {
  display: block;
  width: 100%;
  aspect-ratio: 75 / 32;
  border-radius: 14px;
  object-fit: cover;
  background: #141519;
}

.cover-upload-status.is-success {
  color: #218739;
}

.cover-upload-status.is-error {
  color: var(--danger);
}

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

.check-row input {
  width: 18px;
  height: 18px;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.list {
  min-width: 0;
  display: grid;
  gap: 12px;
  max-height: calc(100vh - 190px);
  overflow: auto;
  padding-right: 4px;
}

.item-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
}

.item-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.item-main > .mini-btn {
  justify-self: end;
}

.item-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.item-title {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.item-title > div {
  min-width: 0;
}

.logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: var(--blue);
}

.article-cover-thumb {
  width: 112px;
  height: 48px;
  flex: 0 0 112px;
  border-radius: 10px;
  object-fit: cover;
  background: #141519;
}

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

.item-title strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.item-title small {
  display: block;
  margin-top: 3px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.item-title small,
.item-meta,
.muted {
  color: var(--muted);
}

.item-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  line-height: 1.5;
  min-width: 0;
}

.item-meta > span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.tag,
.status-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 99px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  background: var(--ice);
  color: var(--blue);
  white-space: normal;
  overflow-wrap: anywhere;
}

.status-tag {
  color: var(--ink);
  background: #f1f4f9;
}

.status-tag.is-hot {
  background: rgba(255, 182, 0, 0.24);
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

td {
  line-height: 1.5;
  font-size: 14px;
}

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

.submission-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.submission-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.submission-card p {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.5;
}

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

.feedback-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.feedback-card-title,
.feedback-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.feedback-content {
  margin: 16px 0;
  padding: 14px;
  border-radius: 14px;
  color: var(--ink);
  background: #f8faff;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.feedback-actions {
  margin-top: 14px;
}

.feedback-actions select {
  flex: 0 0 130px;
}

.feedback-actions input {
  min-width: 0;
  flex: 1;
}

.feedback-actions .primary-btn {
  flex: 0 0 auto;
}

.contact-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.contact-summary span {
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--ice);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.followup-note {
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8faff;
  border: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(320px, 0.8fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: start;
}

.compact-list,
.message-list {
  max-height: calc(100vh - 230px);
  overflow: auto;
  display: grid;
  gap: 12px;
}

.compact-card {
  padding: 14px;
}

.resume-module-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.resume-attachment-list,
.resume-experience-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.attachment-head,
.attachment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.attachment-head {
  padding-top: 4px;
}

.attachment-head strong {
  font-weight: 950;
}

.attachment-head small {
  color: var(--muted);
  font-weight: 800;
}

.attachment-row {
  padding: 12px;
  border-radius: 16px;
  background: #f8faff;
  border: 1px solid var(--line);
}

.attachment-row div {
  min-width: 0;
}

.attachment-row strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.resume-module-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #f8faff;
  border: 1px solid var(--line);
}

.resume-module-row strong,
.message-card strong {
  display: block;
  line-height: 1.35;
}

.resume-module-row small,
.message-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.message-list {
  margin-top: 18px;
}

.message-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.message-card.is-unread {
  border-color: rgba(0, 73, 255, 0.28);
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.message-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.activity-log-list {
  display: grid;
  gap: 12px;
  max-height: calc(100vh - 210px);
  overflow: auto;
  padding-right: 4px;
}

.activity-log-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.activity-log-main {
  display: flex;
  gap: 12px;
  min-width: 0;
}

.activity-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 182, 0, 0.14);
}

.activity-log-main div {
  min-width: 0;
}

.activity-log-card strong {
  display: block;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.activity-log-card p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.activity-log-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.activity-log-meta span {
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f6f8fb;
  overflow-wrap: anywhere;
}

.inline-fields {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.inline-section {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8faff;
}

.inline-section strong {
  color: var(--blue);
  font-size: 13px;
  line-height: 1.35;
}

.inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inline-fields .primary-btn {
  height: 42px;
  box-shadow: none;
}

.toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  min-width: 220px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 16px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 20px 36px rgba(21, 21, 35, 0.22);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.empty {
  padding: 26px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: #fff;
}

@media (max-width: 1180px) {
  .metric-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }

  .split,
  .dashboard-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .form-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .sidebar {
    position: static;
    width: auto;
    min-height: auto;
  }

  .shell {
    margin-left: 0;
    padding: 20px;
  }

  .topbar,
  .top-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .session-pill {
    width: 100%;
  }

  .search {
    width: 100%;
  }

  .metric-grid,
  .form-grid,
  .submission-board,
  .inline-grid,
  .resume-module-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .cover-upload-head {
    align-items: stretch;
    flex-direction: column;
  }

  .upload-btn {
    width: 100%;
  }

  .item-main {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .item-main > .mini-btn {
    justify-self: end;
    min-width: 82px;
    height: 38px;
  }
}

@media (max-width: 420px) {
  .feedback-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .feedback-actions select,
  .feedback-actions input,
  .feedback-actions .primary-btn {
    width: 100%;
    flex: 0 0 auto;
  }

  .shell {
    padding: 14px;
  }

  .panel {
    padding: 16px;
  }

  .panel-head {
    gap: 12px;
  }

  .panel-head > select {
    min-width: 0;
    flex: 1 1 150px;
  }

  .item-card {
    padding: 14px;
  }

  .ghost-btn {
    min-width: 58px;
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .item-main {
    align-items: flex-start;
    gap: 10px;
  }

  .logo {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .mini-btn {
    min-width: 82px;
    height: 38px;
    padding: 0 10px;
    font-size: 14px;
  }

  .item-meta {
    gap: 8px 10px;
  }

  .followup-item {
    display: grid;
  }

  .followup-item-meta {
    max-width: none;
    justify-content: flex-start;
  }
}
