:root {
  --b3-ink: #071526;
  --b3-navy: #10233f;
  --b3-blue: #245f9f;
  --b3-red: #c9361e;
  --b3-ember: #ed5b2d;
  --b3-gold: #d99b2b;
  --b3-green: #0d6b5f;
  --b3-cream: #fff8ee;
  --b3-soft: #f7efe3;
  --b3-paper: #ffffff;
  --b3-border: rgba(16, 35, 63, 0.12);
  --b3-warm-border: rgba(217, 155, 43, 0.28);
  --b3-muted: #506078;
  --b3-shadow: 0 22px 70px rgba(7, 21, 38, 0.11);
}

.b3-curriculum-library,
.b3-downloads,
.b3-dashboard,
.b3-progress-box,
.b3-notice {
  font-family: Futura, Inter, "Segoe UI", Arial, sans-serif;
}

.b3-volume-card,
.b3-downloads,
.b3-dashboard,
.b3-progress-box,
.b3-notice {
  border: 1px solid var(--b3-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  margin: 0 0 22px;
  box-shadow: 0 14px 40px rgba(7, 21, 38, 0.06);
}

.b3-notice--empty {
  display: grid;
  gap: 6px;
  min-height: 98px;
  align-content: center;
  border-style: dashed;
  background: #ffffff;
}

.b3-notice--empty strong,
.b3-notice--empty span {
  display: block;
}

.b3-notice--empty strong {
  color: var(--b3-ink);
  font-size: 1.08rem;
}

.b3-notice--empty span {
  color: var(--b3-muted);
}

.b3-volume-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.b3-curriculum-library {
  display: grid;
  gap: 14px;
}

.b3-volume-accordion {
  overflow: hidden;
  padding: 0;
  border-color: rgba(16, 35, 63, 0.14);
  background: #ffffff;
}

.b3-volume-accordion__heading {
  margin: 0;
}

.b3-volume-accordion__button {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: var(--b3-ink);
  text-align: left;
  cursor: pointer;
}

.b3-volume-accordion__button:hover,
.b3-volume-accordion__button:focus {
  background: #fffaf2;
  color: var(--b3-ink);
}

.b3-volume-accordion__meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.b3-volume-accordion__count {
  color: var(--b3-muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.b3-volume-accordion__title {
  color: var(--b3-ink);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  line-height: 1.15;
}

.b3-volume-accordion__icon {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--b3-border);
  border-radius: 999px;
  background: #fffaf2;
}

.b3-volume-accordion__icon::before,
.b3-volume-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: var(--b3-navy);
  transform: translate(-50%, -50%);
}

.b3-volume-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 160ms ease;
}

.b3-volume-accordion.is-open .b3-volume-accordion__icon::after {
  opacity: 0;
}

.b3-volume-accordion__panel {
  margin: 0;
  padding: 0 20px 22px;
  border-top: 1px solid rgba(16, 35, 63, 0.1);
  background: #fffdf8;
}

.b3-volume-accordion__panel[hidden] {
  display: none;
}

.b3-volume-card h2,
.b3-downloads h2,
.b3-dashboard h2 {
  margin: 0 0 12px;
  color: var(--b3-navy);
  letter-spacing: 0;
}

.b3-badge,
.b3-file-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 6px;
  background: var(--b3-soft);
  color: var(--b3-navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.b3-lesson-list,
.b3-download-list,
.b3-dashboard-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.b3-lesson-list li,
.b3-download-list li,
.b3-dashboard-list li {
  border: 1px solid var(--b3-border);
  border-radius: 8px;
  padding: 14px;
  background: #ffffff;
}

.b3-volume-accordion .b3-lesson-list li {
  padding: 16px 18px;
  border-color: rgba(16, 35, 63, 0.12);
  box-shadow: 0 8px 24px rgba(7, 21, 38, 0.04);
}

.b3-volume-accordion .b3-lesson-list li:hover {
  border-color: rgba(217, 155, 43, 0.48);
  box-shadow: 0 12px 30px rgba(7, 21, 38, 0.07);
}

.b3-lesson-list a,
.b3-dashboard-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--b3-navy);
  text-decoration: none;
}

.b3-annotation-badges {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding-left: 10px;
}

.b3-annotation-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 58, 0.14);
  background: #ffffff;
  color: #405169;
  font-size: 0.78rem;
  line-height: 1;
}

.b3-annotation-badge--bookmark {
  color: #c9361e;
}

