/* Shared by the guide pages.
 *
 * index.html and pod-auto-uploader.html still inline their CSS - they were
 * written that way and there is no reason to risk changing two live pages.
 * The guides are four files with identical styling, so one stylesheet is both
 * smaller over the wire and the only way to keep them from drifting apart. */

:root{
  --ink:#14201a; --mut:#5d6b63; --line:#dfe6e1; --bg:#fbfcfb;
  --panel:#f2f7f4; --acc:#1f7a4d; --acc-dark:#18603c;
  --warn:#fff8e6; --warn-line:#e8d08a;
  --max:760px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font:17px/1.7 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:var(--max);margin:0 auto;padding:0 24px}
a{color:var(--acc)}
h1,h2,h3{line-height:1.25;margin:0}
h1{font-size:clamp(30px,4.6vw,42px);letter-spacing:-.02em}
h2{font-size:clamp(21px,2.6vw,26px);letter-spacing:-.01em;margin:44px 0 12px}
h3{font-size:18px;margin:28px 0 8px}
p{margin:0 0 18px}
ul,ol{margin:0 0 18px;padding-left:22px}
li{margin-bottom:8px}

header{border-bottom:1px solid var(--line);background:rgba(251,252,251,.94);
  position:sticky;top:0;z-index:10;backdrop-filter:blur(8px)}
.nav{display:flex;align-items:center;justify-content:space-between;height:62px;
  max-width:var(--max);margin:0 auto;padding:0 24px}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;
  letter-spacing:-.01em;color:var(--ink);text-decoration:none;font-size:16px}
.mark{width:26px;height:26px;border-radius:7px;background:var(--acc);
  position:relative;flex:none}
.mark::after{content:"";position:absolute;inset:6px;border:2px solid #fff;border-radius:2px}
.nav .btn{font-size:14px;padding:8px 15px}

.btn{display:inline-block;background:var(--acc);color:#fff;text-decoration:none;
  padding:11px 20px;border-radius:9px;font-weight:600;font-size:15px}
.btn:hover{background:var(--acc-dark)}

article{padding:52px 0 20px}
.kicker{font-size:12px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--acc);font-weight:700;margin-bottom:12px}
.standfirst{font-size:19px;color:var(--mut);margin:18px 0 8px}
.updated{font-size:13.5px;color:var(--mut);margin-bottom:8px}

.spec{background:#fff;border:1px solid var(--line);border-radius:14px;
  padding:6px 22px;margin:26px 0}
.spec dl{margin:0;display:grid;grid-template-columns:auto 1fr;gap:0 20px}
.spec dt{font-weight:600;padding:12px 0;border-top:1px solid var(--line)}
.spec dd{margin:0;padding:12px 0;border-top:1px solid var(--line);color:var(--mut)}
.spec dt:first-of-type,.spec dl>dt:first-child+dd{border-top:0}
@media(max-width:560px){
  .spec dl{grid-template-columns:1fr;gap:0}
  .spec dd{padding-top:0;border-top:0}
}

blockquote{margin:24px 0;padding:18px 22px;background:var(--panel);
  border-left:3px solid var(--acc);border-radius:0 10px 10px 0}
blockquote p{margin:0;font-size:16.5px}
blockquote cite{display:block;margin-top:10px;font-size:13.5px;
  color:var(--mut);font-style:normal}

.callout{background:var(--warn);border:1px solid var(--warn-line);
  border-radius:14px;padding:20px 24px;margin:28px 0}
.callout p:last-child{margin-bottom:0}
.callout h3{margin-top:0}

.tool{background:var(--panel);border:1px solid var(--line);border-radius:14px;
  padding:24px;margin:40px 0 8px}
.tool h3{margin-top:0}
.tool p{font-size:15.5px;color:var(--mut)}
.tool p:last-of-type{margin-bottom:16px}

.more{border-top:1px solid var(--line);margin-top:48px;padding-top:24px}
.more h3{margin-top:0;font-size:15px}
.more ul{list-style:none;padding:0;margin:0}
.more li{margin-bottom:6px;font-size:15.5px}

footer{border-top:1px solid var(--line);margin-top:56px;padding:34px 0;
  font-size:13.5px;color:var(--mut)}
footer a{color:var(--mut)}
.fine{margin-top:14px;font-size:12.5px}
