/* ---------------------------------------------------------------------
   Content pages, September 2026. Learn, support, videos, legal, and the
   rest of the site outside the home and shop pages.

   Everything is scoped to .sog-page, so bare element selectors inside it
   are safe and the site's older stylesheets are untouched. No JS: the
   accordions are native <details>.
   --------------------------------------------------------------------- */

.sog-page{
  font-family:var(--sog-body);
  color:var(--sog-ink);
  font-size:16px;
  line-height:1.62;
  width:100%;
}
.sog-pgwrap{
  max-width:880px;
  margin:0 auto;
  padding:0 24px;
}
.sog-pgwrap.sog-wide{
  max-width:1160px;
}

/* ---------- page head ---------- */

.sog-pghead{
  background:var(--sog-navy);
  color:#fff;
  padding:54px 0 48px;
  margin-bottom:48px;
}
.sog-pghead .sog-eyebrow{
  font-family:var(--sog-body);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#7FCBEE;
  margin-bottom:10px;
}
.sog-pghead h1{
  font-family:var(--sog-disp);
  font-size:clamp(30px,4.2vw,44px);
  font-weight:700;
  line-height:1.08;
  margin:0;
  color:#fff;
  letter-spacing:-.01em;
}
.sog-pghead p{
  color:#C6D8E4;
  font-size:17px;
  margin:14px 0 0;
  max-width:62ch;
}

/* ---------- body typography ---------- */

.sog-pgbody{
  padding-bottom:70px;
}
.sog-pgbody h2{
  font-family:var(--sog-disp);
  font-size:26px;
  font-weight:700;
  color:var(--sog-ink);
  margin:44px 0 14px;
  line-height:1.2;
}
.sog-pgbody h3{
  font-family:var(--sog-disp);
  font-size:19px;
  font-weight:700;
  color:var(--sog-ink);
  margin:32px 0 10px;
}
.sog-pgbody h4,
.sog-pgbody h5{
  font-family:var(--sog-disp);
  font-size:16px;
  font-weight:700;
  color:var(--sog-ink);
  margin:26px 0 8px;
}
.sog-pgbody > :first-child{
  margin-top:0;
}
.sog-pgbody p{
  margin:0 0 16px;
  color:var(--sog-ink-2);
}
.sog-pgbody strong,
.sog-pgbody b{
  color:var(--sog-ink);
  font-weight:600;
}
.sog-pgbody a{
  color:var(--sog-cyan-dk);
  text-decoration:underline;
  text-underline-offset:2px;
}
.sog-pgbody a:hover{
  color:#0F73A8;
}
.sog-pgbody ul,
.sog-pgbody ol{
  margin:0 0 18px;
  padding-left:22px;
  color:var(--sog-ink-2);
}
.sog-pgbody li{
  margin-bottom:9px;
}
.sog-pgbody img{
  max-width:100%;
  height:auto;
}
.sog-pgbody hr{
  border:0;
  border-top:1px solid var(--sog-rule);
  margin:40px 0;
}
.sog-pgbody blockquote{
  margin:0 0 18px;
  padding-left:16px;
  border-left:3px solid var(--sog-cyan);
  color:var(--sog-ink-2);
}

/* ---------- tables ---------- */

.sog-tablewrap{
  overflow-x:auto;
  margin:0 0 24px;
}
.sog-pgbody table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
}
.sog-pgbody th,
.sog-pgbody td{
  text-align:left;
  padding:11px 14px;
  border-bottom:1px solid var(--sog-rule);
  vertical-align:top;
}
.sog-pgbody thead th{
  font-family:var(--sog-disp);
  font-weight:700;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--sog-ink-3);
  border-bottom:1.5px solid var(--sog-rule-2);
}
.sog-pgbody tbody th{
  width:38%;
  font-weight:600;
  color:var(--sog-ink);
}
.sog-pgbody tbody tr:hover{
  background:#FAFCFD;
}

/* ---------- accordion (native details) ---------- */

.sog-page .sog-acc{
  border:1px solid var(--sog-rule);
  border-radius:6px;
  overflow:hidden;
  margin:0 0 30px;
}
.sog-page .sog-acc details{
  border-bottom:1px solid var(--sog-rule);
}
.sog-page .sog-acc details:last-child{
  border-bottom:0;
}
.sog-page .sog-acc summary{
  list-style:none;
  cursor:pointer;
  padding:17px 52px 17px 20px;
  position:relative;
  font-family:var(--sog-disp);
  font-weight:600;
  font-size:16.5px;
  color:var(--sog-ink);
}
.sog-page .sog-acc summary::-webkit-details-marker{
  display:none;
}
.sog-page .sog-acc summary:hover{
  color:var(--sog-cyan-dk);
}
.sog-page .sog-acc summary:after{
  content:"";
  position:absolute;
  right:22px;
  top:50%;
  width:9px;
  height:9px;
  margin-top:-6px;
  border-right:2px solid var(--sog-ink-3);
  border-bottom:2px solid var(--sog-ink-3);
  transform:rotate(45deg);
  transition:transform .18s ease;
}
.sog-page .sog-acc details[open] summary:after{
  transform:rotate(-135deg);
  margin-top:-2px;
}
.sog-page .sog-acc details[open] summary{
  background:#F7FAFC;
}
.sog-page .sog-accbody{
  padding:4px 20px 20px;
}
.sog-page .sog-accbody p:last-child{
  margin-bottom:0;
}

