:root {
  --beelocal-blue: #1f6f8b;
  --beelocal-blue-dark: #1f2a44;
  --beelocal-cream: #f0ece8;
  --beelocal-yellow: #f4c430;
  --beelocal-white: #ffffff;
  --beelocal-text-light: rgba(255, 255, 255, 0.92);
  --beelocal-text-soft: rgba(255, 255, 255, 0.72);
  --beelocal-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

/* =========================
   NAVBAR
========================= */

.beelocal-navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.5rem);
  max-width: 1200px;
  z-index: 30;
  background: var(--beelocal-cream);
  border-radius: 1rem;
  box-shadow: var(--beelocal-shadow);
  padding: 0.85rem 1rem;
}

.beelocal-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.beelocal-brand img {
  display: block;
  height: 42px;
  width: auto;
}

.beelocal-menu {
  margin-top: 0.9rem;
}

.beelocal-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.beelocal-menu-links a {
  text-decoration: none;
  color: var(--beelocal-blue);
  font-weight: 600;
}

.beelocal-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.beelocal-menu-button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: none;
}

.beelocal-menu-button:focus {
  outline: none;
  box-shadow: none;
}

.beelocal-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--beelocal-blue);
  border-radius: 999px;
}

.beelocal-btn-primary {
  background: var(--beelocal-yellow);
  color: var(--beelocal-blue-dark);
  border: none;
  font-weight: 700;
}

.beelocal-btn-primary:hover {
  background: #e7b92f;
  color: var(--beelocal-blue-dark);
}

.btn-outline-blue {
  font-weight: 600;
  --bs-btn-color: var(--beelocal-blue);
  --bs-btn-border-color: var(--beelocal-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--beelocal-blue);
  --bs-btn-hover-border-color: var(--beelocal-blue);
  --bs-btn-focus-shadow-rgb: 31, 111, 139;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--beelocal-blue);
  --bs-btn-active-border-color: var(--beelocal-blue);
  --bs-btn-disabled-color: var(--beelocal-blue);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--beelocal-blue);
  --bs-gradient: none;
}

/* =========================
   HERO
========================= */

.hero-video {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.42) 45%,
      rgba(0, 0, 0, 0.55) 100%
    );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  color: var(--beelocal-white);
  padding-top: 7.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffe082;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-title {
  max-width: 340px;
  margin: 0 0 1rem 0;
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  max-width: 360px;
  margin: 0 0 2rem 0;
  color: var(--beelocal-text-light);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
  align-items: center;
  margin: 0 auto;
}

.hero-btn-primary,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-btn-primary {
  background: var(--beelocal-yellow);
  color: var(--beelocal-blue-dark);
  border: none;
}

.hero-btn-primary:hover {
  background: #ffd149;
  color: var(--beelocal-blue-dark);
}

.hero-btn-secondary {
  background: rgba(240, 236, 232, 0.92);
  color: var(--beelocal-blue);
  border: none;
}

.hero-btn-secondary:hover {
  background: var(--beelocal-cream);
  color: var(--beelocal-blue);
}

.hero-mini-text {
  max-width: 320px;
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--beelocal-text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}
.hero-btn-primary,
.hero-btn-secondary {
  width: 100%;
}
/* =========================
   FOOTER
========================= */

.beelocal-footer {
  background: var(--beelocal-blue);
  padding: 3.5rem 0 2rem;
  color: var(--beelocal-white);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand .beelocal-brand img {
  height: 52px;
  margin-bottom: 1rem;
}

.footer-description {
  max-width: 320px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.footer-links-group h4 {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--beelocal-yellow);
}

.footer-links-group a {
  display: block;
  margin-bottom: 0.7rem;
  text-decoration: none;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
   GENERIC SECTIONS
========================= */

.partners-section {
  padding: 4.5rem 0;
}

.partners-section-light {
  background: #ffffff;
  color: #1f2a44;
}

.partners-section-soft {
  background: #f8f6f3;
  color: #1f2a44;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #1f6f8b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(1.9rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-copy {
  max-width: 760px;
  margin: 0 auto;
}

.section-copy p {
  margin: 0 0 1.15rem 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #4f5b6d;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

/* =========================
   WHAT WE DO
========================= */

.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.info-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.4rem 1.25rem;
  box-shadow: 0 10px 30px rgba(24, 39, 75, 0.06);
  border: 1px solid rgba(31, 111, 139, 0.08);
}

.info-card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1f2a44;
}

.info-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #596579;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px) {
  .partners-section {
    padding: 6rem 0;
  }

  .what-we-do-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .info-card {
    padding: 1.6rem;
  }
}

