/* =========================================================
   BIG PRAYER MUSEUM GLOBAL FOOTER
   Shared footer for bigprayer.org and bigprayermuseum.org
   ========================================================= */

#bpm-global-footer,
#bpm-global-footer * {
  box-sizing: border-box;
}

#bpm-global-footer {
  --bpm-footer-black: #050607;
  --bpm-footer-black-soft: #0b0c0d;
  --bpm-footer-panel: #111214;
  --bpm-footer-gold: #d6a928;
  --bpm-footer-gold-light: #f2c84b;
  --bpm-footer-cream: #f4eddf;
  --bpm-footer-cream-dark: #e9ddc8;
  --bpm-footer-white: #f8f6f1;
  --bpm-footer-muted: #b7b5b0;
  --bpm-footer-line: rgba(214, 169, 40, 0.32);

  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  color: var(--bpm-footer-white);
  background: var(--bpm-footer-black);
  border-top: 1px solid var(--bpm-footer-gold);
  font-family: "Inter", Arial, sans-serif;
}

#bpm-global-footer a {
  color: inherit;
  text-decoration: none;
}

#bpm-global-footer img {
  display: block;
  max-width: 100%;
}

.bpm-footer-container {
  width: min(1440px, calc(100% - 80px));
  margin: 0 auto;
}

/* Top overlapping seal */

.bpm-footer-top-seal {
  position: absolute;
  z-index: 5;
  top: -53px;
  left: 50%;
  width: 106px;
  height: 106px;
  padding: 9px;
  transform: translateX(-50%);
  background: var(--bpm-footer-black);
  border-radius: 50%;
}

.bpm-footer-top-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Main upper footer */

.bpm-footer-main {
  padding: 88px 0 42px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(214, 169, 40, 0.06),
      transparent 27%
    ),
    linear-gradient(135deg, #070809 0%, #050607 55%, #090a0b 100%);
}

.bpm-footer-grid {
  display: grid;
  grid-template-columns:
    minmax(270px, 1.35fr)
    minmax(150px, 0.72fr)
    minmax(165px, 0.78fr)
    minmax(175px, 0.85fr)
    minmax(275px, 1.2fr);
  align-items: start;
  gap: 0;
}

.bpm-footer-column {
  min-width: 0;
  padding: 0 38px;
}

.bpm-footer-column:first-child {
  padding-left: 0;
}

.bpm-footer-column:last-child {
  padding-right: 0;
}

.bpm-footer-column + .bpm-footer-column {
  border-left: 1px solid var(--bpm-footer-line);
}

/* Brand column */

.bpm-footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.bpm-footer-brand-logo {
  width: 96px;
  min-width: 96px;
}

.bpm-footer-brand-name {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3vw, 47px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -1px;
  color: var(--bpm-footer-white);
}

.bpm-footer-brand-name span {
  display: block;
  color: var(--bpm-footer-gold-light);
}

.bpm-footer-brand-subtitle {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--bpm-footer-white);
}

.bpm-footer-description {
  max-width: 390px;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #d6d3cd;
}

.bpm-footer-map-message {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--bpm-footer-line);
}

.bpm-footer-map-icon {
  display: flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 56px;
  color: var(--bpm-footer-gold-light);
}

.bpm-footer-map-icon svg {
  width: 42px;
  height: 52px;
}

.bpm-footer-map-copy {
  font-size: 14px;
  line-height: 1.55;
  color: #e0ddd7;
}

.bpm-footer-map-copy strong {
  display: block;
  margin-top: 2px;
  color: var(--bpm-footer-gold-light);
  font-size: 16px;
}

/* Column headings */

.bpm-footer-heading {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 13px;
  color: var(--bpm-footer-gold-light);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bpm-footer-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2px;
  content: "";
  background: var(--bpm-footer-gold);
}

/* Navigation links */

.bpm-footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bpm-footer-links a {
  display: inline-block;
  color: #d7d5d0;
  font-size: 15px;
  line-height: 1.4;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.bpm-footer-links a:hover,
.bpm-footer-links a:focus-visible {
  color: var(--bpm-footer-gold-light);
  transform: translateX(4px);
}

/* Newsletter */

.bpm-footer-newsletter-copy {
  max-width: 340px;
  margin: 0 0 23px;
  color: #d4d1ca;
  font-size: 15px;
  line-height: 1.65;
}

.bpm-footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bpm-footer-newsletter-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--bpm-footer-white);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(214, 169, 40, 0.45);
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  font-size: 14px;
}

