
  .didot-post {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #1A1A2E;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.75;
  }
  .didot-post * { box-sizing: border-box; }

  /* ── Hero ── */
  .dp-hero {
    background: #1A1A2E;
    border-radius: 12px;
    padding: 52px 44px 44px;
    margin-bottom: 44px;
    position: relative;
    overflow: hidden;
  }
  .dp-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    background: #E63329;
    border-radius: 50%;
    opacity: 0.12;
  }
  .dp-hero::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 30%;
    width: 180px; height: 180px;
    background: #E63329;
    border-radius: 50%;
    opacity: 0.07;
  }
  .dp-hero-label {
    display: inline-block;
    background: #E63329;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
  }
  .dp-hero h1 {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    line-height: 1.2;
  }
  .dp-hero h1 span { color: #E63329; }
  .dp-hero-sub {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 15px;
    color: #8888AA;
    margin: 0;
  }
  .dp-hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 12px;
    color: #6B6B7A;
  }
  .dp-hero-meta span { display: flex; align-items: center; gap: 6px; }

  /* ── Intro ── */
  .dp-intro {
    font-size: 17px;
    color: #3A3A5C;
    border-left: 4px solid #E63329;
    padding-left: 20px;
    margin-bottom: 40px;
    font-style: italic;
  }

  /* ── Steps ── */
  .dp-steps { counter-reset: steps; margin-bottom: 16px; }

  .dp-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 20px;
    margin-bottom: 36px;
    align-items: start;
  }
  .dp-step-num {
    counter-increment: steps;
    width: 52px; height: 52px;
    background: #E63329;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    margin-top: 4px;
  }
  .dp-step-body h2 {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 6px 0 10px;
    line-height: 1.3;
  }
  .dp-step-body p {
    font-size: 15px;
    color: #3A3A5C;
    margin: 0 0 10px;
  }

  /* ── Instruction box ── */
  .dp-instr {
    background: #F7F7F9;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 12px 0;
  }
  .dp-instr ol, .dp-instr ul {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #1A1A2E;
    line-height: 1.9;
  }
  .dp-instr li::marker { color: #E63329; font-weight: 700; }
  .dp-instr strong { color: #E63329; }

  /* ── Bleed diagram ── */
  .dp-diagram {
    background: #FFF0EF;
    border-radius: 10px;
    padding: 24px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .dp-diagram-visual {
    flex-shrink: 0;
    width: 120px; height: 80px;
    position: relative;
    margin: 0 auto;
  }
  .dp-bleed-outer {
    position: absolute; inset: 0;
    border: 2px solid #E63329;
    border-radius: 4px;
    background: rgba(230,51,41,0.06);
  }
  .dp-bleed-safe {
    position: absolute;
    inset: 10px;
    border: 1.5px dashed #6B6B7A;
    border-radius: 2px;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 9px;
    color: #6B6B7A;
    text-align: center;
  }
  .dp-bleed-label-top {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 8px;
    color: #E63329;
    white-space: nowrap;
    font-weight: 700;
  }
  .dp-diagram-legend { flex: 1; min-width: 180px; }
  .dp-diagram-legend p {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 13px;
    color: #3A3A5C;
    margin: 0 0 6px;
    display: flex; align-items: flex-start; gap: 8px;
  }
  .dp-diagram-legend p::before {
    content: attr(data-icon);
    flex-shrink: 0;
  }

  /* ── Checklist ── */
  .dp-checklist {
    margin: 14px 0;
    padding: 0;
    list-style: none;
  }
  .dp-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 6px;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    margin-bottom: 6px;
  }
  .dp-checklist li.ok  { background: #F0FFF4; color: #166534; }
  .dp-checklist li.err { background: #FFF5F5; color: #991B1B; }
  .dp-checklist li .ck-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
  }
  .dp-checklist li.ok  .ck-icon { background: #16A34A; color: #fff; }
  .dp-checklist li.err .ck-icon { background: #E63329; color: #fff; }

  /* ── Send options ── */
  .dp-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 14px 0;
  }
  @media (max-width: 540px) { .dp-options { grid-template-columns: 1fr; } }
  .dp-option {
    border: 1.5px solid #EEEEEE;
    border-radius: 10px;
    padding: 18px;
    text-decoration: none;
  }
  .dp-option-icon {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .dp-option h3 {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 4px;
  }
  .dp-option p {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 12px;
    color: #6B6B7A;
    margin: 0;
  }

  /* ── Summary table ── */
  .dp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
  }
  .dp-table thead tr { background: #1A1A2E; color: #fff; }
  .dp-table thead th { padding: 12px 16px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: 0.5px; }
  .dp-table tbody tr:nth-child(even) { background: #F7F7F9; }
  .dp-table tbody tr:nth-child(odd)  { background: #fff; }
  .dp-table tbody td { padding: 11px 16px; color: #1A1A2E; }
  .dp-table tbody td:last-child { font-weight: 700; color: #E63329; }

  /* ── Tip ── */
  .dp-tip {
    background: #FFFBEB;
    border-left: 4px solid #F59E0B;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 28px 0;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    color: #78350F;
  }
  .dp-tip strong { color: #92400E; display: block; margin-bottom: 4px; }

  /* ── CTA ── */
  .dp-cta {
    background: linear-gradient(135deg, #E63329 0%, #C0201A 100%);
    border-radius: 14px;
    padding: 40px 36px;
    text-align: center;
    margin-top: 44px;
  }
  .dp-cta h2 {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
  }
  .dp-cta p {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 24px;
  }
  .dp-cta a {
    display: inline-block;
    background: #fff;
    color: #E63329;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
  }
  .dp-cta a:hover { background: #FFF0EF; }

  /* ── Download banner ── */
  .dp-download {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #F0F4FF;
    border: 1.5px solid #C7D2FE;
    border-radius: 10px;
    padding: 18px 22px;
    margin: 32px 0;
    flex-wrap: wrap;
  }
  .dp-download-icon { font-size: 32px; flex-shrink: 0; }
  .dp-download-text { flex: 1; min-width: 180px; }
  .dp-download-text strong {
    display: block;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    color: #1A1A2E;
    margin-bottom: 2px;
  }
  .dp-download-text span {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 12px;
    color: #6B6B7A;
  }
  .dp-download a {
    display: inline-block;
    background: #1A1A2E;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    flex-shrink: 0;
  }
