/* Delivery Policy rebuild. dp-prefixed selectors keep it isolated. */
body.delivery-policy-page {
  margin: 0;
  min-width: 320px;
}

.dp-page {
  --dp-ink: #102123;
  --dp-muted: #4d6062;
  --dp-canvas: #f5efe4;
  --dp-surface: #fff8ea;
  --dp-panel: #f9efd8;
  --dp-line: #193133;
  --dp-soft-line: rgba(25, 49, 51, 0.18);
  --dp-teal: #4f858d;
  --dp-teal-deep: #2b6763;
  --dp-ochre: #d3aa4c;
  --dp-gold: #d9bc78;
  --dp-moss: #9dbb8b;
  --dp-plum: #b493b0;
  --dp-paper: #fff4df;
  --dp-black: #0b0f10;
  --dp-pale-teal: #c8dcdb;
  --dp-pale-moss: #cfe1ca;
  --dp-pink: #d9c7d7;
  --dp-shadow: 8px 8px 0 rgba(11, 15, 16, 0.9);
  --dp-soft-shadow: 0 20px 58px rgba(34, 42, 36, 0.14);
  display: block;
  min-height: 100vh;
  background: transparent;
  color: var(--dp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="dark"] .dp-page {
  --dp-ink: #f6efe4;
  --dp-muted: #b9c4c0;
  --dp-canvas: #101719;
  --dp-surface: #182123;
  --dp-panel: #182123;
  --dp-line: #607073;
  --dp-soft-line: rgba(164, 184, 184, 0.38);
  --dp-teal: #4f858d;
  --dp-teal-deep: #2b6763;
  --dp-ochre: #735824;
  --dp-gold: #d9bc78;
  --dp-moss: #789765;
  --dp-plum: #7d5879;
  --dp-paper: #fff4df;
  --dp-pale-teal: #c8dcdb;
  --dp-pale-moss: #cfe1ca;
  --dp-pink: #d9c7d7;
  --dp-shadow: 8px 8px 0 rgba(0, 0, 0, 0.64);
  --dp-soft-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 58px rgba(0,0,0,0.28);
}

.dp-page *,
.dp-page *::before,
.dp-page *::after {
  box-sizing: border-box;
}

.dp-page a {
  color: inherit;
  text-decoration: none;
}

.dp-rail {
  position: sticky;
  top: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: calc(100vh - 36px);
  margin: 18px 0 18px 18px;
  padding: 20px 14px;
  overflow: hidden;
  border: 2px solid var(--dp-black);
  border-radius: 24px;
  background: var(--dp-teal-deep);
  box-shadow: var(--dp-shadow);
  color: #f4fbf7;
}

.dp-brand,
.dp-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
}

.dp-brand {
  padding: 0 8px 18px;
  border-bottom: 2px solid rgba(11, 15, 16, 0.58);
}

.dp-brand-mark,
.dp-icon {
  display: grid;
  place-items: center;
  border: 2px solid rgba(11, 15, 16, 0.55);
  font-weight: 950;
}

.dp-brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 12px;
  background: #b9dfd8;
  color: #fff;
  font: 800 27px/1 Georgia, "Times New Roman", serif;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}

.dp-brand strong {
  display: block;
  color: #e8fff7;
  font: 800 18px/1 Georgia, "Times New Roman", serif;
}

.dp-brand small {
  display: block;
  margin-top: 6px;
  color: #b9dfd8;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dp-nav,
.dp-rail-tools {
  display: grid;
  gap: 10px;
}

.dp-nav a,
.dp-tool {
  display: flex !important;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  padding: 8px 10px;
  border: 2px solid transparent !important;
  border-radius: 12px;
  background: transparent !important;
  color: #f4fbf7 !important;
  font: 900 1rem/1.15 Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: left;
}

.dp-nav a.is-active {
  border-color: var(--dp-black) !important;
  background: var(--dp-ochre) !important;
  box-shadow: 4px 4px 0 var(--dp-black);
}

.dp-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 12px;
  background: var(--dp-teal);
  color: #eafff7;
  font-size: 12px;
}

.dp-rail-tools {
  margin-top: auto;
  padding-top: 18px;
  border-top: 2px solid rgba(11, 15, 16, 0.58);
}

.dp-tool {
  appearance: none;
  width: 100%;
  cursor: pointer;
}