.b3-annotation-badge--notes {
  color: #0b6f62;
}

.b3-annotation-badge--highlights {
  color: transparent;
}

.b3-lesson-list p,
.b3-downloads p,
.b3-dashboard p {
  color: var(--b3-muted);
}

.b3-download-list li,
.b3-dashboard-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.b3-download-list small,
.b3-dashboard-list span {
  display: block;
  color: var(--b3-muted);
  margin-top: 4px;
}

.b3-dashboard-meta {
  margin-top: -8px;
  font-weight: 700;
}

.b3-dashboard-section {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--b3-border);
}

.b3-dashboard-section h3 {
  margin: 0 0 14px;
  color: var(--b3-navy);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.b3-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--b3-red);
  background: var(--b3-red);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.b3-button:hover,
.b3-button:focus {
  color: #ffffff;
  background: var(--b3-ember);
  border-color: var(--b3-ember);
}

.b3-button--small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.b3-button--muted {
  background: var(--b3-navy);
  border-color: var(--b3-navy);
}

.b3-button--full {
  width: 100%;
}

.b3-downloads-page {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 44px);
  font-family: Futura, Inter, "Segoe UI", Arial, sans-serif;
}

.b3-downloads-page__header {
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--b3-warm-border);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 54px rgba(7, 21, 38, 0.07);
}

.b3-downloads-page__header h1 {
  margin: 12px 0 10px;
  color: var(--b3-navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.b3-downloads-page__header p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--b3-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.single-b3_lesson .entry-content,
.b3-lesson-reader {
  color: var(--b3-navy);
}

.single-b3_lesson .content-bg,
.single-b3_lesson .entry-content-wrap,
.single-b3_lesson .site-main .entry {
  background: transparent;
  box-shadow: none;
}

.single-b3_lesson .entry-content-wrap {
  padding-right: clamp(18px, 4vw, 54px);
  padding-left: clamp(18px, 4vw, 54px);
}

.b3-lesson-shell {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(20px, 3vw, 38px) 0 clamp(42px, 6vw, 76px);
}

.b3-lesson-layout {
  align-items: flex-start;
  gap: clamp(22px, 4vw, 42px);
}

.b3-lesson-main {
  flex-basis: minmax(0, 1fr);
}

.b3-lesson-aside {
  flex: 0 0 330px;
}

.b3-lesson-reader {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--b3-warm-border);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 22px 70px rgba(7, 21, 38, 0.09);
}

.b3-lesson-tools {
  position: sticky;
  top: 24px;
  padding: 18px;
  border: 1px solid var(--b3-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(7, 21, 38, 0.08);
}

.b3-lesson-tools h2 {
  margin: 0 0 8px;
  color: var(--b3-ink);
  font-size: 1.24rem;
}

.b3-lesson-tools p {
  margin: 0 0 14px;
  color: var(--b3-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.b3-lesson-tools .b3-downloads,
.b3-lesson-tools .b3-progress-box {
  box-shadow: none;
}

.b3-lesson-tools .b3-progress-box {
  margin-top: 18px;
}

.b3-pathway-switcher {
  margin: 0 0 34px;
  padding: 18px;
  border: 1px solid var(--b3-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(7, 21, 38, 0.06);
}

.b3-pathway-switcher .b3-kicker {
  margin: 0 0 10px;
  color: var(--b3-red);
}

.b3-pathway-switcher__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.b3-pathway-switcher__controls button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--b3-border);
  border-radius: 6px;
  background: #fffaf2;
  color: var(--b3-navy);
  font-weight: 800;
  cursor: pointer;
}

.b3-pathway-switcher__controls button.is-active {
  border-color: var(--b3-navy);
  background: var(--b3-navy);
  color: #ffffff;
}

.b3-pathway-section[data-b3-pathway-section] {
  display: none;
}

.b3-lesson-reader[data-b3-active-pathway="parent"] [data-b3-pathway-section="parent"],
.b3-lesson-reader[data-b3-active-pathway="leader"] [data-b3-pathway-section="leader"],
.b3-lesson-reader[data-b3-active-pathway="school"] [data-b3-pathway-section="school"] {
  display: block;
}

.b3-pathway-section--common + .b3-pathway-section--common {
  margin-top: 10px;
}

.single-b3_lesson .entry-content > p:first-of-type,
.b3-lesson-reader > p:first-of-type {
  margin: 0 0 28px;
  padding: 22px 24px;
  border-left: 5px solid var(--b3-gold);
  border-radius: 8px;
  background: var(--b3-soft);
  color: var(--b3-navy);
  font-size: 1.16rem;
  line-height: 1.68;
  font-weight: 650;
}

.single-b3_lesson .entry-content h2,
.b3-lesson-reader h2 {
  margin-top: 38px;
  margin-bottom: 14px;
  padding-top: 20px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(217, 155, 43, 0.24);
  border-bottom: 1px solid var(--b3-border);
  color: var(--b3-navy);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  letter-spacing: 0;
}

.b3-lesson-reader .b3-pathway-switcher + .b3-pathway-section h2,
.b3-lesson-reader .b3-pathway-section:first-child h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.b3-lesson-reader h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--b3-ink);
  font-size: clamp(1.22rem, 2.2vw, 1.52rem);
  letter-spacing: 0;
}

.single-b3_lesson .entry-content h2::before,
.b3-lesson-reader h2::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--b3-gold);
  vertical-align: 0.12em;
}

