@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --yellow: #F5C518;
  --blue:   #1565C0;
  --red:    #C62828;
  --green:  #2E7D32;
  --teal:   #00695C;
  --dark:   #0D1218;
  --grey:   #1A1A2E;
  --text:   #1A1A1A;
  --light:  #F8F8F8;
  --mid:    #555;
  --nav-h:  52px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* ── COLOUR BAR ── */
.colour-bar {
  height: 4px;
  display: flex;
  width: 100%;
}
.colour-bar span { flex: 1; }
.cb-y { background: var(--yellow); }
.cb-b { background: var(--blue); }
.cb-r { background: var(--red); }
.cb-g { background: var(--green); }

/* ── NAV ── */
nav {
  background: var(--dark);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 26px;
  height: 26px;
}
.logo-squares span { border-radius: 2px; }

.nav-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1.1;
  display: block;
}
.nav-party {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}

.nav-links li a {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.nav-vote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 18px !important;
  background: var(--yellow) !important;
  color: #000 !important;
  border-bottom: none !important;
  border-radius: 2px;
  height: auto !important;
  margin-left: 8px;
}
.nav-vote:hover { background: #ffd740 !important; color: #000 !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    height: auto;
    padding: 12px 24px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    border-bottom: none;
    border-left-color: var(--yellow);
    background: rgba(255,255,255,0.04);
  }
  .nav-vote {
    margin: 8px 24px 0;
    padding: 10px 18px !important;
    text-align: center;
  }
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 48px 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }

footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 12px;
}
footer p, footer a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  text-decoration: none;
  display: block;
}
footer a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

/* ── VOTE STRIP ── */
.vote-strip {
  background: var(--yellow);
  padding: 40px 40px;
  text-align: center;
}
.vote-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--dark);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px;
}
.vote-strip p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  color: rgba(0,0,0,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.vote-strip .v-btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 12px 28px;
  margin: 4px 8px;
  text-decoration: none;
  border: 2px solid var(--dark);
  color: var(--dark);
  transition: all 0.2s;
  border-radius: 2px;
}
.vote-strip .v-btn:hover { background: var(--dark); color: var(--yellow); }
.vote-strip .v-btn.sec { border-color: rgba(0,0,0,0.3); color: rgba(0,0,0,0.6); }

