/* DTE brand styles — colours and typography per brand doc v1.0 */

:root {
  --dte-green: #8AB81B;
  --dte-green-dark: #769e16;
  --dte-blue: #1E9BD6;
  --dte-blue-dark: #1684b8;
  --dte-grey: #9A9A9A;
  --charcoal: #333333;
  --bg-light: #F2F2F2;
  --border: #CCCCCC;
  --error: #C0392B;
  --success-bg: #f0f7e6;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--charcoal);
  background: #fff;
  line-height: 1.5;
}

a {
  color: var(--dte-blue);
}

a:hover {
  color: var(--dte-blue-dark);
}

/* --- Layout --- */

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--bg-light);
  padding: 1rem 1.5rem;
}

.site-header img {
  height: 48px;
  display: block;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page--wide {
  max-width: 1100px;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--charcoal);
}

.page-lead {
  font-size: 1.125rem;
  color: var(--charcoal);
  margin: 0 0 2rem;
}

.tagline {
  color: var(--dte-grey);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* --- Form --- */

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

label .hint {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--dte-grey);
  margin-top: 0.15rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--dte-blue);
  box-shadow: 0 0 0 3px rgba(30, 155, 214, 0.15);
}

/* --- Button --- */

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--dte-green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--dte-green-dark);
}

.btn--secondary {
  background: #fff;
  color: var(--dte-blue);
  border: 1px solid var(--dte-blue);
}

/* --- Alert/state styles --- */

.alert {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.alert--error {
  background: #fdecea;
  color: var(--error);
  border: 1px solid #f5c6cb;
}

.alert--success {
  background: var(--success-bg);
  color: var(--charcoal);
  border: 1px solid var(--dte-green);
}

/* --- Admin table --- */

.signups-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
}

.signups-table th,
.signups-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--bg-light);
  vertical-align: top;
}

.signups-table th {
  background: var(--bg-light);
  font-weight: 700;
  color: var(--charcoal);
}

.signups-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.status-pill {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-light);
  color: var(--charcoal);
}

.status-pill--complete {
  background: var(--success-bg);
  color: var(--dte-green-dark);
}

.status-pill--abandoned {
  background: #fdecea;
  color: var(--error);
}

.stats {
  margin: 1rem 0 2rem;
  color: var(--dte-grey);
  font-size: 0.95rem;
}

.footer {
  margin-top: 4rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--dte-grey);
  font-size: 0.875rem;
  border-top: 1px solid var(--bg-light);
}

/* --- Stage 2 layout --- */

.stage2-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .stage2-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

.product-block {
  background: #fff;
  border: 1px solid var(--bg-light);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.product-block h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--charcoal);
}

.block-lead {
  color: var(--dte-grey);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.optional-pill {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.55rem;
  background: var(--bg-light);
  color: var(--dte-grey);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  vertical-align: middle;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-top: 1px solid var(--bg-light);
}

.product-row:first-of-type {
  border-top: 0;
}

.product-row--check,
.product-row--radio {
  grid-template-columns: auto 1fr auto;
  cursor: pointer;
}

.product-row--check input[type="checkbox"],
.product-row--radio input[type="radio"] {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.product-row--locked {
  background: var(--bg-light);
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 6px;
  border: 0;
}

.product-label {
  font-weight: 600;
  color: var(--charcoal);
}

.product-hint {
  margin-top: 0.2rem;
  color: var(--dte-grey);
  font-size: 0.875rem;
}

.tagline-inline {
  margin-left: 0.4rem;
  color: var(--dte-grey);
  font-weight: 400;
  font-size: 0.9rem;
}

.product-price {
  text-align: right;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
}

.product-price .unit {
  font-weight: 400;
  color: var(--dte-grey);
  font-size: 0.85rem;
  margin-left: 0.1rem;
}

.poa-tag {
  display: inline-block;
  padding: 0.1rem 0.55rem;
  background: var(--bg-light);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
}

.tcs-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 1.25rem;
  cursor: pointer;
}

.tcs-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
}

.btn--large {
  font-size: 1.1rem;
  padding: 1rem 1.75rem;
}

/* --- Running total panel --- */

.total-panel {
  background: #fff;
  border: 1px solid var(--bg-light);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

@media (min-width: 900px) {
  .total-panel {
    position: sticky;
    top: 1rem;
  }
}

.total-panel h3 {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: var(--charcoal);
}

.total-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.total-lines li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--bg-light);
  font-size: 0.9rem;
  gap: 1rem;
}

.total-lines li:last-child {
  border-bottom: 0;
}

.total-summary {
  border-top: 2px solid var(--bg-light);
  padding-top: 0.75rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.95rem;
  color: var(--dte-grey);
}

.total-row--grand {
  padding-top: 0.6rem;
  margin-top: 0.4rem;
  border-top: 1px solid var(--bg-light);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1.15rem;
}

.total-poa {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border-radius: 6px;
  font-size: 0.85rem;
}

.total-poa strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.total-poa ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--dte-grey);
}

/* --- Regional postcode picker --- */

