h1 + blockquote {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  border-left: none !important;
  border: none !important;
  font-style: italic;
  color: var(--md-default-fg-color--light);
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

h1 + blockquote p {
  margin-left: 0;
  padding-left: 0;
}

h1 {
  margin-top: 0;
  padding-top: 0;
}

/* ── Breadcrumb ── */
.bc {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
  font-size: 13px;
  color: #9ca3af;
  font-family: 'Montserrat', sans-serif;
}

.bc a {
  color: #6b7280;
  text-decoration: none;
}

.bc a:hover {
  color: #33b257;
}

.bc-sep {
  color: #dadada;
}

.bc .cur {
  color: #323232;
  font-weight: 500;
}

/* ── Page header ── */
.ph {
  margin-bottom: 20px;
}

.ph h1 {
  font-size: 28px;
  font-weight: 700;
  color: #323232;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
  font-family: 'Montserrat', sans-serif;
}

.ph p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  font-family: 'Montserrat', sans-serif;
}

/* ── Product Cards ── */
.prod-sec {
  margin-bottom: 24px;
}

.slabel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}
.slabel::after,
.wn-sec h2::after,
h2#whats-new::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* What's new heading styled as slabel */
.wn-sec h2,
h2#whats-new {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pc {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out, transform 150ms ease-in-out;
}

.pc:hover {
  border-color: #33b257;
  box-shadow: 0 0 0 2px rgba(51,178,87,0.12);
  transform: translateY(-2px);
}

.pc.muted {
  opacity: 0.5;
  pointer-events: none;
}

.pc-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px 20px;
}

.pc-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.pc-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
}

.pc h3 {
  font-size: 15px;
  font-weight: 700;
  color: #323232;
  line-height: 1.25;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.pc p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
  font-family: 'Montserrat', sans-serif;
}

