/* Shared footer for every public theme layout. */
.journal-footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  margin: 70px auto 0px;
  padding: 32px clamp(20px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(19, 30, 44, .75) 0%, rgba(12, 20, 31, .92) 100%);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  isolation: isolate;
}

.pixels-lotus-journal .journal-footer {
  margin-top: 70px;
}

.journal-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(246, 173, 195, .4) 25%, rgba(255, 215, 225, .9) 50%, rgba(246, 173, 195, .4) 75%, transparent 100%);
  filter: drop-shadow(0 0 8px rgba(246, 173, 195, .5));
  pointer-events: none
}

.journal-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60px;
  background: radial-gradient(ellipse at top, rgba(243, 72, 121, .1) 0%, rgba(243, 72, 121, .02) 50%, transparent 70%);
  pointer-events: none
}

.journal-footer-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1)
}

.journal-footer-brand img,
.journal-footer-logo {
  display: block;
  height: 38px;
  width: auto;
  max-width: 180px;
  aspect-ratio: 395/100;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), filter .3s ease
}

.journal-footer-brand:hover img,
.journal-footer-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(246, 173, 195, .45))
}

.journal-footer-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 4px 16px rgba(0, 0, 0, .15);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .3px;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .3s ease, background-color .3s ease, color .3s ease
}

.journal-footer-tagline::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fa88a6;
  box-shadow: 0 0 10px #fa88a6, 0 0 4px #fa88a6;
  flex-shrink: 0;
  animation: lotusGlowPulse 3s ease-in-out infinite
}

@keyframes lotusGlowPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px #fa88a6
  }

  50% {
    opacity: .6;
    transform: scale(.85);
    box-shadow: 0 0 4px #fa88a6
  }
}

.journal-footer-tagline:hover {
  border-color: rgba(246, 173, 195, .3);
  background: rgba(255, 255, 255, .06);
  color: #f0f4f8
}

.journal-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  border: 1px solid rgba(246, 173, 195, .32) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(246, 173, 195, .1) 0%, rgba(243, 72, 121, .04) 100%);
  color: #faf0f2 !important;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .3px;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .35s cubic-bezier(.16, 1, .3, 1)
}

.journal-footer-cta .journal-footer-arrow {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(246, 173, 195, .16);
  color: #ff9fbb;
  font-size: 13px;
  line-height: 1;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), background-color .3s ease, color .3s ease, box-shadow .3s ease
}

.journal-footer-cta:hover {
  background: linear-gradient(135deg, #f34879 0%, #db2763 100%);
  border-color: #ff8dae !important;
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(243, 72, 121, .42), inset 0 1px 0 rgba(255, 255, 255, .25);
  transform: translateY(-2px)
}

.journal-footer-cta:hover .journal-footer-arrow {
  transform: translateX(3px);
  background: #fff;
  color: #db2763;
  box-shadow: 0 0 12px rgba(255, 255, 255, .6)
}

@media(max-width:960px) {
  .journal-footer {
    gap: 20px;
    padding: 28px clamp(16px, 3vw, 32px)
  }
}

@media(max-width:768px) {
  .journal-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    margin: 45px auto 36px;
    padding: 32px 20px;
    border-radius: 20px
  }

  .journal-footer-brand {
    justify-content: center
  }

  .journal-footer-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center
  }
}
/* Keep the shared footer independent of page-specific resets. */
.journal-footer *,
.journal-footer *::before,
.journal-footer *::after { box-sizing: border-box; }
.journal-footer-tagline { min-width: 0; max-width: 100%; overflow-wrap: anywhere; }
.journal-footer-cta { max-width: 100%; text-align: center; }
.journal-footer-arrow { flex-shrink: 0; }
.journal-footer a:focus-visible { outline: 2px solid #ff9fbb; outline-offset: 6px; }
#wrapper > .journal-footer { width: calc(100% - 40px); }
.pixels-lotus-home #main > .hero ~ .journal-footer { width: calc(100% - 48px); }
@media (prefers-reduced-motion: reduce) {
  .journal-footer *, .journal-footer *::before { animation: none; transition: none; }
}