.single-b3_lesson .entry-content > p,
.b3-lesson-reader p {
  max-width: 760px;
  color: var(--b3-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.single-b3_lesson .entry-content ul,
.b3-lesson-reader ul {
  max-width: 860px;
  margin: 14px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.single-b3_lesson .entry-content li,
.b3-lesson-reader li {
  padding: 16px 18px;
  border: 1px solid var(--b3-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.05);
}

.single-b3_lesson .entry-content li strong,
.b3-lesson-reader li strong {
  color: var(--b3-red);
}

.single-b3_lesson .entry-header,
.single-b3_lesson .entry-hero {
  border-bottom: 1px solid var(--b3-border);
}

.single-b3_lesson .entry-title {
  color: var(--b3-navy);
  letter-spacing: 0;
}

.b3-progress-box--complete {
  border-color: rgba(11, 31, 58, 0.25);
  background: var(--b3-soft);
  color: var(--b3-navy);
  font-weight: 800;
}

.b3-home-hero {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(52px, 8vw, 96px) clamp(22px, 5vw, 62px);
  border: 1px solid rgba(255, 248, 238, 0.1);
  border-radius: 8px;
  background: #071526;
  color: #ffffff;
  box-shadow: var(--b3-shadow);
}

.b3-home-hero h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.b3-home-hero .b3-kicker {
  color: #f4bf62;
}

.b3-home-hero .b3-hero-lede {
  max-width: 740px;
  color: #f8efe3;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.b3-home-hero .wp-block-buttons {
  margin-top: 26px;
}

.b3-home-hero .wp-block-button__link {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  background: #ffffff;
  color: var(--b3-ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.b3-home-hero .wp-block-button.is-style-outline .wp-block-button__link {
  border-color: rgba(244, 191, 98, 0.82);
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.b3-home-shell {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(16px, 3vw, 32px);
  padding-left: clamp(16px, 3vw, 32px);
}

.b3-hero-columns {
  gap: clamp(30px, 6vw, 72px);
  margin-bottom: 0;
}

.b3-hero-copy {
  min-width: 0;
}

.b3-hero-visual {
  min-width: 280px;
}

.b3-lesson-preview {
  position: relative;
  max-width: 430px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.b3-preview-topline {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.b3-preview-topline span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.46);
}

.b3-preview-card {
  padding: 24px;
  border-radius: 8px;
  background: #fffaf2;
  color: var(--b3-ink);
}

.b3-preview-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--b3-red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.b3-preview-card strong {
  display: block;
  max-width: 260px;
  color: var(--b3-ink);
  font-size: 1.38rem;
  line-height: 1.18;
}

.b3-preview-card p {
  margin: 14px 0 0;
  color: var(--b3-muted);
}

.b3-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.b3-preview-grid div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.b3-preview-grid strong,
.b3-preview-grid span {
  display: block;
}

.b3-preview-grid strong {
  color: #ffffff;
  font-size: 1.16rem;
}

.b3-preview-grid span {
  margin-top: 4px;
  color: #f8efe3;
  font-size: 0.88rem;
}

.b3-preview-progress {
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.b3-preview-progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: #f4bf62;
}

.b3-page-intro,
.b3-page-band {
  padding: clamp(34px, 5vw, 64px) 0;
}

.b3-page-intro,
.b3-page-band,
.b3-curriculum-band {
  padding-right: clamp(20px, 4vw, 56px);
  padding-left: clamp(20px, 4vw, 56px);
}

.b3-page-intro {
  position: relative;
  overflow: hidden;
  margin: 0 auto clamp(22px, 4vw, 44px);
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 155, 43, 0.16), transparent 38%),
    linear-gradient(135deg, #071526 0%, #10233f 100%);
  color: #ffffff;
  box-shadow: var(--b3-shadow);
}

.b3-page-intro::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: -48px;
  width: clamp(160px, 24vw, 320px);
  height: clamp(160px, 24vw, 320px);
  border: 1px solid rgba(244, 191, 98, 0.28);
  border-radius: 999px;
  opacity: 0.7;
}

.b3-page-intro h1,
.b3-page-band h2 {
  color: var(--b3-navy);
  letter-spacing: 0;
}

.b3-page-intro h1 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(2.55rem, 5.6vw, 5.4rem);
  line-height: 0.98;
}

.b3-page-intro p,
.b3-page-band p {
  max-width: 760px;
  color: var(--b3-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.b3-page-intro p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: #f8efe3;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.b3-page-intro strong {
  color: #ffffff;
}

.b3-page-band {
  margin-bottom: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 54px rgba(7, 21, 38, 0.07);
}

.b3-pathway-grid {
  gap: 18px;
  margin-top: 20px;
}

.b3-pathway-grid .b3-card {
  min-width: 0;
}

.b3-pathway-grid h3 {
  margin-top: 0;
  color: var(--b3-ink);
  font-size: 1.42rem;
  letter-spacing: 0;
}

.b3-card {
  position: relative;
  overflow: hidden;
  border-color: var(--b3-border);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(7, 21, 38, 0.08);
}

.b3-pathway-grid .b3-card {
  padding: 28px;
}

.b3-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--b3-red);
}

.b3-card--mentor::before {
  background: var(--b3-green);
}

.b3-card--leader::before {
  background: var(--b3-gold);
}

.b3-card-number {
  margin: 0 0 18px;
  color: rgba(16, 35, 63, 0.32);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.b3-pathway-band {
  border-bottom: 1px solid var(--b3-border);
}

.b3-curriculum-band {
  margin-bottom: 40px;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid var(--b3-warm-border);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 18px 56px rgba(7, 21, 38, 0.07);
}

.b3-section-heading {
  gap: 28px;
  margin-bottom: 20px;
}

.b3-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.b3-feature-list,
.b3-step-list {
  max-width: 860px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.b3-feature-list li,
.b3-step-list li {
  position: relative;
  padding: 18px 18px 18px 24px;
  border: 1px solid var(--b3-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--b3-muted);
  line-height: 1.65;
  box-shadow: 0 10px 30px rgba(7, 21, 38, 0.05);
}

.b3-feature-list li::before,
.b3-step-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--b3-gold);
}

.b3-feature-list strong {
  color: var(--b3-navy);
}

.b3-brand-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.b3-brand-pillars li {
  min-height: 126px;
  align-content: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.78), #ffffff);
}

.b3-brand-pillars strong {
  display: block;
  margin-bottom: 4px;
  color: var(--b3-red);
  font-size: 1.18rem;
}

@media (max-width: 720px) {
  .b3-home-hero {
    padding: 34px 22px;
  }

  .b3-home-hero h1 {
    font-size: clamp(3rem, 18vw, 4.1rem);
  }

  .b3-lesson-preview {
    margin-left: 0;
  }

  .b3-curriculum-band {
    padding: 28px 18px;
  }

  .b3-brand-pillars {
    grid-template-columns: 1fr;
  }

  .single-b3_lesson .entry-content-wrap {
    padding-right: 14px;
    padding-left: 14px;
  }

  .b3-lesson-reader {
    padding: 22px 18px;
  }

  .b3-lesson-layout {
    flex-direction: column;
  }

  .b3-lesson-aside {
    flex-basis: auto;
    width: 100%;
  }

  .b3-lesson-tools {
    position: static;
  }

  .b3-volume-accordion__button {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 16px;
  }

  .b3-volume-accordion__meta,
  .b3-volume-accordion__title {
    grid-column: 1;
  }

  .b3-volume-accordion__icon {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .b3-volume-accordion__panel {
    padding-right: 14px;
    padding-left: 14px;
  }

  .b3-download-list li,
  .b3-dashboard-list li {
    align-items: flex-start;
    flex-direction: column;
  }
}