/* =========================
   TABLET+
========================= */

@media (min-width: 768px) {
  .beelocal-navbar {
    width: calc(100% - 2rem);
    padding: 0.9rem 1.4rem;
  }

  .beelocal-brand img {
    height: 45px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    max-width: 820px;
  }

  .hero-subtitle {
    max-width: 680px;
    font-size: 1.05rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    width: auto;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    min-width: 180px;
  }

  .hero-mini-text {
    max-width: none;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 992px) {
  .beelocal-navbar {
    padding: 1rem 1.6rem;
  }

  .hero-content {
    padding-top: 9rem;
  }

  .hero-title {
    font-size: clamp(3.5rem, 5vw, 5.4rem);
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }
}
.section-copy-narrow {
  max-width: 720px;
}

/* =========================
   MEMBERSHIPS
========================= */

.memberships-block {
  margin-top: 4rem;
}

.memberships-heading {
  margin-bottom: 1.5rem;
}

.memberships-title {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #1f2a44;
}

.memberships-subtitle {
  max-width: 680px;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #5f6b7a;
}

.memberships-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.35rem 0.2rem 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.memberships-scroll::-webkit-scrollbar {
  height: 8px;
}

.memberships-scroll::-webkit-scrollbar-thumb {
  background: rgba(31, 111, 139, 0.18);
  border-radius: 999px;
}

.memberships-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.membership-card {
  position: relative;
  min-width: 285px;
  max-width: 285px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  border-radius: 1.5rem;
  padding: 1.35rem 1.2rem 1.2rem;
  border: 1px solid rgba(31, 111, 139, 0.08);
  box-shadow: 0 14px 40px rgba(24, 39, 75, 0.08);
  scroll-snap-align: start;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  overflow: hidden;
}

.membership-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #1f6f8b 0%, #f4c430 100%);
  opacity: 0.95;
}

.membership-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(24, 39, 75, 0.14);
  border-color: rgba(31, 111, 139, 0.16);
}

.membership-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(31, 111, 139, 0.08);
  color: #1f6f8b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.membership-highlight {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f4c430;
  color: #1f2a44;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(244, 196, 48, 0.28);
}

.membership-price-wrap {
  margin-top: 1.2rem;
}

.membership-price-label {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: #7a8493;
}

.membership-price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
}

.membership-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2a44;
  transform: translateY(-0.4rem);
}

.membership-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #1f2a44;
}

.membership-period {
  margin-left: 0.3rem;
  font-size: 0.95rem;
  color: #687385;
  transform: translateY(-0.2rem);
}

.membership-description {
  margin: 1rem 0 1rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #586376;
  min-height: 78px;
}

.membership-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.membership-features li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #314055;
}

.membership-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: rgba(31, 111, 139, 0.1);
  color: #1f6f8b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.membership-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
  background: #1f2a44;
  color: #ffffff;
}

.membership-btn:hover {
  background: #1f6f8b;
  color: #ffffff;
}

.membership-basic .membership-btn {
  background: #1f6f8b;
}

.membership-basic .membership-btn:hover {
  background: #18576d;
}

