/* ============================================================
   SMDD 2026 — brand red #E40014 / cream #F4F1EC
   ============================================================ */

:root {
  /* Brand red, taken from awards.sinarmas.com (its Tailwind red-600/700/800). */
  --brand: #e40014;
  --brand-dark: #9f0712;
  --brand-mid: #bf000f;
  --brand-soft: #ffe2e2;
  --brand-line: #ffcaca;
  --cream: #f4f1ec;
  --cream-deep: #e9e4db;
  --ink: #1f1b2e;
  --ink-soft: #5b5470;
  --ink-faint: #8b839f;
  --white: #fff;
  --line: #e2ddd4;

  --green: #15803d;
  --green-soft: #dcfce7;
  --amber: #b45309;
  --amber-soft: #fef3c7;
  --grey: #6b7280;
  --grey-soft: #eceaf0;
  --red: #b91c1c;
  --red-soft: #fee2e2;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(31, 27, 46, 0.05), 0 8px 24px -12px rgba(31, 27, 46, 0.18);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
}

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

[hidden] {
  display: none !important;
}

/* ------------------------------ LOGIN ------------------------------ */

.login-wrap {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(120% 90% at 50% 0%, #ffecec 0%, var(--cream) 55%);
}

.login-card {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 30px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.login-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--brand-mid), var(--brand-dark));
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.login-card h1 {
  font-size: 19px;
  line-height: 1.3;
}

.login-sub {
  margin: 6px 0 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

.field {
  display: block;
  text-align: left;
  margin-bottom: 14px;
}

.field span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.login-error {
  margin: 0 0 12px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: var(--red-soft);
  color: var(--red);
  font-size: 13.5px;
  text-align: left;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.05s;
}

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

.btn-primary:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: progress;
}

.login-foot {
  margin: 20px 0 0;
  font-size: 12px;
  color: var(--ink-faint);
}

/* ------------------------------ TOPBAR ------------------------------ */

.topbar {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.brand h1 {
  font-size: 16px;
}

.brand p {
  margin: 1px 0 0;
  font-size: 12.5px;
  opacity: 0.72;
}

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

.stamp {
  text-align: right;
  line-height: 1.25;
  margin-right: 4px;
}

.stamp-label {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.65;
}

.stamp strong {
  font-size: 13px;
  font-weight: 600;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-size: 13.5px;
  font-weight: 550;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
}

.btn-ghost:disabled {
  opacity: 0.55;
  cursor: progress;
}

.btn-quiet {
  border-color: transparent;
  background: none;
  opacity: 0.8;
}

.refresh-icon {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
}

.btn-ghost:disabled .refresh-icon {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ------------------------------ LAYOUT ------------------------------ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 20px 60px;
}

.banner {
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  background: var(--amber-soft);
  color: var(--amber);
  border: 1px solid #fcd34d;
  font-size: 13.5px;
  margin-bottom: 18px;
}

.banner.is-error {
  background: var(--red-soft);
  color: var(--red);
  border-color: #fca5a5;
}

/* ------------------------------ TABS ------------------------------ */

.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1.5px solid var(--cream-deep);
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 10px 16px;
  border: 0;
  background: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 550;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  white-space: nowrap;
  transition: color 0.15s;
}

.tab:hover {
  color: var(--brand);
}

.tab.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 650;
}

.panel {
  display: none;
}

.panel.is-active {
  display: block;
  animation: fade 0.18s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
}

/* ------------------------------ FUNNEL ------------------------------ */

.funnel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.stage {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--brand);
}

.stage.is-ai::before {
  background: #0891b2;
}

.stage.is-empty {
  opacity: 0.68;
}

.stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.stage-name {
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.stage-count {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stage-count small {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0;
}

.stage-track {
  height: 6px;
  border-radius: 4px;
  background: var(--cream-deep);
  overflow: hidden;
  margin-top: 11px;
}

.stage-track i {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 4px;
}

.stage.is-ai .stage-track i {
  background: #0891b2;
}

.stage-progress {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px dashed var(--cream-deep);
}

.stage-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.stage-stats b {
  color: var(--ink);
  font-weight: 700;
}

.stage-note {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-faint);
}

.toolbar-dist {
  margin-top: 18px;
}

.stage-tag {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.02em;
  background: var(--grey-soft);
  color: var(--grey);
}

.stage-tag.qualification {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.stage-tag.final {
  background: #ede9fe;
  color: #5b21b6;
}

.score-final {
  color: #5b21b6;
}

/* Sortable column headers */
.grid th.sortable {
  cursor: pointer;
  user-select: none;
}

.grid th.sortable:hover {
  color: var(--brand);
}

.grid th.sortable::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-bottom: 4.5px solid currentColor;
  opacity: 0.22;
  vertical-align: middle;
}

.grid th.sortable.is-sorted {
  color: var(--brand);
}

.grid th.sortable.is-sorted::after {
  opacity: 1;
}

.grid th.sortable.is-desc::after {
  border-bottom: 0;
  border-top: 4.5px solid currentColor;
}

.scorer {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.scorer.ai {
  background: #cffafe;
  color: #0e7490;
}

.scorer.judges {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

/* ------------------------------ CARDS ------------------------------ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
}

.card-label {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 550;
  margin-bottom: 5px;
}

.card-value {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.card-sub {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 3px;
}

/* ------------------------------ SPLIT / BARS ------------------------------ */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.block h2 {
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.dist-row {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  align-items: center;
  margin-bottom: 11px;
}

.dist-label {
  font-size: 13px;
  margin-bottom: 4px;
  display: block;
}

.dist-bar {
  height: 7px;
  background: var(--cream-deep);
  border-radius: 4px;
  overflow: hidden;
}

.dist-bar i {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 4px;
}

.dist-num {
  text-align: right;
  font-size: 13px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

/* ------------------------------ TOOLBAR ------------------------------ */

.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.toolbar input[type="search"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 9px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.toolbar select {
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}

.toolbar input:focus,
.toolbar select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.segmented {
  display: inline-flex;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 3px;
  gap: 3px;
}

.segmented button {
  padding: 6px 13px;
  border: 0;
  border-radius: 6px;
  background: none;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 550;
  cursor: pointer;
  white-space: nowrap;
}

.segmented button.is-active {
  background: var(--brand);
  color: var(--white);
}

.hint {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin: 0 0 12px;
}

/* ------------------------------ TABLE ------------------------------ */

.table-scroll {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  box-shadow: var(--shadow);
}

.grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 720px;
}

.grid thead th {
  text-align: left;
  padding: 11px 14px;
  background: var(--cream);
  border-bottom: 1.5px solid var(--line);
  font-size: 11.5px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  white-space: nowrap;
  vertical-align: bottom;
}

.grid thead th small {
  display: block;
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  opacity: 0.75;
}

.grid th.num,
.grid td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.grid tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--cream-deep);
  vertical-align: middle;
}

.grid tbody tr:last-child td {
  border-bottom: 0;
}

.row-main {
  cursor: pointer;
  transition: background 0.12s;
}

.row-main:hover {
  background: #faf8f5;
}

.row-main.is-open {
  background: var(--brand-soft);
}

.col-title {
  min-width: 240px;
}

.col-judges {
  min-width: 220px;
}

.col-progress {
  min-width: 180px;
}

.p-title {
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

/* Some submissions put a full personal bio in the project description, so the
   table clamps it to two lines; the row detail shows the whole text. */
.p-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-title .caret {
  margin-top: 6px;
}

.detail-label {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-bottom: 5px;
  font-weight: 600;
}

.full-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  max-height: 220px;
  overflow-y: auto;
  white-space: pre-wrap;
}

.caret {
  width: 0;
  height: 0;
  border-left: 5px solid var(--ink-faint);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.row-main.is-open .caret {
  transform: rotate(90deg);
}

.p-sub {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 2px;
  padding-left: 12px;
}

.muted {
  color: var(--ink-faint);
}

.score {
  font-weight: 700;
  font-size: 15px;
}

.score-ai {
  color: #0e7490;
}

.score-judge {
  color: var(--brand-dark);
}

/* --------------------------- PILLS / CHIPS --------------------------- */

.pill {
  display: inline-block;
  padding: 2.5px 9px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}

.pill.completed {
  background: var(--green-soft);
  color: var(--green);
}

.pill.draft {
  background: var(--amber-soft);
  color: var(--amber);
}

.pill.notStarted {
  background: var(--grey-soft);
  color: var(--grey);
}

/* Amber, not red — the brand colour is red, so a red pill would not read as a
   warning here. */
.pill.warn {
  background: var(--amber-soft);
  color: var(--amber);
}

.judge-chips {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
}

.chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.completed {
  background: var(--green);
}

.dot.draft {
  background: #d97706;
}

.dot.notStarted {
  background: #c4c0cc;
}

.chip .cname {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chip .cscore {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* --------------------------- DETAIL ROW --------------------------- */

.row-detail > td {
  padding: 0 !important;
  background: #fbfaf8;
  border-bottom: 1px solid var(--cream-deep) !important;
}

.detail-inner {
  padding: 16px 18px 18px;
  display: grid;
  gap: 14px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  color: var(--ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--cream-deep);
}

.detail-meta div span {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-bottom: 2px;
}

.detail-meta div strong {
  font-weight: 600;
  color: var(--ink);
}

.scorecards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 12px;
}

.scorecard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
}

.scorecard.is-ai {
  border-color: #a5f3fc;
  background: #f0fdff;
}

.sc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3px;
}

.sc-name {
  font-weight: 650;
  font-size: 13.5px;
}

.sc-total {
  font-weight: 700;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.sc-rubric {
  font-size: 11.5px;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.aspect {
  margin-bottom: 9px;
}

.aspect:last-child {
  margin-bottom: 0;
}

.aspect-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 12.5px;
  margin-bottom: 3px;
}

.aspect-name {
  flex: 1;
  min-width: 0;
}

.aspect-weight {
  font-size: 10.5px;
  color: var(--ink-faint);
  background: var(--cream);
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 600;
}

.aspect-val {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.aspect-bar {
  height: 5px;
  background: var(--cream-deep);
  border-radius: 3px;
  overflow: hidden;
}

.aspect-bar i {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 3px;
}

.scorecard.is-ai .aspect-bar i {
  background: #0891b2;
}

.aspect-comment {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.45;
}

.sc-foot {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px dashed var(--cream-deep);
  font-size: 11.5px;
  color: var(--ink-faint);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

/* --------------------------- PROGRESS BAR --------------------------- */

.pbar {
  height: 8px;
  border-radius: 5px;
  background: var(--grey-soft);
  overflow: hidden;
  display: flex;
  margin-bottom: 4px;
}

.pbar i {
  display: block;
  height: 100%;
}

.pbar .c {
  background: var(--green);
}

.pbar .d {
  background: #f59e0b;
}

.pbar-legend {
  font-size: 11.5px;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

/* --------------------------- RANK --------------------------- */

.rank-badge {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: 8px;
  background: var(--cream-deep);
  font-weight: 700;
  font-size: 12.5px;
}

.rank-badge.top1 {
  background: #fde68a;
  color: #92400e;
}

.rank-badge.top2 {
  background: #e5e7eb;
  color: #374151;
}

.rank-badge.top3 {
  background: #fed7aa;
  color: #9a3412;
}

.delta.up {
  color: var(--green);
  font-weight: 650;
}

.delta.down {
  color: var(--red);
  font-weight: 650;
}

.empty {
  text-align: center;
  padding: 34px 16px;
  color: var(--ink-faint);
  font-size: 14px;
}

/* --------------------------- LOADING / FOOT --------------------------- */

.loading {
  position: fixed;
  inset: 0;
  background: rgba(244, 241, 236, 0.82);
  display: grid;
  place-items: center;
  z-index: 60;
  backdrop-filter: blur(2px);
}

.loading p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  text-align: center;
}

.spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border: 3px solid var(--brand-line);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.foot {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 30px;
  font-size: 12px;
  color: var(--ink-faint);
}

/* --------------------------- RESPONSIVE --------------------------- */

@media (max-width: 720px) {
  body {
    font-size: 14.5px;
  }

  .topbar-inner {
    padding: 12px 14px;
  }

  .stamp {
    display: none;
  }

  .container {
    padding: 16px 14px 48px;
  }

  .stage-count {
    font-size: 29px;
  }

  .detail-meta {
    gap: 12px;
  }

  .foot {
    padding: 0 14px 24px;
  }
}

@media (max-width: 420px) {
  .brand p {
    display: none;
  }

  .btn-ghost {
    padding: 8px 11px;
  }
}