/* ---------- callout ---------- */

.sog-callout{
  border:1px solid var(--sog-rule);
  border-left:3px solid var(--sog-cyan);
  background:#F7FBFD;
  border-radius:5px;
  padding:16px 20px;
  margin:0 0 26px;
}
.sog-callout p:last-child{
  margin-bottom:0;
}
.sog-callout h3{
  margin-top:0;
}

/* ---------- buttons ---------- */

.sog-pgbtn{
  display:inline-block;
  background:var(--sog-cyan-dk);
  color:#fff !important;
  font-family:var(--sog-disp);
  font-weight:700;
  font-size:15px;
  padding:12px 24px;
  border-radius:4px;
  text-decoration:none !important;
  margin:4px 8px 4px 0;
}
.sog-pgbtn:hover{
  background:#0F73A8;
  color:#fff !important;
}
.sog-pgbtn.sog-ghost{
  background:#fff;
  color:var(--sog-navy) !important;
  border:1.5px solid var(--sog-rule-2);
}
.sog-pgbtn.sog-ghost:hover{
  border-color:var(--sog-cyan-dk);
  color:var(--sog-cyan-dk) !important;
  background:#fff;
}

/* ---------- card grid (videos, link lists) ---------- */

.sog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:26px;
  margin:0 0 30px;
}
.sog-card2{
  border:1px solid var(--sog-rule);
  border-radius:6px;
  overflow:hidden;
  background:#fff;
}
.sog-card2 .sog-vidbox{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#000;
}
.sog-card2 .sog-vidbox iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.sog-card2 .sog-c2body{
  padding:16px 18px 20px;
}
.sog-card2 h3{
  margin:0 0 6px;
  font-size:17px;
}
.sog-card2 p{
  margin:0;
  font-size:14.5px;
}

/* ---------- numbered steps ---------- */

.sog-steplist{
  counter-reset:sog-step;
  list-style:none;
  padding:0;
  margin:0 0 26px;
}
.sog-steplist > li{
  counter-increment:sog-step;
  position:relative;
  padding-left:44px;
  margin-bottom:18px;
  color:var(--sog-ink-2);
}
.sog-steplist > li:before{
  content:counter(sog-step);
  position:absolute;
  left:0;
  top:0;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--sog-wash);
  color:var(--sog-cyan-dk);
  font-family:var(--sog-disp);
  font-weight:700;
  font-size:13.5px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ---------- section nav (in-page jump links) ---------- */

.sog-jump{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 34px;
}
.sog-jump a{
  font-size:14px;
  padding:8px 15px;
  border:1px solid var(--sog-rule);
  border-radius:99px;
  color:var(--sog-ink-2);
  text-decoration:none;
  background:#fff;
}
.sog-jump a:hover{
  border-color:var(--sog-cyan-dk);
  color:var(--sog-cyan-dk);
}

.sog-page [id]{
  scroll-margin-top:78px;
}

/* ---------- figures ---------- */

.sog-pgfig{
  margin:0 0 26px;
}
.sog-pgfig img{
  display:block;
  width:100%;
  border-radius:6px;
  border:1px solid var(--sog-rule);
}
.sog-pgfig figcaption{
  font-size:13.5px;
  color:var(--sog-ink-3);
  margin-top:9px;
}

/* ---------- lead paragraph ---------- */

.sog-pglead{
  font-size:19px;
  line-height:1.55;
  color:var(--sog-ink) !important;
  margin-bottom:22px !important;
}

/* ---------- sign-off ---------- */

.sog-pgsign{
  font-family:var(--sog-disp);
  font-weight:700;
  color:var(--sog-ink) !important;
}

/* ---------- numbered legal sections ---------- */

.sog-secnum{
  color:var(--sog-cyan-dk);
}

.sog-grid.sog-g3{
  grid-template-columns:repeat(auto-fit,minmax(228px,1fr));
  gap:20px;
}

@media(max-width:600px){
  .sog-pghead{
    padding:38px 0 34px;
    margin-bottom:34px;
  }
  .sog-pgbody h2{
    font-size:22px;
    margin-top:34px;
  }
}