.dp-main {
  width: min(1560px, calc(100% - 64px));
  min-width: 0;
  margin: 0 auto;
  padding: 42px 0 72px;
  overflow: hidden;
}

.dp-status {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.55fr;
  gap: 14px;
  margin-bottom: 56px;
}

.dp-status-card,
.dp-panel {
  border: 1px solid var(--dp-soft-line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)), var(--dp-surface);
  box-shadow: var(--dp-soft-shadow);
}

.dp-status-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 14px 16px;
}

.dp-bubble {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 999px;
  background: #aee4df;
  color: var(--dp-black);
  font-weight: 950;
}

.dp-status-card:nth-child(2) .dp-bubble { background: var(--dp-gold); }
.dp-status-card:nth-child(3) .dp-bubble { background: var(--dp-moss); }

.dp-status-card strong {
  display: block;
  color: var(--dp-ink);
  font-size: 18px;
  line-height: 1.05;
}

.dp-status-card small {
  display: block;
  margin-top: 4px;
  color: var(--dp-muted);
  font-weight: 800;
  line-height: 1.18;
}

.dp-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 28px;
  align-items: stretch;
  padding: 38px;
  border-radius: 30px;
}

.dp-eyebrow {
  margin: 0 0 14px;
  color: #2b6763;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

[data-theme="dark"] .dp-eyebrow {
  color: #bdded7;
}

.dp-page h1,
.dp-page h2,
.dp-page h3 {
  margin: 0;
  color: var(--dp-ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

.dp-page h1 {
  max-width: 610px;
  font-size: clamp(56px, 6vw, 90px);
  line-height: 0.88;
}

.dp-page h2 {
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 0.96;
}

.dp-page h3 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
}

.dp-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--dp-muted);
  font-size: 20px;
  line-height: 1.55;
}

[data-theme="dark"] .dp-lead {
  color: #d6dfd9;
}

.dp-actions,
.dp-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dp-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--dp-black) !important;
  border-radius: 12px;
  font-weight: 950;
  line-height: 1;
}

.dp-button-primary {
  background: var(--dp-gold) !important;
  color: var(--dp-black) !important;
  box-shadow: 4px 4px 0 var(--dp-black);
}

.dp-button-secondary {
  background: #eef6ef !important;
  color: var(--dp-black) !important;
}

.dp-button-dark {
  background: var(--dp-black) !important;
  color: var(--dp-paper) !important;
}

.dp-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.dp-proof span {
  min-height: 64px;
  padding: 11px 13px;
  border: 1px solid rgba(25, 49, 51, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.35);
  color: var(--dp-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

[data-theme="dark"] .dp-proof span {
  border-color: rgba(255, 244, 223, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.dp-proof strong {
  display: block;
  color: var(--dp-ink);
  font-size: 20px;
}

.dp-workspace {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 560px;
  overflow: hidden;
  border: 2px solid var(--dp-black);
  border-radius: 22px;
  background: var(--dp-pink);
  box-shadow: var(--dp-shadow);
  color: var(--dp-black);
}

.dp-window-bar,
.dp-window-tabs,
.dp-window-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 2px solid var(--dp-black);
}

.dp-dots {
  display: flex;
  gap: 5px;
}

.dp-dots i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--dp-black);
  border-radius: 50%;
  background: var(--dp-paper);
}

.dp-window-bar strong,
.dp-window-bar em {
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.dp-window-tabs {
  justify-content: flex-start;
  background: var(--dp-pale-teal);
}

.dp-window-tabs span {
  min-width: 108px;
  padding: 9px 12px;
  border: 2px solid var(--dp-black);
  border-radius: 99px;
  background: var(--dp-paper);
  text-align: center;
  font-size: 12px;
  font-weight: 950;
}

.dp-window-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 14px;
  background: #dceceb;
}

[data-theme="dark"] .dp-window-body {
  background: #102123;
}

.dp-mini-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 2px solid var(--dp-black);
  border-radius: 999px;
  background: rgba(255, 244, 223, 0.72);
  color: var(--dp-black);
  font-size: 12px;
  font-weight: 900;
}

.dp-mini-rail span {
  min-height: 30px;
  padding: 8px 12px;
  border: 2px solid var(--dp-black);
  border-radius: 999px;
  background: var(--dp-pale-moss);
}

