/* Resume builder embed — HAND-AUTHORED to the pricing-page DNA
   (content/new-pages/DESIGN_STANDARDS.md). [DESIGN 2026-07-10]
   The importer (tools/import-native-tools.php) regenerates the fragment and
   JS but NEVER this file. Markup ids/classes come from the tool source at
   /home/leadlo5/tools.leadlocate.com/free/resume-builder/. */

#llrb-embed{
  --primary:#259457;
  display:block;width:100%;max-width:1170px;margin:0 auto;padding:48px 20px 0;
  font-family:Rubik,Arial,sans-serif;font-size:16px;line-height:1.7;color:#33434e;
  box-sizing:border-box;background:transparent;
}
/* Hairline divider between the generator and the next page section
   (owner 2026-07-10: keep the transition clean and organized). */
#llrb-embed::after{
  content:'';display:block;height:1px;background:#e3e9ed;margin:56px 0 0;
}
#llrb-embed *,#llrb-embed *::before,#llrb-embed *::after{box-sizing:border-box}

/* --- two columns: form panel + live preview, stacking on phones --- */
#llrb-embed .container{
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:28px;
  align-items:stretch;height:auto;min-height:0;max-height:none;margin:0;padding:0;
  background:none;flex-wrap:nowrap;width:100%;max-width:none;
}
/* The theme's Bootstrap clearfix (.container::before/::after{display:table})
   turns into invisible GRID ITEMS that hijack the first cell and wrap the
   real cards onto the wrong row/column. Remove them. */
#llrb-embed .container::before,
#llrb-embed .container::after{content:none!important;display:none!important}

/* form side: soft panel like the site's calculator widgets */
#llrb-embed .form-card{
  background:#f5f8f6;border:1px solid #e3e9ed;border-radius:12px;padding:28px 30px 30px;
  box-shadow:none;min-width:0;max-width:none;height:auto;max-height:none;overflow:visible;
  display:block;margin:0;
}

/* preview side: white "sheet of paper" card. NO position:sticky — the
   template has overflow-hidden ancestors that break sticky and shove the
   card to the bottom of its grid row (observed live 2026-07-10). */
#llrb-embed .preview-card{
  background:#fff;border:1px solid #e3e9ed;border-radius:12px;padding:30px 32px;
  box-shadow:0 1px 3px rgba(0,0,0,.04);min-width:0;max-width:none;height:auto;
  max-height:none;overflow:visible;margin:0;position:static;
  /* fill the column so the page never shows a void next to the tall form;
     the blank-state box stretches with it (flex column below) */
  align-self:stretch;display:flex;flex-direction:column;
}

/* --- headings: site H2 scale, mixed case --- */
#llrb-embed .form-card h2,
#llrb-embed .preview-card>h2{
  margin:0 0 18px;font-size:25px;line-height:31px;font-weight:600;color:#20303c;letter-spacing:0;
}

/* --- form fields: np-calc DNA --- */
#llrb-embed label{display:block;font-size:13px;font-weight:700;color:#5b6b76;margin:0 0 5px}
#llrb-embed input[type=text],
#llrb-embed input[type=email],
#llrb-embed input[type=tel],
#llrb-embed input:not([type]),
#llrb-embed textarea{
  width:100%;padding:10px 12px;border:1px solid #d9e1e6;border-radius:7px;
  font-family:Rubik,Arial,sans-serif;font-size:15.5px;color:#20303c;background:#fff;
  outline:none;transition:border-color .15s ease,box-shadow .15s ease;
  margin:0 0 14px;height:auto;resize:vertical;
}
#llrb-embed input:focus,#llrb-embed textarea:focus{border-color:#259457;box-shadow:0 0 0 3px rgba(37,148,87,.14)}
#llrb-embed input::placeholder,#llrb-embed textarea::placeholder{color:#9aa7b0;opacity:1}
#llrb-embed .row{display:grid;grid-template-columns:1fr 1fr;gap:0 14px;margin:0}
/* Bootstrap clearfix pseudo-items again (.row::before/::after) — see above */
#llrb-embed .row::before,
#llrb-embed .row::after{content:none!important;display:none!important}

