:root {
  --bg: #f7f9fc;
  --panel: #ffffff;
  --panel-soft: #f1f7f7;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e6edf5;
  --brand: #0b756f;
  --brand-dark: #0f4f4b;
  --accent: #1877d5;
  --warning: #d97706;
  --rose: #e11d48;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

:root[data-theme="dark"] {
  --bg: #111827;
  --panel: #172033;
  --panel-soft: #123c35;
  --ink: #eef2f7;
  --muted: #a8b3c7;
  --line: #2a374d;
  --brand: #2dd4bf;
  --brand-dark: #14b8a6;
  --accent: #60a5fa;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -220px, rgba(24, 119, 213, 0.12), transparent 420px),
    linear-gradient(180deg, #fbfdff 0, #f7f9fc 420px, #f6f8fb 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

:root[data-theme="dark"] body {
  background: linear-gradient(180deg, #0f172a 0, #111827 360px, #0f172a 100%);
}

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

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

.site-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 22px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94)),
    #fff;
  border-right: 1px solid var(--line);
  color: #fff;
  overflow-y: auto;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 8px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.brand-logo-image {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-mark,
.tool-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #14b8a6, #2563eb);
  color: #fff;
  font-weight: 800;
  overflow: hidden;
}

.image-brand-mark,
.image-hero-logo {
  background: #07162a;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.image-brand-mark img,
.image-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-logo {
  background: #fff;
  border: 1px solid var(--line);
}

.tool-logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.brand small,
.subtitle,
.section-heading span,
.table-row small {
  color: var(--muted);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.category-nav {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #41516a;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.category-item:hover,
.category-item.active {
  background: #eef7f6;
  color: var(--brand-dark);
}

.category-item:hover {
  transform: translateX(2px);
}

.category-group {
  display: grid;
  gap: 4px;
}

.subcategory-nav {
  display: grid;
  gap: 2px;
  padding-left: 14px;
}

.subcategory-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.subcategory-item:hover,
.subcategory-item.active {
  background: #f4f8fb;
  color: var(--brand-dark);
}

.subcategory-item small {
  color: #8a98ad;
}

.category-item small {
  min-width: 26px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #eef2f7;
  color: #64748b;
  text-align: center;
}

.admin-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 22px;
  border-radius: 8px;
  background: #fff;
  color: #10203d;
  font-weight: 700;
}

.theme-toggle {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.sidebar-footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding: 16px 8px 4px;
}

.sidebar-footer span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.admin-link.compact {
  width: 122px;
  margin: 0;
  box-shadow: var(--shadow);
}

.content {
  padding: 34px clamp(18px, 4vw, 64px) 64px;
}

.topbar {
  display: block;
  min-height: 310px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96)),
    #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
}

:root[data-theme="dark"] .topbar,
:root[data-theme="dark"] .search-box,
:root[data-theme="dark"] .tool-card,
:root[data-theme="dark"] .latest-item,
:root[data-theme="dark"] .resource-card,
:root[data-theme="dark"] .detail-hero,
:root[data-theme="dark"] .detail-panel,
:root[data-theme="dark"] .table-panel,
:root[data-theme="dark"] .editor-panel,
:root[data-theme="dark"] .stat-card,
:root[data-theme="dark"] .feedback-modal {
  background: var(--panel);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-search-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 8px 0 4px;
  text-align: center;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.hero-logo-image {
  display: block;
  width: min(360px, 78vw);
  height: auto;
  object-fit: contain;
}

.hero-logo-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f766e, #2563eb);
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.hero-logo strong {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.home-search-hero .subtitle {
  max-width: none;
  color: #5d6b82;
  font-size: 15px;
}

.hero-search-module {
  width: min(760px, 100%);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.hero-search-module .search-box {
  min-height: 58px;
  border-color: rgba(15, 118, 110, 0.2);
  box-shadow:
    0 12px 26px rgba(15, 23, 42, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.hero-search-module .search-box input {
  font-size: 16px;
}

.hero-search-module .search-tabs {
  justify-content: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.subtitle {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

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

.secondary-link {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(37, 99, 235, 0.92)),
    #0f766e;
  color: #fff;
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.22);
}

.hero-panel span {
  display: block;
  font-size: 58px;
  font-weight: 900;
}

.hero-panel small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.hero-mini-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.search-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 14px;
}

.search-module {
  display: grid;
  gap: 8px;
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.search-groups {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 4px;
  overflow-x: auto;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 8px;
  background: #eef4f6;
}

.search-groups button {
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #526173;
  cursor: pointer;
  font-weight: 900;
}

.search-groups button.active {
  border-color: rgba(11, 117, 111, 0.2);
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.search-tabs button {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #526173;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.search-tabs button.active {
  border-color: rgba(11, 117, 111, 0.24);
  background: #eef8f7;
  color: var(--brand-dark);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.search-icon {
  color: var(--brand);
  font-size: 22px;
  font-weight: 900;
}

.search-box input,
.panel-heading input,
form input,
form textarea,
form select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.quick-filters {
  display: flex;
  gap: 8px;
}

.home-tool-count {
  color: var(--muted);
  font-weight: 800;
}

.home-tool-count strong {
  color: var(--brand);
}

.chip,
.ghost-button,
.row-actions button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
}

.chip:hover,
.ghost-button:hover,
.row-actions button:hover,
.secondary-link:hover {
  border-color: rgba(11, 117, 111, 0.28);
  background: #fbfefd;
}

.chip.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.category-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #334155;
  cursor: pointer;
  font-weight: 700;
}

.strip-item small {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 22px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  font-size: 12px;
}

.strip-item.active {
  border-color: rgba(11, 117, 111, 0.24);
  background: #eef8f7;
  color: var(--brand-dark);
}

.section-heading,
.panel-heading,
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.section-heading {
  margin: 30px 0 16px;
}

.category-mode .tool-section .section-heading {
  margin-top: 22px;
}

.category-mode .tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-heading h2,
.panel-heading h2 {
  margin: 0;
  font-size: 22px;
}

.section-heading a {
  color: var(--brand);
  font-weight: 700;
}

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

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

.portal-card {
  display: grid;
  gap: 5px;
  min-height: 84px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.portal-card strong {
  color: var(--ink);
  font-size: 16px;
}

.portal-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.portal-card:hover {
  border-color: rgba(11, 117, 111, 0.24);
  transform: translateY(-1px);
}

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

.lane-card {
  display: grid;
  gap: 7px;
  min-height: 120px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.lane-card strong {
  font-size: 17px;
}

.lane-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.lane-card small {
  align-self: end;
  color: var(--brand);
  font-weight: 800;
}

.lane-card:hover {
  border-color: rgba(11, 117, 111, 0.24);
  transform: translateY(-1px);
}

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

.latest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.latest-item span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.latest-item strong,
.latest-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.latest-item small {
  color: var(--muted);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource-card {
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.resource-card strong {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--accent);
  font-size: 12px;
}

.resource-card h3 {
  margin: 14px 0 8px;
  font-size: 19px;
}

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

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

.tool-card,
.editor-panel,
.table-panel,
.stat-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.tool-card {
  min-height: 76px;
  overflow: hidden;
  padding: 0;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.tool-card:hover {
  border-color: rgba(11, 117, 111, 0.24);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.075);
  transform: translateY(-2px);
}

.compact-card {
  min-height: 76px;
  background: #fff;
}

.tool-card-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 76px;
  min-width: 0;
  padding: 12px;
  color: inherit;
}

.tool-card h3 {
  overflow: hidden;
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-card-copy {
  display: block;
  min-width: 0;
}

.tool-card-copy small {
  display: block;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.save-tool {
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.save-tool.saved,
.secondary-link.saved {
  border-color: #f59e0b;
  background: #fff7ed;
  color: #b45309;
}

:root[data-theme="dark"] .save-tool,
:root[data-theme="dark"] .secondary-link,
:root[data-theme="dark"] .chip,
:root[data-theme="dark"] .strip-item,
:root[data-theme="dark"] .search-groups button.active,
:root[data-theme="dark"] .search-tabs button {
  background: #172033;
  color: var(--ink);
}

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

.detail-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 58px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand);
  font-weight: 800;
}

.detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.dark-brand {
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--ink);
}

.dark-brand small {
  color: var(--muted);
}

.detail-hero {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 247, 243, 0.92)),
    #fff;
  box-shadow: var(--shadow);
}

.detail-main {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.detail-logo {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: linear-gradient(135deg, #14b8a6, #2563eb);
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.22);
  overflow: hidden;
}

.image-detail-logo {
  background: #fff;
  border: 1px solid var(--line);
}

.image-detail-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
  margin-bottom: 0;
}

.detail-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--panel-soft);
  color: #27665d;
  font-size: 12px;
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 16px;
  margin-top: 16px;
}

.detail-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.detail-panel h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.detail-panel p {
  margin: 0;
  color: #475569;
  line-height: 1.85;
}

.article-panel {
  min-height: 360px;
}

.markdown-body {
  color: #475569;
  line-height: 1.85;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  line-height: 1.3;
}

.markdown-body h1:first-child,
.markdown-body h2:first-child,
.markdown-body h3:first-child {
  margin-top: 0;
}

.markdown-body h1 {
  font-size: 26px;
}

.markdown-body h2 {
  font-size: 21px;
}

.markdown-body h3 {
  font-size: 18px;
}

.markdown-body p {
  margin: 0 0 14px;
}

.markdown-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 20px;
}

.markdown-body li::marker {
  color: var(--brand);
}

.markdown-body strong {
  color: var(--ink);
}

.markdown-body code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #eef2f7;
  color: #0f172a;
}

.markdown-body a {
  color: var(--brand);
  font-weight: 800;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list dt {
  color: var(--muted);
  font-weight: 700;
}

.info-list dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.info-list a {
  color: var(--brand);
  font-weight: 800;
}

.related-section {
  margin-top: 18px;
}

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

.detail-empty {
  margin-top: 20px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.48);
}

.feedback-modal {
  width: min(520px, 100%);
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
}

.modal-desc {
  margin: 10px 0 14px;
  color: var(--muted);
}

.feedback-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.feedback-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
}

.modal-field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: #334155;
  font-weight: 700;
}

.modal-field input,
.modal-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  resize: vertical;
}