.bpm-footer-newsletter-form input::placeholder {
  color: #aaa7a1;
}

.bpm-footer-newsletter-form input:focus {
  border-color: var(--bpm-footer-gold-light);
  box-shadow: 0 0 0 3px rgba(214, 169, 40, 0.1);
}

.bpm-footer-newsletter-form button {
  min-height: 56px;
  padding: 0 22px;
  cursor: pointer;
  color: #111;
  background: linear-gradient(
    100deg,
    #e1ad26 0%,
    #f2cc58 50%,
    #dfaa25 100%
  );
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(214, 169, 40, 0.14);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.bpm-footer-newsletter-form button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.bpm-footer-privacy {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #aaa8a3;
  font-size: 13px;
}

.bpm-footer-privacy svg {
  width: 16px;
  height: 16px;
  color: var(--bpm-footer-gold-light);
}

/* Social icons */

.bpm-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 27px;
}

.bpm-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--bpm-footer-gold-light) !important;
  border: 1px solid rgba(214, 169, 40, 0.78);
  border-radius: 50%;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.bpm-footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.bpm-footer-social-link:hover {
  color: #111 !important;
  background: var(--bpm-footer-gold-light);
  transform: translateY(-3px);
}

/* Middle cream benefit banner */

.bpm-footer-benefits {
  color: #171717;
  background:
    radial-gradient(
      circle at 25% 50%,
      rgba(214, 169, 40, 0.11),
      transparent 30%
    ),
    linear-gradient(
      105deg,
      #f8f2e7 0%,
      #eee3d0 50%,
      #f7f0e4 100%
    );
  border-top: 1px solid var(--bpm-footer-gold);
  border-bottom: 1px solid var(--bpm-footer-gold);
}

.bpm-footer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 170px;
  align-items: center;
}

.bpm-footer-benefit {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 26px 36px;
}

.bpm-footer-benefit + .bpm-footer-benefit {
  border-left: 1px solid rgba(181, 133, 23, 0.55);
}

.bpm-footer-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  color: #a8780f;
  border: 1.5px solid #c79217;
  border-radius: 50%;
}

.bpm-footer-benefit-icon svg {
  width: 34px;
  height: 34px;
}

.bpm-footer-benefit h4 {
  margin: 0 0 8px;
  color: #161616;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.bpm-footer-benefit p {
  margin: 0;
  color: #34312c;
  font-size: 14px;
  line-height: 1.55;
}

/* Bottom section */

.bpm-footer-bottom {
  padding: 35px 0 31px;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(214, 169, 40, 0.05),
      transparent 35%
    ),
    #050607;
}

.bpm-footer-bottom-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(430px, 1.5fr) minmax(260px, 0.9fr);
  align-items: stretch;
  gap: 0;
}

.bpm-footer-legal,
.bpm-footer-center,
.bpm-footer-contact {
  min-width: 0;
  padding: 0 45px;
}

.bpm-footer-legal {
  padding-left: 0;
}

.bpm-footer-contact {
  padding-right: 0;
}

.bpm-footer-center,
.bpm-footer-contact {
  border-left: 1px solid var(--bpm-footer-line);
}

.bpm-footer-legal-name {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 21px;
  color: var(--bpm-footer-white);
  font-size: 15px;
}

.bpm-footer-legal-name svg {
  width: 25px;
  height: 25px;
  color: var(--bpm-footer-gold-light);
}

.bpm-footer-legal-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  color: #d5d2cb;
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

/* Center copyright */

.bpm-footer-center {
  text-align: center;
}

.bpm-footer-copyright {
  margin: 3px 0 15px;
  color: #e0ddd7;
  font-size: 14px;
}

.bpm-footer-identity {
  margin: 0 0 17px;
  color: #d7d4ce;
  font-size: 14px;
  line-height: 1.6;
}

.bpm-footer-domains {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-bottom: 25px;
}