/* ── SECTION UTILITIES ── */
.section {
  padding: 64px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.section.dark {
  background: var(--dark);
  max-width: 100%;
  padding: 64px 40px;
}
.section.dark .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section.alt {
  background: var(--light);
  max-width: 100%;
  padding: 64px 40px;
}
.section.alt .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
}
.label-yellow { background: var(--yellow); color: #000; }
.label-blue   { background: var(--blue);   color: #fff; }
.label-green  { background: var(--green);  color: #fff; }
.label-red    { background: var(--red);    color: #fff; }

.section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.1;
}
.section.dark h2 { color: #fff; }

.section .lead {
  font-size: 16px;
  color: var(--mid);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.section.dark .lead { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 1.5px;
  padding: 11px 24px;
  text-decoration: none;
  border: 2px solid;
  border-radius: 2px;
  transition: all 0.15s;
  cursor: pointer;
}
.btn-primary   { background: var(--yellow); color: #000; border-color: var(--yellow); }
.btn-primary:hover { background: #ffd740; border-color: #ffd740; }
.btn-outline   { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #fff; color: #fff; }
.btn-dark      { background: var(--dark); color: var(--yellow); border-color: var(--dark); }
.btn-green     { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: #1B5E20; }
.btn-sm { font-size: 13px; padding: 7px 16px; letter-spacing: 1px; }

/* ── ISSUE / PDF CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.issue-card {
  background: #fff;
  border: 1px solid #E8ECF0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}
.issue-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.issue-card-accent {
  height: 5px;
}

.issue-card-body {
  padding: 20px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.issue-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}

.issue-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.issue-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.issue-card-footer {
  padding: 12px 20px;
  border-top: 1px solid #F0F2F5;
  background: #FAFBFC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.issue-card-pages {
  font-size: 11px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  color: #AAA;
  text-transform: uppercase;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 7px 14px;
  background: var(--yellow);
  color: #000;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}
.dl-btn:hover { background: #ffd740; }
.dl-btn svg { width: 12px; height: 12px; flex-shrink: 0; }

/* coming soon card */
.issue-card.coming-soon {
  opacity: 0.45;
  pointer-events: none;
}
.coming-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #AAA;
  background: #F0F2F5;
  padding: 3px 8px;
  border-radius: 2px;
}

/* ── DOCUMENT LIBRARY ── */
.doc-card {
  background: #fff;
  border: 1px solid #E8ECF0;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.15s;
}
.doc-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.doc-icon {
  width: 40px;
  height: 48px;
  background: var(--dark);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--yellow);
}

.doc-info { flex: 1; min-width: 0; }

.doc-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 6px;
}
.tag-onepager { background: #E3F2FD; color: #1565C0; }
.tag-platform { background: #FFF8E1; color: #F57F17; }
.tag-summary  { background: #E8F5E9; color: #2E7D32; }
.tag-sbc      { background: #F3E5F5; color: #6A1B9A; }
.tag-budget   { background: #FBE9E7; color: #BF360C; }
.tag-chapter  { background: #E0F2F1; color: #00695C; }

.doc-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.doc-info p {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
  margin-bottom: 10px;
}
.doc-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.doc-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 5px 12px;
  border: 1.5px solid;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-block;
}
.doc-btn.view   { border-color: var(--dark); color: var(--dark); background: transparent; }
.doc-btn.view:hover { background: var(--dark); color: #fff; }
.doc-btn.dl     { background: var(--yellow); color: #000; border-color: var(--yellow); }
.doc-btn.dl:hover { background: #ffd740; }

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 12px;
}
@media(max-width:480px){ .docs-grid { grid-template-columns: 1fr; } }

/* ── VIDEO EMBED ── */
.video-wrap {
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  max-width: 720px;
}
.video-wrap iframe { width: 100%; height: 100%; position: absolute; top:0; left:0; border: none; }
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0A1628;
  border: 2px dashed rgba(245,197,24,0.3);
  color: rgba(255,255,255,0.3);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  gap: 8px;
}
.video-placeholder span {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  color: rgba(255,255,255,0.2);
}

/* ── HTV PAGE ── */
.htv-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}
.htv-steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.htv-steps li:last-child { border-bottom: none; }
.htv-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.htv-steps li p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  padding-top: 4px;
}
.htv-steps li strong { color: #fff; }

/* ── ABOUT PAGE ── */
.about-body {
  max-width: 760px;
}
.about-body p {
  font-size: 15px;
  color: #333;
  line-height: 1.85;
  margin-bottom: 20px;
}
.cred-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.cred-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--dark);
  color: var(--yellow);
  border-radius: 2px;
}


/* ── DROPDOWN NAV ── */
nav { overflow: visible !important; }
.nav-links { overflow: visible; }

.nav-dept { position: relative; }

.nav-dept-link {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  height: var(--nav-h) !important;
  padding: 0 12px !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-dept-link:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.nav-dept.open .nav-dept-link { color: var(--yellow); border-bottom-color: var(--yellow); }

.nav-chevron {
  opacity: 0.5;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-dept.open .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(var(--nav-h) + 1px);
  left: 0;
  min-width: 230px;
  background: #111820;
  border-top: 3px solid var(--dept-color, var(--yellow));
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--dept-color, var(--yellow));
  border-radius: 0 0 4px 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  list-style: none;
  z-index: 9999;
  padding: 6px 0 8px;
}
.nav-dept.open .nav-dropdown { display: block; }

.nav-drop-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}

.nav-drop-item {
  display: block;
  padding: 9px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  white-space: nowrap;
}
.nav-drop-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* ── SUB-DROPDOWN (nested flyout) ── */
.nav-sub {
  position: relative;
}
.nav-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  white-space: nowrap;
}
.nav-sub-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-sub-link svg { flex-shrink: 0; margin-left: 8px; transform: rotate(-90deg); opacity: 0.5; }
.nav-sub.open .nav-sub-link svg { opacity: 1; }

.nav-subdrop {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 230px;
  background: #111820;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--sub-color, var(--yellow));
  border-radius: 0 4px 4px 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  list-style: none;
  z-index: 10000;
  padding: 6px 0 8px;
}
.nav-sub.open .nav-subdrop { display: block; }

.nav-subdrop-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}
.nav-subdrop-item {
  display: block;
  padding: 9px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  white-space: nowrap;
}
.nav-subdrop-item:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* Mobile: sub-dropdown stacks inline */
@media (max-width: 768px) {
  .nav-subdrop { position: static; left: auto; top: auto; border-radius: 0; border: none; border-left: 3px solid var(--sub-color, var(--yellow)); margin-left: 24px; box-shadow: none; }
}

/* ── ONE-PAGER PAGE ── */
.op-hero {
  background: var(--dark);
  padding: 28px 40px;
  border-bottom: 4px solid var(--yellow);
}
.op-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.op-breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.op-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.op-breadcrumb a:hover { color: var(--yellow); }
.op-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
}
.op-dept-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 8px;
}
.op-pdf-wrap {
  max-width: 860px;
  margin: 36px auto 20px;
  padding: 0 24px;
}
.op-pdf-embed {
  width: 100%;
  height: 1120px;
  border: none;
  display: block;
  border-radius: 3px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}
.op-actions {
  max-width: 860px;
  margin: 0 auto 64px;
  padding: 0 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.soon-body {
  max-width: 560px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}
.soon-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 14px;
}
.soon-body p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-dept-link { height: auto !important; padding: 12px 24px !important; border-bottom: none !important; border-left: 3px solid transparent !important; }
  .nav-dept.open .nav-dept-link { border-left-color: var(--yellow) !important; background: rgba(255,255,255,0.04); }
  .nav-dropdown { position: static; border: none; border-left: 3px solid var(--dept-color, var(--yellow)); background: rgba(255,255,255,0.03); box-shadow: none; border-radius: 0; min-width: auto; margin-left: 24px; padding: 4px 0; }
  .nav-drop-header { display: none; }
  .nav-drop-item { padding: 10px 16px; }
  .op-pdf-embed { height: 500px; }
  .op-hero { padding: 24px 20px; }
  .op-pdf-wrap, .op-actions { padding: 0 16px; }
}