.dp-mini-rail span:nth-child(2) { background: var(--dp-paper); }
.dp-mini-rail span:nth-child(3) { background: var(--dp-gold); }
.dp-mini-rail span:nth-child(4) { background: var(--dp-pale-teal); }

[data-theme="dark"] .dp-mini-rail {
  background: var(--dp-teal-deep);
  color: #dcf6ee;
}

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

.dp-mini-card {
  min-height: 116px;
  padding: 14px;
  border: 2px solid var(--dp-black);
  border-radius: 18px;
  background: var(--dp-paper);
  box-shadow: 4px 4px 0 var(--dp-black);
  color: var(--dp-black);
}

.dp-mini-card-featured {
  grid-column: 1 / -1;
  min-height: 150px;
  background: var(--dp-pale-moss);
}

.dp-mini-card-wide {
  grid-column: 1 / -1;
  min-height: 88px;
  background: #e8d8b2;
}

.dp-mini-card small {
  display: block;
  color: #735824;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dp-mini-card strong {
  display: block;
  margin-top: 8px;
  font: 800 24px/1.04 Georgia, "Times New Roman", serif;
}

.dp-mini-card p {
  margin: 10px 0 0;
  color: #233234;
  font-size: 0.86rem;
  font-weight: 850;
}

.dp-window-status {
  border-top: 2px solid var(--dp-black);
  border-bottom: 0;
  background: var(--dp-pale-teal);
  font-size: 12px;
  font-weight: 950;
}

.dp-reader-section {
  margin-top: 28px;
  padding: 34px;
}

.dp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.dp-section-head h2 {
  max-width: 720px;
}

.dp-section-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--dp-muted);
  font-weight: 800;
  line-height: 1.65;
}

.dp-reader {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
}

.dp-tabs {
  display: grid;
  align-content: start;
  gap: 12px;
}

.dp-tab {
  appearance: none;
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--dp-soft-line) !important;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.26) !important;
  color: var(--dp-muted) !important;
  cursor: pointer;
  font: 900 0.92rem/1.15 Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: left;
}

[data-theme="dark"] .dp-tab {
  background: rgba(255,255,255,0.035) !important;
}

.dp-tab span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(25, 49, 51, 0.08);
  color: currentColor;
  font-size: 12px;
}

[data-theme="dark"] .dp-tab span {
  background: rgba(255,255,255,0.08);
}

.dp-tab.is-active {
  border-color: var(--dp-black) !important;
  background: var(--dp-ochre) !important;
  color: var(--dp-paper) !important;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.52);
}

.dp-tab.is-active span {
  border: 2px solid var(--dp-black);
  background: var(--dp-moss);
  color: var(--dp-paper);
}

.dp-tab:focus-visible,
.dp-button:focus-visible,
.dp-nav a:focus-visible,
.dp-tool:focus-visible,
.dp-footer a:focus-visible {
  outline: 3px solid rgba(217, 188, 120, 0.55);
  outline-offset: 3px;
}

.dp-panels {
  min-width: 0;
}

.dp-policy-card {
  min-height: 444px;
  padding: 30px;
  border: 2px solid var(--dp-black);
  border-radius: 20px;
  background: #e8d8b2;
  box-shadow: var(--dp-shadow);
  color: var(--dp-black);
}

.dp-policy-card[hidden] {
  display: none;
}

.dp-policy-card .dp-eyebrow {
  color: #5b461e;
}

.dp-policy-card h3 {
  max-width: 760px;
  color: var(--dp-black);
}

.dp-policy-card p:not(.dp-eyebrow) {
  max-width: 860px;
  margin: 18px 0 0;
  color: #283638;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.dp-rule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.dp-rule-grid span {
  min-height: 82px;
  padding: 14px;
  border: 2px solid var(--dp-black);
  border-radius: 16px;
  background: var(--dp-paper);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.42);
  color: #233234;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
}

.dp-rule-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dp-black);
  font: 800 27px/1 Georgia, "Times New Roman", serif;
}

.dp-card-actions {
  margin-top: 24px;
}

.dp-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-top: 28px;
  padding: 32px;
  border: 2px solid var(--dp-black);
  border-radius: 24px;
  background: var(--dp-plum);
  box-shadow: var(--dp-shadow);
  color: var(--dp-paper);
}

.dp-support h2 {
  max-width: 860px;
  color: var(--dp-paper);
  font-size: clamp(38px, 4vw, 62px);
}