.bpm-footer-domains a {
  color: var(--bpm-footer-gold-light) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.bpm-footer-domains a:hover {
  color: #fff !important;
}

/* Gold CTA box */

.bpm-footer-court-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 34px;
  overflow: hidden;
  color: #111 !important;
  background:
    radial-gradient(
      circle at 48% 15%,
      rgba(255, 255, 255, 0.42),
      transparent 35%
    ),
    linear-gradient(
      105deg,
      #d39a18 0%,
      #f0c858 48%,
      #d9a11d 100%
    );
  border: 1px solid #f0cb62;
  border-radius: 8px;
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.bpm-footer-court-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.bpm-footer-court-cta-part {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 27px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  white-space: nowrap;
  text-transform: uppercase;
}

.bpm-footer-court-cta-part:first-child {
  border-right: 1px solid rgba(17, 17, 17, 0.65);
}

.bpm-footer-court-cta svg {
  width: 26px;
  height: 26px;
}

/* Contact */

.bpm-footer-contact-heading {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 11px;
  color: var(--bpm-footer-gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bpm-footer-contact-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  content: "";
  background: var(--bpm-footer-gold);
}

.bpm-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bpm-footer-contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
  color: #dedbd5;
  font-size: 14px;
  line-height: 1.55;
}

.bpm-footer-contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--bpm-footer-gold-light);
}

.bpm-footer-contact-list a:hover {
  color: var(--bpm-footer-gold-light) !important;
}

.bpm-footer-phone {
  color: #21a8ff !important;
}

/* Responsive tablet */

@media (max-width: 1180px) {
  .bpm-footer-container {
    width: min(100% - 46px, 1100px);
  }

  .bpm-footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    row-gap: 45px;
  }

  .bpm-footer-brand-column {
    grid-column: span 1;
  }

  .bpm-footer-newsletter-column {
    grid-column: span 3;
    padding: 35px 0 0;
    border-top: 1px solid var(--bpm-footer-line);
    border-left: 0 !important;
  }

  .bpm-footer-newsletter-form {
    display: grid;
    grid-template-columns: 1fr 230px;
    max-width: 760px;
  }

  .bpm-footer-privacy {
    grid-column: 1 / -1;
  }

  .bpm-footer-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bpm-footer-benefit:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(181, 133, 23, 0.4);
  }

  .bpm-footer-benefit:nth-child(4) {
    border-top: 1px solid rgba(181, 133, 23, 0.4);
  }

  .bpm-footer-bottom-grid {
    grid-template-columns: 1fr 1.4fr;
    row-gap: 35px;
  }

  .bpm-footer-contact {
    grid-column: 1 / -1;
    padding: 30px 0 0;
    border-top: 1px solid var(--bpm-footer-line);
    border-left: 0;
  }

  .bpm-footer-contact-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive mobile */

@media (max-width: 780px) {
  .bpm-footer-container {
    width: min(100% - 32px, 650px);
  }

  .bpm-footer-top-seal {
    top: -40px;
    width: 80px;
    height: 80px;
  }

  .bpm-footer-main {
    padding-top: 67px;
  }

  .bpm-footer-grid {
    display: block;
  }

  .bpm-footer-column {
    padding: 30px 0;
    border-left: 0 !important;
    border-top: 1px solid var(--bpm-footer-line);
  }

  .bpm-footer-brand-column {
    padding-top: 0;
    border-top: 0;
  }

  .bpm-footer-brand-lockup {
    align-items: flex-start;
  }

  .bpm-footer-brand-logo {
    width: 78px;
    min-width: 78px;
  }

  .bpm-footer-brand-name {
    font-size: 36px;
  }

  .bpm-footer-newsletter-column {
    padding-top: 30px;
  }

  .bpm-footer-newsletter-form {
    display: flex;
  }

  .bpm-footer-benefits-grid {
    display: block;
    padding: 8px 0;
  }

  .bpm-footer-benefit {
    grid-template-columns: 62px 1fr;
    padding: 23px 0;
  }

  .bpm-footer-benefit + .bpm-footer-benefit {
    border-top: 1px solid rgba(181, 133, 23, 0.42);
    border-left: 0;
  }

  .bpm-footer-benefit-icon {
    width: 56px;
    height: 56px;
  }

  .bpm-footer-benefit-icon svg {
    width: 29px;
    height: 29px;
  }

  .bpm-footer-bottom-grid {
    display: block;
  }

  .bpm-footer-legal,
  .bpm-footer-center,
  .bpm-footer-contact {
    padding: 28px 0;
    border-left: 0;
  }

  .bpm-footer-center,
  .bpm-footer-contact {
    border-top: 1px solid var(--bpm-footer-line);
  }

  .bpm-footer-court-cta {
    display: flex;
    width: 100%;
    padding: 0 12px;
  }

  .bpm-footer-court-cta-part {
    flex: 1;
    justify-content: center;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .bpm-footer-contact-list {
    display: flex;
  }
}

@media (max-width: 480px) {
  .bpm-footer-brand-lockup {
    display: block;
  }

  .bpm-footer-brand-logo {
    margin-bottom: 16px;
  }

  .bpm-footer-brand-name {
    font-size: 33px;
  }

  .bpm-footer-social-link {
    width: 44px;
    height: 44px;
  }

  .bpm-footer-domains {
    flex-direction: column;
    gap: 10px;
  }

  .bpm-footer-domain-divider {
    display: none;
  }

  .bpm-footer-court-cta {
    display: block;
    padding: 13px;
  }

  .bpm-footer-court-cta-part {
    min-height: 48px;
  }

  .bpm-footer-court-cta-part:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.55);
  }
