.elementor-1943 .elementor-element.elementor-element-d52451a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #1a1814;
    --ink-muted: #4a4740;
    --ink-light: #7a7570;
    --cream: #faf8f3;
    --warm: #f2ede3;
    --accent: #c45c2a;
    --accent-light: #f5e8df;
    --accent-dark: #8c3d18;
    --blue: #2563a8;
    --blue-light: #e8f0fb;
    --green: #2d7a4f;
    --green-light: #e6f5ee;
    --gold: #b8860b;
    --gold-light: #fef9e7;
    --border: #e0dbd0;
    --radius: 10px;
    --radius-lg: 16px;
  }

  body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.75;
    font-size: 17px;
  }

  /* ─── HERO ─── */
  .hero {
    background: var(--ink);
    color: #fff;
    padding: 80px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #3d2810 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(196,92,42,0.5);
    border-radius: 100px;
    padding: 5px 18px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    max-width: 820px;
    margin: 0 auto 20px;
  }
  .hero h1 span { color: #f4a46a; }
  .hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin: 0 auto 36px;
  }
  .hero-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }
  .hero-meta span { display: flex; align-items: center; gap: 6px; }
  .hero-meta span::before { content: '•'; color: var(--accent); }
  .hero-meta span:first-child::before { display: none; }

  /* ─── WRAPPER ─── */
  .wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .wrap-wide {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ─── TOC ─── */
  .toc-box {
    background: var(--warm);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 52px auto;
    max-width: 820px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .toc-box h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .toc-box ol {
    columns: 2;
    column-gap: 32px;
    padding-left: 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
  }
  .toc-box ol li { margin-bottom: 8px; }
  .toc-box a { color: var(--blue); text-decoration: none; }
  .toc-box a:hover { text-decoration: underline; }
  @media (max-width: 600px) { .toc-box ol { columns: 1; } }

  /* ─── SECTIONS ─── */
  section { padding: 56px 20px; }
  section + section { padding-top: 0; }

  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.25;
  }
  h2.section-title span { color: var(--accent); }
  .section-lead {
    font-size: 17px;
    color: var(--ink-muted);
    margin-bottom: 36px;
    max-width: 700px;
  }

  h3.cat-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin: 48px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
  }

  /* ─── MESSAGE CARDS ─── */
  .msg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin: 24px 0;
  }
  .msg-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: box-shadow 0.2s;
  }
  .msg-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
  .msg-badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 3px 12px;
    margin-bottom: 14px;
  }
  .badge-pro { background: var(--blue-light); color: var(--blue); }
  .badge-funny { background: var(--gold-light); color: var(--gold); }
  .badge-creative { background: var(--accent-light); color: var(--accent-dark); }
  .badge-vacation { background: var(--green-light); color: var(--green); }
  .badge-holiday { background: #fce8f3; color: #9c27a0; }
  .badge-short { background: #e8f5e9; color: #2e7d32; }
  .badge-formal { background: #ede7f6; color: #5e35b1; }

  .msg-num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
  }
  .msg-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .msg-body {
    background: var(--warm);
    border-left: 3px solid var(--accent);
    padding: 14px 16px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ink-muted);
    border-radius: 0 6px 6px 0;
    font-family: 'DM Sans', sans-serif;
    white-space: pre-line;
  }
  .msg-tip {
    margin-top: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    color: var(--ink-light);
    font-style: italic;
  }

  /* ─── HIGHLIGHT BOX ─── */
  .highlight {
    background: var(--accent-light);
    border: 1px solid rgba(196,92,42,0.25);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 36px 0;
  }
  .highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--accent-dark);
    margin-bottom: 10px;
  }
  .highlight p { font-size: 16px; color: var(--ink-muted); }

  /* ─── INFO BOX ─── */
  .info-box {
    background: var(--blue-light);
    border: 1px solid rgba(37,99,168,0.2);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 28px 0;
  }
  .info-box strong {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 8px;
  }
  .info-box p { font-size: 15px; color: #1a3a5c; }

  /* ─── STAT ROW ─── */
  .stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 36px 0;
  }
  .stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    display: block;
  }
  .stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 6px;
    display: block;
  }

  /* ─── COMPARISON TABLE ─── */
  .table-wrap {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
  }
  table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    min-width: 540px;
  }
  thead { background: var(--ink); color: #fff; }
  thead th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  tbody tr:nth-child(even) { background: var(--warm); }
  tbody td { padding: 13px 18px; color: var(--ink-muted); border-top: 1px solid var(--border); }
  tbody td:first-child { font-weight: 500; color: var(--ink); }
  .check { color: var(--green); font-weight: 700; }
  .cross { color: #c0392b; }

  /* ─── TIPS LIST ─── */
  .tips-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin: 28px 0;
  }
  .tips-list li {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px 18px 54px;
    position: relative;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--ink-muted);
  }
  .tips-list li::before {
    content: attr(data-n);
    position: absolute;
    left: 16px;
    top: 18px;
    width: 26px;
    height: 26px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .tips-list li strong { color: var(--ink); display: block; margin-bottom: 4px; font-weight: 600; }

  /* ─── DO/DON'T SPLIT ─── */
  .dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
  }
  @media (max-width: 600px) { .dos-donts { grid-template-columns: 1fr; } }
  .do-box, .dont-box {
    border-radius: var(--radius-lg);
    padding: 24px;
  }
  .do-box { background: var(--green-light); border: 1px solid rgba(45,122,79,0.2); }
  .dont-box { background: #fde8e8; border: 1px solid rgba(192,57,43,0.2); }
  .do-box h4 { color: var(--green); margin-bottom: 14px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; }
  .dont-box h4 { color: #c0392b; margin-bottom: 14px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; }
  .do-box ul, .dont-box ul { padding-left: 18px; font-family: 'DM Sans', sans-serif; font-size: 14.5px; }
  .do-box li { color: #1a4d2e; margin-bottom: 8px; }
  .dont-box li { color: #7b1414; margin-bottom: 8px; }

  /* ─── FORMULA BOX ─── */
  .formula {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 36px 0;
    text-align: center;
  }
  .formula p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
  }
  .formula .eq {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 18px 28px;
    display: inline-block;
    line-height: 1.9;
  }
  .formula .eq strong { color: #f4a46a; }

  /* ─── SITUATION TABLE ─── */
  .situation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 28px 0;
  }
  .sit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
  }
  .sit-icon { font-size: 32px; margin-bottom: 10px; display: block; }
  .sit-card h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
  .sit-card p { font-size: 13px; color: var(--ink-muted); }

  /* ─── FULL CTA ─── */
  .cta-strip {
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    margin: 52px 0;
  }
  .cta-strip h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 10px;
  }
  .cta-strip p { font-family: 'DM Sans', sans-serif; font-size: 16px; color: rgba(255,255,255,0.85); }

  /* ─── FAQ ─── */
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .faq-a {
    font-size: 16px;
    color: var(--ink-muted);
  }

  /* ─── FOOTER ─── */
  .blog-footer {
    background: var(--warm);
    border-top: 1px solid var(--border);
    padding: 48px 20px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink-muted);
    font-size: 14px;
  }

  /* ─── PULL QUOTE ─── */
  blockquote.pull {
    border-left: 4px solid var(--accent);
    padding: 8px 24px;
    margin: 36px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--ink-muted);
    line-height: 1.55;
  }

  /* ─── INLINE LABEL ─── */
  .label-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
  .label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--ink-muted);
  }

  p + p { margin-top: 16px; }
  p { max-width: 700px; }
  .wrap p { margin-left: auto; margin-right: auto; }

  .divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
  }

  .anchor { scroll-margin-top: 80px; }/* End custom CSS */