.picker-toolbar {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.picker-toolbar input[type="search"] {
  flex: 1 1 220px;
  min-width: 0;
}

.picker-summary {
  font-size: 0.95rem;
  color: var(--charcoal);
  white-space: nowrap;
}

.picker-summary #picker-count,
.picker-summary #picker-sum {
  font-weight: 700;
}

.picker-summary #picker-sum {
  color: var(--dte-green-dark);
}

.picker-summary .unit {
  color: var(--dte-grey);
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 0.1rem;
}

.picker-tier {
  border: 1px solid var(--bg-light);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.5rem;
}

.picker-tier summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.35rem 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.picker-tier summary::-webkit-details-marker { display: none; }

.picker-tier summary::before {
  content: '▸';
  color: var(--dte-grey);
  margin-right: 0.5rem;
  display: inline-block;
  transition: transform 0.15s ease;
}

.picker-tier[open] summary::before {
  transform: rotate(90deg);
}

.picker-tier-count {
  background: var(--bg-light);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
}

.picker-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.15rem;
}

.picker-item label {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}

.picker-item label:hover {
  background: var(--bg-light);
}

.picker-item input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  flex-shrink: 0;
}

.picker-code {
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-weight: 700;
  color: var(--charcoal);
  min-width: 2.5em;
}

.picker-region {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.picker-fee {
  color: var(--dte-grey);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.picker-badge {
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-weight: 600;
}

.picker-badge--sold {
  background: #fdecea;
  color: var(--error);
}

.picker-item--sold label {
  opacity: 0.55;
  cursor: not-allowed;
}

.picker-item--sold label:hover {
  background: transparent;
}

.picker-empty {
  color: var(--dte-grey);
  font-style: italic;
  padding: 1rem 0;
  margin: 0;
  text-align: center;
}

/* --- Admin nav + postcodes editor --- */

.admin-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-light);
}

.admin-nav__link {
  padding: 0.6rem 1rem;
  color: var(--dte-grey);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.admin-nav__link:hover {
  color: var(--charcoal);
}

.admin-nav__link--active {
  color: var(--charcoal);
  border-bottom-color: var(--dte-green);
}

.admin-tier-heading {
  font-size: 1rem;
  margin: 2rem 0 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-tier-count {
  background: var(--bg-light);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
}

.admin-pc-table {
  font-size: 0.875rem;
}

.admin-pc-table input.admin-pc-input {
  width: 6.5em;
  padding: 0.35rem 0.5rem;
  font-size: 0.875rem;
}

.admin-pc-table input.admin-pc-input--small {
  width: 4.5em;
}

.admin-pc-action {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  background: #fff;
  color: var(--dte-blue);
  border: 1px solid var(--dte-blue);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  white-space: nowrap;
}

.admin-pc-action:hover {
  background: var(--dte-blue);
  color: #fff;
}

.admin-pc-row--sold {
  background: #fdecea !important;
}

/* --- Content editor (Phase 7d) --- */

.content-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
}

.content-tab-nav__link {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.content-tab-nav__link:hover {
  background: #e4e8d8;
  color: var(--charcoal);
}

.content-tab-nav__link--active {
  background: var(--dte-green);
  color: #fff;
}

.content-tab-nav__link--active:hover {
  background: var(--dte-green-dark);
  color: #fff;
}

.content-editor {
  margin-top: 1rem;
}

.content-field {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--bg-light);
}

.content-field:last-of-type {
  border-bottom: none;
}

.content-field > label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.content-field__meta {
  color: var(--dte-grey);
  font-weight: 400;
  font-size: 0.85rem;
  margin-left: 0.4rem;
}

.content-field__input,
.content-field__textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--charcoal);
}

.content-field__input:focus,
.content-field__textarea:focus {
  outline: 2px solid var(--dte-green);
  outline-offset: 1px;
}

.content-field__textarea {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  resize: vertical;
}

.content-field__hint {
  margin: 0.5rem 0 0;
  color: var(--dte-grey);
  font-size: 0.85rem;
}

.content-field__hint code {
  background: var(--bg-light);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-right: 0.25rem;
  color: var(--charcoal);
  font-size: 0.85rem;
}

/* Phase 7g: variable click-to-insert chips. Buttons styled to look like code chips
   so they don't shout, but with hover affordance to invite clicking. */
.var-chip {
  display: inline-block;
  background: var(--bg-light);
  border: 1px solid transparent;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-right: 0.25rem;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.85rem;
  color: var(--charcoal);
  cursor: pointer;
}

.var-chip:hover {
  background: #e4e8d8;
  border-color: var(--dte-green);
  color: var(--dte-green-dark);
}

.var-chip:active {
  background: var(--dte-green);
  color: #fff;
}