.bpm-footer-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
}



/* =========================================================
   BPM FOOTER — COMPACT DESKTOP LAYOUT FIX
   Keeps all five columns aligned until 900px
   ========================================================= */

.bpm-footer-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Desktop and smaller laptop screens */
@media (min-width: 901px) {

  .bpm-footer-container {
    width: min(1460px, calc(100% - 42px)) !important;
  }

  /* Smaller overlapping logo */

  .bpm-footer-top-seal {
    top: -38px !important;
    width: 76px !important;
    height: 76px !important;
    padding: 6px !important;
  }

  /* Smaller main footer area */

  .bpm-footer-main {
    padding: 60px 0 30px !important;
  }

  /* Force all five columns into one row */

  .bpm-footer-grid {
    display: grid !important;
    grid-template-columns:
      minmax(0, 1.35fr)
      minmax(0, 0.72fr)
      minmax(0, 0.82fr)
      minmax(0, 0.88fr)
      minmax(0, 1.18fr) !important;
    align-items: start !important;
    gap: 0 !important;
  }

  .bpm-footer-brand-column,
  .bpm-footer-newsletter-column {
    grid-column: auto !important;
  }

  .bpm-footer-column {
    min-width: 0 !important;
    padding: 0 22px !important;
  }

  .bpm-footer-column:first-child {
    padding-left: 0 !important;
  }

  .bpm-footer-column:last-child {
    padding-right: 0 !important;
  }

  .bpm-footer-newsletter-column {
    padding-top: 0 !important;
    border-top: 0 !important;
    border-left: 1px solid var(--bpm-footer-line) !important;
  }

  /* Smaller branding */

  .bpm-footer-brand-lockup {
    gap: 14px !important;
    margin-bottom: 18px !important;
  }

  .bpm-footer-brand-logo {
    width: 74px !important;
    min-width: 74px !important;
  }

  .bpm-footer-brand-name {
    font-size: clamp(29px, 2.25vw, 38px) !important;
    line-height: 0.9 !important;
  }

  .bpm-footer-brand-subtitle {
    margin-top: 7px !important;
    font-size: 14px !important;
  }

  .bpm-footer-description {
    max-width: 330px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  /* Smaller Tap Into the Map message */

  .bpm-footer-map-message {
    gap: 12px !important;
    margin-top: 18px !important;
    padding-top: 17px !important;
  }

  .bpm-footer-map-icon {
    flex-basis: 38px !important;
    width: 38px !important;
    height: 47px !important;
  }

  .bpm-footer-map-icon svg {
    width: 35px !important;
    height: 44px !important;
  }

  .bpm-footer-map-copy {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .bpm-footer-map-copy strong {
    font-size: 14px !important;
  }

  /* Smaller headings and links */

  .bpm-footer-heading {
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    font-size: 11px !important;
    letter-spacing: 1.7px !important;
  }

  .bpm-footer-heading::after {
    width: 32px !important;
  }

  .bpm-footer-links {
    gap: 12px !important;
  }

  .bpm-footer-links a {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  /* Smaller social icons */

  .bpm-footer-socials {
    gap: 10px !important;
    margin-top: 19px !important;
  }

  .bpm-footer-social-link {
    width: 40px !important;
    height: 40px !important;
  }

  .bpm-footer-social-link svg {
    width: 17px !important;
    height: 17px !important;
  }

  /* Newsletter stays in the fifth column */

  .bpm-footer-newsletter-copy {
    margin-bottom: 16px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .bpm-footer-newsletter-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 9px !important;
    max-width: none !important;
  }

  .bpm-footer-newsletter-form input {
    min-height: 46px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }

  .bpm-footer-newsletter-form button {
    min-height: 46px !important;
    padding: 0 16px !important;
    font-size: 11px !important;
    letter-spacing: 1.6px !important;
  }

  .bpm-footer-privacy {
    grid-column: auto !important;
    margin-top: 12px !important;
    font-size: 11px !important;
  }

  /* Keep four middle-banner items in one row */

  .bpm-footer-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    min-height: 120px !important;
  }

  .bpm-footer-benefit {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 20px 22px !important;
    border-top: 0 !important;
  }

  .bpm-footer-benefit + .bpm-footer-benefit {
    border-left: 1px solid rgba(181, 133, 23, 0.55) !important;
  }

  .bpm-footer-benefit-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .bpm-footer-benefit-icon svg {
    width: 27px !important;
    height: 27px !important;
  }

  .bpm-footer-benefit h4 {
    margin-bottom: 5px !important;
    font-size: 11px !important;
    letter-spacing: 1.3px !important;
  }

  .bpm-footer-benefit p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  /* Compact bottom footer */

  .bpm-footer-bottom {
    padding: 27px 0 25px !important;
  }

  .bpm-footer-bottom-grid {
    display: grid !important;
    grid-template-columns:
      minmax(0, 0.85fr)
      minmax(0, 1.5fr)
      minmax(0, 0.9fr) !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .bpm-footer-legal,
  .bpm-footer-center,
  .bpm-footer-contact {
    min-width: 0 !important;
    padding: 0 30px !important;
  }

  .bpm-footer-legal {
    padding-left: 0 !important;
  }

  .bpm-footer-contact {
    grid-column: auto !important;
    padding-top: 0 !important;
    padding-right: 0 !important;
    border-top: 0 !important;
    border-left: 1px solid var(--bpm-footer-line) !important;
  }

  .bpm-footer-center {
    border-left: 1px solid var(--bpm-footer-line) !important;
  }

  .bpm-footer-legal-name {
    gap: 10px !important;
    margin-bottom: 14px !important;
    font-size: 13px !important;
  }

  .bpm-footer-legal-name svg {
    width: 21px !important;
    height: 21px !important;
  }

  .bpm-footer-legal-list {
    gap: 10px !important;
    font-size: 12px !important;
  }

  .bpm-footer-copyright,
  .bpm-footer-identity {
    font-size: 12px !important;
  }

  .bpm-footer-copyright {
    margin-bottom: 10px !important;
  }

  .bpm-footer-identity {
    margin-bottom: 12px !important;
  }

  .bpm-footer-domains {
    gap: 14px !important;
    margin-bottom: 18px !important;
  }

  .bpm-footer-domains a {
    font-size: 10px !important;
    letter-spacing: 2.2px !important;
  }

  /* Smaller Enter the Court box */

  .bpm-footer-court-cta {
    min-height: 54px !important;
    padding: 0 20px !important;
  }

  .bpm-footer-court-cta-part {
    gap: 10px !important;
    padding: 0 18px !important;
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
  }

  .bpm-footer-court-cta svg {
    width: 21px !important;
    height: 21px !important;
  }

  /* Smaller contact section */

  .bpm-footer-contact-heading {
    margin-bottom: 16px !important;
    padding-bottom: 9px !important;
    font-size: 11px !important;
  }

  .bpm-footer-contact-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 11px !important;
  }

  .bpm-footer-contact-list li {
    grid-template-columns: 19px minmax(0, 1fr) !important;
    gap: 9px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .bpm-footer-contact-list svg {
    width: 17px !important;
    height: 17px !important;
  }
}