.icon-close {
  min-height: 34px;
}

.admin-body {
  background:
    radial-gradient(circle at 20% 0%, rgba(45, 212, 191, 0.18), transparent 34%),
    linear-gradient(180deg, #eef6f7 0, #f7fafc 330px, #f4f6fa 100%);
}

.admin-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 48px;
}

.feedback-panel {
  margin-bottom: 18px;
}

.analytics-panel {
  margin-bottom: 18px;
  overflow: hidden;
}

.analytics-panel::before {
  content: "";
  display: block;
  height: 4px;
  margin: -18px -18px 18px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mini-stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94)),
    #f8fafc;
}

.mini-stat strong {
  display: block;
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.mini-stat span {
  color: var(--muted);
}

.analytics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.chart-panel {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.chart-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.chart-heading h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.chart-heading p {
  margin: 0;
  color: var(--muted);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: flex-end;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.line-chart {
  overflow-x: auto;
}

.line-chart svg {
  display: block;
  min-width: 720px;
  width: 100%;
}

.chart-grid-line {
  stroke: #e2e8f0;
  stroke-width: 1;
}

.chart-axis {
  fill: #64748b;
  font-size: 12px;
}

.analytics-layout h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.rank-list,
.event-list {
  display: grid;
  gap: 8px;
}

.rank-item,
.event-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease;
}

.rank-item:hover,
.event-item:hover {
  border-color: rgba(15, 118, 110, 0.28);
  transform: translateY(-1px);
}

.rank-item strong,
.event-item strong {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #e7f7f2;
  color: var(--brand);
  font-size: 13px;
}

.rank-item span,
.event-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.rank-item small,
.event-item small {
  grid-column: 2;
  color: var(--muted);
}

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

.feedback-item {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.feedback-item div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feedback-item span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e7f7f2;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.feedback-item p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.feedback-item small {
  color: var(--muted);
}

.compact-empty {
  padding: 20px;
}

.admin-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 150px;
  margin-bottom: 20px;
  padding: 28px;
  border: 1px solid rgba(15, 118, 110, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 243, 0.9)),
    #fff;
  box-shadow: var(--shadow);
}

.admin-header h1 {
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1.1;
}

.admin-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.admin-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff, #f8fbff),
    #fff;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
}