.pl {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.plink {
  font-size: 12px;
  color: #33b257;
  font-weight: 600;
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(51,178,87,0.12);
  transition: background 150ms ease-in-out, color 150ms ease-in-out;
  font-family: 'Montserrat', sans-serif;
}

.plink:hover {
  background: rgba(51,178,87,0.22);
  color: #1e6632;
}

/* ── Split layout (Platform | Models) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.col {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  gap: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 150ms ease-in-out;
}
.col:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.col-platform { border-top: 3px solid #33b257; }
.col-models   { border-top: 3px solid #1a6eb5; }

.col-head { display: flex; align-items: center; gap: 14px; }

.col-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;

  display: flex; align-items: center; justify-content: center;
}
.col-icon.blue { background: rgba(88,184,254,0.15); }
.col-icon svg { width: 24px; height: 24px; color: #1e6632; }
.col-icon.blue svg { color: #1a6eb5; }

.col-title { flex: 1; }
.col-title h2 { font-size: 18px; font-weight: 700; color: #323232; letter-spacing: -0.01em; line-height: 1.2; margin-top: 0; margin-bottom: 3px; font-family: 'Montserrat', sans-serif; }
.col-title .sub { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; font-family: 'Montserrat', sans-serif; }

.col-meta { font-size: 11px; font-weight: 600; color: #6b7280; background: #f3f4f6; padding: 3px 8px; border-radius: 6px; white-space: nowrap; font-family: 'Montserrat', sans-serif; }

/* Feature rows — left card */
.feat-rows { display: flex; flex-direction: column; gap: 6px; }
.feat-row {
  display: flex; align-items: center; gap: 11px;
  padding: 16px 12px;
  background: #f5f5f5; border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none; color: inherit;
  transition: border-color 150ms ease-in-out, background 150ms ease-in-out;
}
.feat-row:hover { border-color: #33b257; background: #fff; text-decoration: none; }
.feat-row .ic {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 6px; background: #fff; border: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
}
.feat-row .ic svg { width: 15px; height: 15px; color: #1e6632; }
.feat-row .txt { flex: 1; min-width: 0; }
.feat-row .txt h4 { font-size: 13px; font-weight: 600; color: #323232; margin-top: 0; font-style: normal; margin-bottom: 1px; font-family: 'Montserrat', sans-serif; }
.feat-row .txt p  { font-size: 11px; color: #6b7280; line-height: 1.4; margin: 0; font-family: 'Montserrat', sans-serif; }
.feat-row .arr { color: #9ca3af; flex-shrink: 0; }
.feat-row .arr svg { width: 13px; height: 13px; }
.feat-row:hover .arr { color: #33b257; }

/* Model mini-tiles — right card */
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mtile {
  background: #f5f5f5; border: 1px solid #e5e7eb;
  border-radius: 8px; padding: 11px 12px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 150ms ease-in-out, background 150ms ease-in-out;
}
.mtile:hover { border-color: #1a6eb5; background: #fff; }
.mtile.muted { opacity: 0.55; pointer-events: none; }
.mtile .mhead { display: flex; align-items: center; gap: 6px; }
.mtile h4 { font-size: 13px; font-weight: 600; color: #323232; line-height: 1.2; margin-top: 0; margin-bottom: 0; font-style: normal; font-family: 'Montserrat', sans-serif; }
.mtile p  { font-size: 11px; color: #6b7280; line-height: 1.35; margin: 0; font-family: 'Montserrat', sans-serif; }
.mtile .mbottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.mtile .mcat { font-size: 11px; color: #9ca3af; }
.mtile .mview { font-size: 11px; font-weight: 600; color: #1a6eb5; }

/* CTA buttons */
.col-actions { display: flex; gap: 8px; margin-top: auto; }
.btn-fill {
  flex: 1; height: 38px;
  background: #33b257; color: #fff;
  border: none; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  text-decoration: none; cursor: pointer;
  transition: background-color 150ms ease-in-out;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-fill,
.btn-fill:link,
.btn-fill:visited { color: #fff !important; }
.btn-fill:hover { background: #1e6632; color: #fff !important; text-decoration: none; }
.btn-fill.blue,
.btn-fill.blue:link,
.btn-fill.blue:visited { background: #1a6eb5; color: #fff !important; }
.btn-fill.blue:hover { background: #155a96; color: #fff !important; }
.btn-fill svg { width: 12px; height: 12px; }



/* ── Next navigation ── */
.pnav { display: flex; justify-content: flex-end; padding-top: 24px; padding-bottom: 24px; margin-top: 40px; border-top: 1px solid #e5e7eb; }
.pnav-btn { display: flex; flex-direction: column; align-items: flex-end; text-decoration: none; padding: 9px 14px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out; }
.pnav-btn:hover { border-color: #33b257; box-shadow: 0 0 0 2px rgba(51,178,87,0.12); }
.pnav-lbl { font-size: 10px; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; font-family: 'Montserrat', sans-serif; }
.pnav-ttl { font-size: 13px; font-weight: 600; color: #323232; font-family: 'Montserrat', sans-serif; }

/* ── What's New ── */
.wn-sec { margin-bottom: 24px; }
.wn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.wn-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
}
.wn-card:hover { border-color: #33b257; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.wn-card .date { font-size: 10.5px; color: #9ca3af; font-weight: 500; letter-spacing: 0.03em; font-family: 'Montserrat', sans-serif; }
.wn-card h4 { font-size: 13px; font-weight: 600; color: #323232; line-height: 1.35; margin: 0; font-style: normal; font-family: 'Montserrat', sans-serif; }
.wn-card p  { font-size: 11px; color: #6b7280; line-height: 1.5; margin: 0; font-family: 'Montserrat', sans-serif; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: 8px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
  vertical-align: middle;
  font-family: 'Montserrat', sans-serif;
}
.b-ok   { background: rgba(51,178,87,0.12);  color: #1e6632; }
.b-upd  { background: rgba(88,184,254,0.15); color: #1a6eb5; }
.b-soon { background: rgba(255,165,0,0.12);  color: #b36a00; }
.b-fix  { background: rgba(239,68,68,0.10);  color: #b91c1c; }


h2#overview {
  display: none;
}