/* Phase 7i: admin guide page layout — sticky sidebar nav + main article column. */
.page--guide {
  max-width: 1200px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

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

.guide-sidebar {
  position: sticky;
  top: 1rem;
  align-self: start;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  font-size: 0.9rem;
  border-right: 1px solid var(--bg-light);
  padding-right: 1rem;
}

@media (max-width: 800px) {
  .guide-sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 1rem;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}

.guide-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.guide-sidebar > ul > li {
  margin-bottom: 0.75rem;
}

.guide-sidebar a {
  text-decoration: none;
  display: block;
  padding: 0.15rem 0;
}

.guide-sidebar > ul > li > a {
  font-weight: 700;
  color: var(--charcoal);
}

.guide-sidebar ul ul {
  margin-left: 0.25rem;
  margin-top: 0.4rem;
  padding-left: 0.65rem;
  border-left: 2px solid var(--bg-light);
}

.guide-sidebar ul ul li a {
  font-weight: 400;
  color: var(--dte-grey);
  font-size: 0.85rem;
}

.guide-sidebar ul ul li a:hover {
  color: var(--charcoal);
}

.guide-content {
  min-width: 0;
}

.guide-content section {
  scroll-margin-top: 1rem;
}

.guide-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--dte-green);
}

.guide-content > section:first-of-type h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.guide-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.6rem;
  color: var(--charcoal);
}

.guide-content h4 {
  font-size: 1rem;
  margin: 1.5rem 0 0.4rem;
  color: var(--charcoal);
}

.guide-content p {
  margin: 0 0 1rem;
}

.guide-content ul, .guide-content ol {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.guide-content li {
  margin-bottom: 0.4rem;
}

.guide-content code {
  background: var(--bg-light);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
}

.guide-figure {
  margin: 1.5rem 0;
  border: 1px solid var(--bg-light);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.guide-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-figure figcaption {
  background: var(--bg-light);
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  color: var(--dte-grey);
}

.guide-callout {
  background: #fff8e1;
  border-left: 4px solid #d4ad00;
  padding: 0.8rem 1rem;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.guide-callout--warn {
  background: #fde2e0;
  border-left-color: var(--error);
}

.guide-callout--ok {
  background: #f0f7e6;
  border-left-color: var(--dte-green);
}

.guide-callout strong {
  color: var(--charcoal);
}

.content-editor__save {
  position: sticky;
  bottom: 1rem;
  margin-top: 2rem;
  z-index: 5;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn--secondary {
  background: var(--dte-blue);
  color: #fff;
}

.btn--secondary:hover {
  background: var(--dte-blue-dark);
  color: #fff;
}

/* Phase 7f preview banner — yellow strip pinned to the top of any page rendered
   with ?preview=1 + an admin preview snapshot in session. */
.preview-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff8c5;
  color: #5a4d00;
  border-bottom: 2px solid #d4ad00;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

/* --- Price editor (/admin/prices) ------------------------------------------------
   Money is being edited here, so the visual job is different from the other admin
   screens: make the amount unmissable, make the before/after on the review screen
   impossible to skim past, and make retired rows obviously inert. */

.alert--warning {
  background: #fff8e1;
  color: var(--charcoal);
  border: 1px solid #e6c200;
}

.price-table input.admin-pc-input {
  width: 100%;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.price-table input.price-input--money {
  width: 6.5rem;
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.price-input__prefix {
  margin-right: 0.15rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* Retired bands are shown so it is clear why an old member's package still exists,
   but they can never be sold or edited again. */
.price-row--retired {
  background: var(--bg-light);
  color: var(--dte-grey);
}

/* --- Review screen --- */

.price-diff {
  margin-bottom: 1rem;
}

.price-diff__what {
  width: 22%;
  font-weight: 600;
}

.price-diff__from {
  width: 34%;
  color: var(--dte-grey);
  text-decoration: line-through;
}

.price-diff__to {
  color: var(--charcoal);
}

/* A price change gets extra weight — it is the one that costs money if it is wrong. */
.price-diff__row--money td {
  background: #fff8e1;
  font-size: 1.05rem;
}

.price-diff__row--money .price-diff__to strong {
  color: var(--dte-green-dark);
}

/* Units-slip warning on the review screen (e.g. 6000 typed meaning 6000 pence). */
.price-diff__row--jump td {
  background: #fdecea;
  color: var(--error);
  font-size: 0.95rem;
}

/* Band-impact preview: turns an invisible boundary move into a visible price change. */
.price-table input.price-input--band {
  width: 4.5rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.price-impact {
  margin-bottom: 1rem;
}

.price-impact__range {
  width: 34%;
}

.price-impact__dir {
  font-size: 0.85rem;
  color: var(--dte-grey);
}

.price-impact__band {
  font-size: 0.85rem;
  color: var(--dte-grey);
}

.price-impact td {
  background: #fff8e1;
}

/* On-sale toggle. Withdrawing a package never deletes it — members already on it keep
   their package name — so the row stays visible, greyed, and can be re-offered. */
.price-cell--onsale {
  text-align: center;
}

.price-cell__note {
  font-size: 0.8rem;
  color: var(--dte-grey);
}

.price-row--retired input[type="text"] {
  background: var(--bg-light);
}

/* Divider above the withdrawn block at the foot of each pricing section. */
.price-row--divider td {
  background: var(--bg-light);
  color: var(--dte-grey);
  font-size: 0.85rem;
  border-top: 2px solid var(--border);
  padding-top: 0.6rem;
}