/* group sections (Skills / Experience / Certifications / Education) */
#llrb-embed .section{margin:10px 0 0;padding:18px 0 0;border-top:1px solid #e3e9ed}
#llrb-embed .section>label{font-size:17px;font-weight:600;color:#20303c;margin:0 0 12px}

/* add buttons: ghost green pills */
#llrb-embed .add-btn{
  background:transparent;color:#259457;border:2px solid #259457;border-radius:50px;
  padding:8px 24px;font-family:Rubik,Arial,sans-serif;font-size:14.5px;font-weight:500;
  cursor:pointer;margin:0 0 6px;transition:background .15s ease,color .15s ease;
}
#llrb-embed .add-btn:hover{background:#259457;color:#fff}

/* skills chips in the form list */
#llrb-embed #skillsList{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 10px}
#llrb-embed #skillsList .skill-badge{
  display:inline-flex;align-items:center;gap:7px;background:#259457;color:#fff;
  border-radius:50px;padding:5px 14px;font-size:14px;font-weight:500;
}
#llrb-embed #skillsList .skill-badge a{color:#fff;font-weight:700;text-decoration:none;line-height:1}

/* added experience/education/certification rows in the form */
#llrb-embed .section ul{list-style:none;margin:0 0 10px;padding:0}
#llrb-embed .section ul li{background:#fff;border:1px solid #e3e9ed;border-radius:7px;padding:9px 13px;margin:0 0 7px;font-size:14.5px;line-height:1.55}
#llrb-embed .section ul li b{color:#20303c}
#llrb-embed .section ul li a{color:#de0000;text-decoration:none;font-weight:700}

/* download: site primary button */
#llrb-embed .btn{
  display:block;width:100%;margin:22px 0 0;background:#259457;color:#fff;border:0;
  border-radius:50px;padding:13px 40px;font-family:Rubik,Arial,sans-serif;font-size:18px;
  font-weight:500;cursor:pointer;transition:background .15s ease;
}
#llrb-embed .btn:hover{background:rgba(37,148,87,.85)}

/* --- the rendered resume preview: clean document typography --- */
#llrb-embed #resumePreview{min-height:260px;flex:1}
#llrb-embed #resumePreview.blank{
  display:flex;align-items:center;justify-content:center;border:2px dashed #e3e9ed;
  border-radius:10px;color:#5b6b76;font-size:15px;padding:30px;text-align:center;
}
#llrb-embed #resumePreview .llrb-h1{font-size:27px;line-height:1.25;font-weight:700;color:#20303c;margin:0 0 4px;border:0;padding:0}
#llrb-embed #resumePreview .info{font-size:14px;color:#5b6b76;margin:0 0 14px}
#llrb-embed #resumePreview h2{
  font-size:16px;line-height:1.4;font-weight:600;color:#1d7a48;margin:18px 0 8px;
  padding:0 0 5px;border-bottom:2px solid #e9f5ee;letter-spacing:.01em;
}
#llrb-embed #resumePreview div,#llrb-embed #resumePreview li{font-size:15px;line-height:1.65;color:#33434e}
#llrb-embed #resumePreview ul{margin:0;padding-left:19px}
#llrb-embed #resumePreview li{margin:0 0 7px}
#llrb-embed #resumePreview li b{color:#20303c}
#llrb-embed #resumePreview .skill-badge{
  display:inline-block;background:#e9f5ee;color:#1d7a48;border:1px solid #c9e7d6;
  border-radius:50px;padding:3px 12px;font-size:13.5px;font-weight:500;margin:0 4px 6px 0;
}

/* --- mobile --- */
@media (max-width:900px){
  #llrb-embed .container{grid-template-columns:1fr;gap:22px}
  #llrb-embed .preview-card{position:static;top:auto;align-self:auto}
  #llrb-embed #resumePreview{flex:none}
}
@media (max-width:600px){
  #llrb-embed{padding:32px 12px 0;font-size:15.5px}
  #llrb-embed .form-card{padding:20px 16px 22px}
  #llrb-embed .preview-card{padding:20px 16px 22px}
  #llrb-embed .form-card h2,#llrb-embed .preview-card>h2{font-size:22px;line-height:28px}
  #llrb-embed .row{grid-template-columns:1fr}
}