.membership-plus {
  background: linear-gradient(180deg, #ffffff 0%, #fff9e8 100%);
  border-color: rgba(244, 196, 48, 0.28);
}

.membership-plus::before {
  background: linear-gradient(90deg, #f4c430 0%, #ffd861 100%);
}

.membership-plus:hover {
  box-shadow: 0 24px 55px rgba(244, 196, 48, 0.18);
}

.membership-plus .membership-badge {
  background: rgba(244, 196, 48, 0.18);
  color: #8b6600;
}

.membership-plus .membership-btn {
  background: #f4c430;
  color: #1f2a44;
}

.membership-plus .membership-btn:hover {
  background: #e7b92f;
  color: #1f2a44;
}

.membership-premium {
  background: linear-gradient(180deg, #f9fbfd 0%, #edf6fa 100%);
}

.membership-premium .membership-btn {
  background: #1f2a44;
}

.membership-premium .membership-btn:hover {
  background: #152036;
}

@media (min-width: 768px) {
  .memberships-block {
    margin-top: 5rem;
  }

  .memberships-scroll {
    gap: 1.25rem;
    padding-bottom: 1rem;
  }

  .membership-card {
    min-width: 320px;
    max-width: 320px;
    padding: 1.6rem 1.35rem 1.35rem;
  }
}

@media (min-width: 1200px) {
  .memberships-scroll {
    justify-content: center;
  }
}


/* =========================
   SECTION LEADS
========================= */

.section-lead {
  max-width: 760px;
  margin: 1rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #5f6b7a;
}

.section-lead-light {
  color: rgba(255, 255, 255, 0.82);
}

/* =========================
   DARK SECTION
========================= */

.partners-section-dark {
  background:
    linear-gradient(180deg, #162033 0%, #1f2a44 100%);
  color: #ffffff;
}

.section-eyebrow-light {
  color: #f4c430;
}

.section-title-light {
  color: #ffffff;
}

/* =========================
   BENEFITS
========================= */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.25rem;
}

.benefit-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.4rem;
  padding: 1.35rem 1.2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #f4c430 0%, #ffe17a 100%);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(244, 196, 48, 0.14);
  color: #f4c430;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  margin: 0 0 1rem;
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
}

/* =========================
   STYLED LIST
========================= */

.styled-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.styled-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #506074;
}

.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #1f6f8b 0%, #f4c430 100%);
  box-shadow: 0 0 0 4px rgba(31, 111, 139, 0.08);
}

.styled-list-light li {
  color: rgba(255, 255, 255, 0.86);
}

.styled-list-light li::before {
  background: linear-gradient(180deg, #f4c430 0%, #ffe17a 100%);
  box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.12);
}

/* =========================
   PROVIDER STANDARDS
========================= */

.standards-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2.25rem;
}

.standards-main-card,
.experience-types-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(31, 111, 139, 0.08);
  box-shadow: 0 14px 40px rgba(24, 39, 75, 0.07);
}

.standards-main-top {
  margin-bottom: 1.25rem;
}

.standards-main-top h3,
.experience-types-card h3 {
  margin: 0.8rem 0 0;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2a44;
}

.standards-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(31, 111, 139, 0.08);
  color: #1f6f8b;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.standards-chip-soft {
  background: rgba(244, 196, 48, 0.15);
  color: #9a6f00;
}

.standards-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.standard-point {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.25rem 0;
}

.standard-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 0.35rem;
  background: linear-gradient(180deg, #1f6f8b 0%, #f4c430 100%);
  box-shadow: 0 0 0 4px rgba(31, 111, 139, 0.08);
}

.standard-point h4 {
  margin: 0 0 0.32rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2a44;
}

.standard-point p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #5d6878;
}

.experience-types-card .styled-list {
  margin-top: 1rem;
}

.experience-note {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #f8f6f3;
  border: 1px solid rgba(31, 111, 139, 0.08);
}

.experience-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #1f2a44;
  font-size: 0.95rem;
}

.experience-note p {
  margin: 0;
  color: #5f6b7a;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.75rem;
  }

  .benefit-card {
    padding: 1.6rem;
  }

  .standards-layout {
    gap: 1.4rem;
    margin-top: 2.75rem;
  }

  .standards-main-card,
  .experience-types-card {
    padding: 1.7rem 1.5rem;
  }
}

@media (min-width: 1100px) {
  .standards-layout {
    grid-template-columns: 1.45fr 0.85fr;
    align-items: start;
  }
}
/* =========================
   BRAND MANIFESTO
========================= */

.brand-manifesto {
  position: relative;
  padding: 5rem 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f6f3 50%, #ffffff 100%);
  overflow: hidden;
}

.brand-manifesto::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 140px;
  height: 140px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(244, 196, 48, 0.18) 0%, rgba(244, 196, 48, 0) 72%);
  pointer-events: none;
}

.brand-manifesto-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.brand-manifesto-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: #1f6f8b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-manifesto-quote {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(1.85rem, 5.6vw, 3.8rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1f2a44;
  text-wrap: balance;
}

.brand-manifesto-divider {
  width: 96px;
  height: 2px;
  margin: 1.4rem auto 1rem;
  background: linear-gradient(90deg, rgba(31, 111, 139, 0) 0%, #f4c430 50%, rgba(31, 111, 139, 0) 100%);
}

.brand-manifesto-note {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #6a7382;
}

@media (min-width: 768px) {
  .brand-manifesto {
    padding: 6rem 0;
  }

  .brand-manifesto-divider {
    width: 120px;
    margin: 1.7rem auto 1.1rem;
  }

  .brand-manifesto-note {
    font-size: 1.02rem;
  }
}