.stat-card strong {
  display: block;
  color: var(--brand);
  font-size: 30px;
}

.stat-card span {
  color: var(--muted);
}

.admin-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.editor-panel,
.table-panel {
  padding: 18px;
  backdrop-filter: blur(10px);
}

.editor-panel {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.editor-panel label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 700;
}

.editor-panel .panel-heading,
.table-panel .panel-heading {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

form input,
form textarea,
form select,
.panel-heading input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

form input:focus,
form textarea:focus,
form select:focus,
.panel-heading input:focus {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

form textarea {
  min-height: 104px;
  padding-top: 10px;
  resize: vertical;
}

.check-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.check-row label {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 7px;
}

.primary-button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

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

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.form-message[data-type="error"] {
  color: #dc2626;
}

.tool-table {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 100px 76px 116px;
  gap: 12px;
  align-items: center;
}

.table-head {
  padding: 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.table-row {
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.table-row:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.table-row small {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-pill {
  display: inline-flex;
  justify-content: center;
  min-width: 52px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
}

.status-pill.muted {
  background: #f1f5f9;
  color: #64748b;
}

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

.row-actions button {
  min-height: 32px;
  padding: 0 9px;
}

/* Redesigned admin console */
.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 24% 0%, rgba(45, 212, 191, 0.16), transparent 30%),
    linear-gradient(180deg, #edf6f7 0, #f7fafc 340px, #f3f6fb 100%);
}

.admin-app {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-rail {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 22px 16px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.96)),
    #111827;
  color: #fff;
}

.rail-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rail-brand small {
  display: block;
  margin-top: 2px;
  color: #9aa8bd;
  font-size: 12px;
}

.rail-nav {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.rail-nav button {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #d9e2f2;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.rail-nav button:hover,
.rail-nav button.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

.rail-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.rail-actions .secondary-link,
.rail-actions .primary-link {
  width: 100%;
}

.admin-shell {
  width: min(1280px, calc(100% - 36px));
  padding: 24px 0 48px;
}

.admin-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  min-height: 164px;
  padding: 28px;
}

.admin-header h1 {
  font-size: 40px;
}

.admin-header-card {
  display: grid;
  place-content: center;
  min-height: 108px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.96), rgba(37, 99, 235, 0.9)),
    var(--brand);
  color: #fff;
  text-align: center;
}

.admin-header-card span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.admin-header-card strong {
  margin-top: 6px;
  font-size: 24px;
}

.panel-kicker {
  margin: 0 0 4px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.analytics-panel,
.feedback-panel,
.tools-panel,
.editor-panel,
.table-panel {
  border: 1px solid rgba(203, 213, 225, 0.82);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.analytics-panel,
.feedback-panel,
.tools-panel {
  padding: 22px;
}

.analytics-panel::before {
  margin: -22px -22px 22px;
}

.panel-heading {
  align-items: center;
}

.panel-heading h2 {
  font-size: 23px;
}

.stats-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-card,
.mini-stat {
  border-color: rgba(203, 213, 225, 0.86);
}

.admin-layout {
  grid-template-columns: minmax(420px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.tool-panel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-panel-actions input {
  min-width: 240px;
}

.compact-action {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.admin-modal-backdrop {
  z-index: 50;
  align-items: start;
  overflow-y: auto;
}

.tool-modal {
  position: relative;
  top: auto;
  width: min(820px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  margin: 24px 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.tool-modal > .panel-heading {
  padding: 18px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.modal-form-scroll {
  max-height: calc(100vh - 230px);
  overflow-y: auto;
}

.tool-modal .form-actions {
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
}

.tool-modal .form-message {
  justify-self: end;
}

.editor-panel {
  top: 18px;
  padding: 0;
  overflow: hidden;
}

.editor-panel > .panel-heading {
  padding: 18px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.form-section {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.form-section h3 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 16px;
}

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

.wide-field {
  grid-column: 1 / -1;
}

.compact-section {
  padding-bottom: 12px;
}

.editor-panel label {
  gap: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

form input,
form textarea,
form select,
.panel-heading input {
  min-height: 44px;
  background: #f8fafc;
}

form textarea {
  min-height: 118px;
}

.check-row {
  gap: 10px;
}

.check-row label {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.form-actions {
  display: grid;
  gap: 10px;
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
  background: #fbfdff;
}

.tool-table {
  gap: 10px;
}

.table-head,
.table-row {
  grid-template-columns: minmax(240px, 1fr) 92px 70px 112px;
}

.table-head {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: #f8fafc;
}

.table-row {
  min-height: 82px;
}

.tool-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.tool-category-grid > .empty-state {
  grid-column: 1 / -1;
}

.tool-category-card {
  display: grid;
  gap: 12px;
  min-height: 168px;
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff),
    #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  color: var(--ink);
  text-align: left;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.tool-category-card:hover {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.category-main-button {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.category-count {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #e7f7f2;
  color: var(--brand);
  font-size: 22px;
  font-weight: 900;
}

.category-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.tool-category-card strong {
  font-size: 20px;
  line-height: 1.25;
}

.tool-category-card small {
  min-height: 42px;
  color: #64748b;
  line-height: 1.55;
}

.tool-category-card em {
  overflow: hidden;
  color: #475569;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-open {
  min-height: 30px;
  padding: 6px 10px;
  border: 0;
  border-radius: 8px;
  background: #eef4ff;
  color: var(--accent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.category-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.category-edit-button {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #475569;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.category-open:hover,
.category-edit-button:hover {
  border-color: rgba(15, 118, 110, 0.28);
  color: var(--brand);
}

.category-modal {
  width: min(940px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  margin: 24px 0;
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.category-editor-modal {
  width: min(680px, calc(100vw - 32px));
  margin: 24px 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.category-editor-modal > .panel-heading {
  padding: 18px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.category-tool-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.category-tool-list .table-head,
.category-tool-list .table-row {
  grid-template-columns: minmax(240px, 1fr) 110px 80px 82px 116px;
}

.analytics-layout > div,
.chart-panel {
  background: #fbfdff;
}

.rank-item,
.event-item,
.feedback-item {
  background: #fff;
}

@media (max-width: 1100px) {
  .admin-app {
    grid-template-columns: 1fr;
  }

  .admin-rail {
    position: static;
    height: auto;
  }

  .rail-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rail-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .admin-header {
    grid-template-columns: 1fr;
  }

  .admin-header-card {
    min-height: 86px;
  }

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

  .hero-panel {
    min-height: 180px;
  }

  .featured-grid,
  .tool-grid,
  .latest-list,
  .resource-grid,
  .portal-grid,
  .lane-grid,
  .category-mode .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

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

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

  .editor-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-shell {
    display: block;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .sidebar-footer {
    margin-top: 14px;
  }

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

  .topbar,
  .search-band,
  .stats-row,
  .analytics-grid,
  .analytics-layout {
    grid-template-columns: 1fr;
  }

  .chart-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-legend {
    justify-content: flex-start;
  }

  .topbar {
    min-height: 0;
    padding: 22px;
  }

  .home-search-hero {
    gap: 14px;
    padding: 6px 0;
  }

  .hero-logo {
    flex-direction: column;
    gap: 10px;
  }

  .hero-logo-mark {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .hero-logo strong {
    font-size: 32px;
  }

  .hero-search-module .search-box {
    min-height: 56px;
  }

  .search-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-panel {
    min-height: 164px;
  }

  .hero-panel span {
    font-size: 44px;
  }

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

  .featured-grid,
  .tool-grid,
  .latest-list,
  .resource-grid,
  .portal-grid,
  .lane-grid,
  .category-mode .tool-grid {
    grid-template-columns: 1fr;
  }

  .quick-filters,
  .search-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .feedback-options {
    grid-template-columns: 1fr;
  }

  .admin-header,
  .detail-nav,
  .section-heading,
  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-header {
    display: flex;
    min-height: 0;
    padding: 22px;
  }

  .admin-header-actions {
    flex-wrap: wrap;
  }

  .tool-panel-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .tool-panel-actions input {
    min-width: 0;
    width: 100%;
  }

  .form-grid,
  .tool-modal .form-actions {
    grid-template-columns: 1fr;
  }

  .tool-category-grid {
    grid-template-columns: 1fr;
  }

  .category-modal {
    width: min(100%, calc(100vw - 24px));
    margin: 12px 0;
  }

  .tool-modal .form-message {
    justify-self: start;
  }

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

  .detail-logo {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .row-actions {
    justify-content: flex-start;
  }
}