.dp-support p:not(.dp-eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 244, 223, 0.9);
  font-weight: 800;
  line-height: 1.6;
}

.dp-support .dp-eyebrow {
  color: #d7f3ec;
}

.dp-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 22px 0 0;
  border-top: 1px solid var(--dp-soft-line);
  color: var(--dp-muted);
  font-weight: 850;
}

.dp-footer-brand .dp-brand-mark {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  font-size: 22px;
}

.dp-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

  .dp-rail {
    position: relative;
    top: auto;
    height: auto;
    margin: 12px;
  }

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

  .dp-main {
    padding: 18px 14px 48px;
  }

  .dp-status,
  .dp-hero,
  .dp-reader,
  .dp-support {
    grid-template-columns: 1fr;
  }

  .dp-status {
    margin-bottom: 28px;
  }
}

@media (max-width: 720px) {
  .dp-page h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .dp-page h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .dp-page h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .dp-hero,
  .dp-reader-section,
  .dp-support {
    padding: 22px;
  }

  .dp-nav,
  .dp-proof,
  .dp-rule-grid {
    grid-template-columns: 1fr;
  }

  .dp-rail {
    gap: 12px;
    padding: 14px 10px;
  }

  .dp-brand {
    padding-bottom: 12px;
  }

  .dp-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .dp-rail-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding-top: 10px;
  }

  .dp-nav a,
  .dp-tool {
    display: grid !important;
    justify-items: center;
    gap: 5px;
    min-height: 58px;
    padding: 6px 4px;
    font-size: 11px;
    line-height: 1;
    text-align: center;
  }

  .dp-section-head {
    display: block;
  }

  .dp-section-head > p {
    margin-top: 16px;
  }

  .dp-workspace {
    min-height: 0;
  }

  .dp-window-body,
  .dp-board {
    grid-template-columns: 1fr;
  }

  .dp-mini-card-featured,
  .dp-mini-card-wide {
    grid-column: auto;
  }

  .dp-window-tabs {
    overflow-x: auto;
  }

  .dp-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .dp-tab {
    flex: 0 0 min(82vw, 280px);
    scroll-snap-align: start;
  }

  .dp-policy-card {
    padding: 22px;
  }

  .dp-support .dp-button,
  .dp-actions .dp-button,
  .dp-card-actions .dp-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .dp-main {
    padding-inline: 10px;
  }

  .dp-rail {
    margin-inline: 10px;
    padding: 16px 12px;
  }

  .dp-status-card {
    min-height: 74px;
  }

  .dp-window-tabs span {
    min-width: 96px;
  }

  .dp-mini-card strong {
    font-size: 22px;
  }
}

[data-theme="dark"] body.delivery-policy-page .dp-page .dp-tool {
  border-color: transparent !important;
  background: transparent !important;
  color: #f4fbf7 !important;
  box-shadow: none !important;
}

[data-theme="dark"] body.delivery-policy-page .dp-page .dp-nav a.is-active,
[data-theme="dark"] body.delivery-policy-page .dp-page .dp-tab.is-active {
  border-color: var(--dp-black) !important;
  background: var(--dp-ochre) !important;
  color: var(--dp-paper) !important;
}

[data-theme="dark"] body.delivery-policy-page .dp-page .dp-tab {
  background: rgba(255,255,255,0.035) !important;
  color: var(--dp-muted) !important;
}

[data-theme="dark"] body.delivery-policy-page .dp-page .dp-button-primary {
  background: var(--dp-gold) !important;
  color: var(--dp-black) !important;
}

[data-theme="dark"] body.delivery-policy-page .dp-page .dp-button-secondary {
  background: #eef6ef !important;
  color: var(--dp-black) !important;
}

[data-theme="dark"] body.delivery-policy-page .dp-page .dp-button-dark {
  background: var(--dp-black) !important;
  color: var(--dp-paper) !important;
}

[data-theme="dark"] body.delivery-policy-page .dp-page .dp-policy-card h3,
[data-theme="dark"] body.delivery-policy-page .dp-page .dp-policy-card .dp-eyebrow,
[data-theme="dark"] body.delivery-policy-page .dp-page .dp-policy-card p,
[data-theme="dark"] body.delivery-policy-page .dp-page .dp-rule-grid strong {
  color: var(--dp-black) !important;
}

