/* Single Resource (Templates / Checklists / embedded tools).
   Builds on single-blog.css (loaded first). Added 2026-07-23 for the
   Resources migration. Tokens (--copper-gradient, --ecru, etc.) come from
   the theme's global stylesheet. */

/* Download panel - shown when the resource has a sideloaded file. */
.resource_download{
  max-width:760px;margin:8px auto 0;padding:24px;
  background:rgba(241,237,226,0.04);border:1px solid rgba(241,237,226,0.1);
  border-radius:12px;text-align:center;
}
.resource_download .btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 28px;border-radius:30px;font-size:15px;font-weight:500;
  letter-spacing:.02em;text-decoration:none;transition:all .25s;
}
.resource_download .btn-copper{
  background:var(--copper-gradient);color:var(--ecru);border:none;
  box-shadow:0 6px 16px rgba(175,90,47,0.35);
}
.resource_download .btn-copper:hover{background:var(--copper-gradient-bright);box-shadow:0 8px 22px rgba(175,90,47,0.45)}
.resource_download .arrow{font-size:18px;line-height:1}

/* Embedded interactive tools (e.g. Business Plan Diagnostic iframe).
   The source relies on an external iframe-resizer script we don't load, so a
   min-height keeps the tool usable rather than collapsing to a sliver. */
.resource_single .blog_single_body iframe{
  width:100%;min-height:640px;border:0;border-radius:10px;margin:16px 0;
  background:#fff;
}