[data-theme="dark"] body.delivery-policy-page .dp-page .dp-policy-card p:not(.dp-eyebrow),
[data-theme="dark"] body.delivery-policy-page .dp-page .dp-rule-grid span {
  color: #233234 !important;
}

@media (max-width: 720px) {
  body.delivery-policy-page .dp-main {
    width: calc(100% - 24px);
    padding: 18px 0 112px;
  }

  body.delivery-policy-page .dp-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
  }

  body.delivery-policy-page .dp-status-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 94px;
    padding: 12px;
  }

  body.delivery-policy-page .dp-bubble {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  body.delivery-policy-page .dp-status-card strong {
    font-size: 15px;
  }

  body.delivery-policy-page .dp-status-card small {
    font-size: 11px;
  }

  body.delivery-policy-page .dp-hero,
  body.delivery-policy-page .dp-reader-section,
  body.delivery-policy-page .dp-support {
    padding: 18px;
    border-radius: 22px;
  }

  body.delivery-policy-page .dp-page h1 {
    font-size: 56px;
  }

  body.delivery-policy-page .dp-page h2,
  body.delivery-policy-page .dp-support h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  body.delivery-policy-page .dp-page h3 {
    font-size: 30px;
    line-height: 1.05;
  }

  body.delivery-policy-page .dp-lead,
  body.delivery-policy-page .dp-section-head > p,
  body.delivery-policy-page .dp-policy-card p:not(.dp-eyebrow),
  body.delivery-policy-page .dp-support p:not(.dp-eyebrow) {
    font-size: 15px;
    line-height: 1.5;
  }

  body.delivery-policy-page .dp-actions,
  body.delivery-policy-page .dp-proof {
    margin-top: 18px;
  }

  body.delivery-policy-page .dp-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.delivery-policy-page .dp-actions .dp-button {
    width: auto;
    padding-inline: 10px;
    font-size: 13px;
  }

  body.delivery-policy-page .dp-workspace {
    border-radius: 18px;
    box-shadow: 5px 5px 0 var(--dp-black);
  }

  body.delivery-policy-page .dp-window-bar,
  body.delivery-policy-page .dp-window-tabs,
  body.delivery-policy-page .dp-window-status {
    padding: 10px;
  }

  body.delivery-policy-page .dp-window-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  body.delivery-policy-page .dp-window-tabs span {
    min-width: 0;
    padding: 8px 6px;
  }

  body.delivery-policy-page .dp-mini-rail {
    border-radius: 16px;
  }

  body.delivery-policy-page .dp-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.delivery-policy-page .dp-mini-card-featured,
  body.delivery-policy-page .dp-mini-card-wide {
    grid-column: 1 / -1;
  }

  body.delivery-policy-page .dp-mini-card {
    min-height: 96px;
    padding: 12px;
    border-radius: 14px;
  }

  body.delivery-policy-page .dp-mini-card-featured {
    min-height: 118px;
  }

  body.delivery-policy-page .dp-mini-card-wide {
    min-height: 74px;
  }

  body.delivery-policy-page .dp-mini-card strong {
    font-size: 20px;
  }

  body.delivery-policy-page .dp-window-status {
    flex-wrap: wrap;
    font-size: 11px;
  }

  body.delivery-policy-page .dp-reader {
    gap: 14px;
  }

  body.delivery-policy-page .dp-tabs,
  body.delivery-policy-page .dp-panels {
    min-width: 0;
  }

  body.delivery-policy-page .dp-tab {
    flex-basis: min(78vw, 260px);
  }

  body.delivery-policy-page .dp-policy-card {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 5px 5px 0 var(--dp-black);
  }

  body.delivery-policy-page .dp-rule-grid {
    gap: 10px;
  }

  body.delivery-policy-page .dp-rule-grid span {
    min-height: 0;
    padding: 12px;
  }

  body.delivery-policy-page .dp-rule-grid strong {
    font-size: 22px;
  }

  body.delivery-policy-page .dp-footer {
    display: grid;
    gap: 14px;
  }
}

@media (max-width: 360px) {
  body.delivery-policy-page .dp-main {
    width: calc(100% - 16px);
  }

  body.delivery-policy-page .dp-status,
  body.delivery-policy-page .dp-board {
    grid-template-columns: 1fr;
  }

  body.delivery-policy-page .dp-page h1 {
    font-size: 50px;
  }
}
