html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.text-gradient-brass {
  background: linear-gradient(135deg, #ffca02 0%, #ffca02 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html, body {
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
  touch-action: none;
}

#mobile-menu-panel {
  transform: translate3d(100%, 0, 0);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
}

#mobile-menu-panel.is-open {
  transform: translate3d(0, 0, 0);
}

#mobile-menu-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

#mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

#mobile-menu {
  pointer-events: none;
}

#mobile-menu.is-open {
  pointer-events: auto;
}

#mobile-menu-btn,
#mobile-menu-close {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 767px) {
  #site-nav,
  nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

#site-nav a.font-body-md,
nav a.font-body-md {
  font-size: 15px !important;
}

#mobile-menu-panel a,
#mobile-menu-panel button,
#mobile-menu-panel span {
  color: inherit;
}

/* Hero carousel (index) */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #ffca02;
}

/* Brand showcase (index) */
.brand-sync-section {
  position: relative;
  overflow: hidden;
}

.brand-left-panel {
  background: #1B1C1A;
}

.brand-text-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
}

.brand-text-item.active {
  opacity: 1;
  pointer-events: auto;
}

.brand-track {
  position: relative;
  height: 100%;
}

.brand-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1000ms ease;
  pointer-events: none;
}

.brand-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.brand-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  opacity: 0.78;
  transition: transform 1200ms ease, opacity 900ms ease;
  filter: saturate(0.92) contrast(1.03);
}

.brand-slide.active img {
  transform: scale(1);
  opacity: 1;
}

/* Transparent nav (index) */
#site-nav {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  transition: all 0.3s ease;
}

#site-nav.scrolled {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom-color: rgba(142, 112, 109, 0.3) !important;
}

#site-nav a,
#site-nav button,
#site-nav span {
  transition: color 0.3s ease;
}

#site-nav:not(.scrolled) a,
#site-nav:not(.scrolled) button,
#site-nav:not(.scrolled) span {
  color: white !important;
}

#site-nav:not(.scrolled) .text-primary {
  color: white !important;
}

#site-nav:not(.scrolled) #mobile-menu-btn {
  border-color: rgba(255, 255, 255, 0.55) !important;
  color: white !important;
}

@keyframes hero-reveal {
  from {
    clip-path: inset(0 100% 0 0);
    transform: translateX(-8px);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0% 0 0);
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-reveal {
  animation: hero-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-reveal-delay-1 {
  animation-duration: 1.4s;
  animation-delay: 0.2s;
}

.hero-reveal-delay-2 { animation-delay: 0.55s; }
.hero-reveal-delay-3 { animation-delay: 0.8s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-delay-1 { transition-delay: 0.12s; }
.scroll-reveal-delay-2 { transition-delay: 0.24s; }
.scroll-reveal-delay-3 { transition-delay: 0.36s; }
.scroll-reveal-delay-4 { transition-delay: 0.48s; }
.scroll-reveal-delay-5 { transition-delay: 0.6s; }
.scroll-reveal-delay-6 { transition-delay: 0.72s; }

/* Honor timeline (index) */
.honor-timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.5rem 0 0;
}

.honor-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d8d8d8;
  transform: translateX(-50%);
  z-index: 0;
}

.honor-timeline__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.75rem);
  align-items: center;
  padding-bottom: 3.25rem;
  position: relative;
}

.honor-timeline__row:last-child {
  padding-bottom: 0;
}

.honor-timeline__axis {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.honor-timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8f000d;
  box-shadow: 0 0 0 4px #ebebeb;
  flex-shrink: 0;
}

.honor-timeline__pill {
  display: inline-block;
  padding: 0.45rem 1.4rem;
  background: #8f000d;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 0 0 6px rgba(143, 0, 13, 0.16);
  border: 2px solid rgba(255, 200, 194, 0.5);
}

.honor-timeline__title {
  color: #8f000d;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.honor-timeline__media {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  margin-bottom: 0.75rem;
  border-radius: 0.25rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .honor-timeline__row--content-left .honor-timeline__slot-content .honor-timeline__media {
    margin-left: auto;
  }
}

.honor-timeline__text {
  color: #3d3d3d;
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 26rem;
}

.honor-timeline__row--content-left .honor-timeline__slot-content {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.honor-timeline__row--content-left .honor-timeline__slot-content .honor-timeline__text {
  margin-left: auto;
}

.honor-timeline__row--content-left .honor-timeline__slot-date {
  grid-column: 3;
  justify-self: start;
}

.honor-timeline__row--content-right .honor-timeline__slot-date {
  grid-column: 1;
  justify-self: end;
}

.honor-timeline__row--content-right .honor-timeline__slot-content {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

@media (max-width: 767px) {
  .honor-timeline::before {
    left: 7px;
    transform: none;
  }

  .honor-timeline__row {
    grid-template-columns: 22px 1fr;
    gap: 0.65rem 1rem;
    padding-left: 0.25rem;
    padding-bottom: 2.25rem;
    align-items: start;
  }

  .honor-timeline__axis {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: 0.4rem;
  }

  .honor-timeline__row--content-left .honor-timeline__slot-date,
  .honor-timeline__row--content-right .honor-timeline__slot-date {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .honor-timeline__row--content-left .honor-timeline__slot-content,
  .honor-timeline__row--content-right .honor-timeline__slot-content {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    text-align: left;
  }

  .honor-timeline__row--content-left .honor-timeline__slot-content .honor-timeline__text,
  .honor-timeline__text {
    margin-left: 0;
    max-width: none;
  }
}

/* Mission & Vision (index) */
.mission-vision-card {
  position: relative;
  background: #fff8f7;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: none;
  box-shadow: 0 4px 20px rgba(38, 24, 22, 0.05);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease;
}

@media (min-width: 768px) {
  .mission-vision-card {
    padding: 2.5rem 2.75rem;
  }
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mission-vision-card--mission::before {
  background: linear-gradient(90deg, #8f000d, #b22222);
}

.mission-vision-card--vision::before {
  background: linear-gradient(90deg, #ffca02, #ffca02);
}

.mission-vision-card__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: #261816;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .mission-vision-card__title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

.mission-vision-card__tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #5a403e;
  vertical-align: middle;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .mission-vision-card__tag {
    font-size: 0.75rem;
  }
}

.mission-vision-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #5a403e;
}

@media (min-width: 768px) {
  .mission-vision-card__text {
    font-size: 1.125rem;
  }
}

@media (hover: hover) {
  .mission-vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(38, 24, 22, 0.09);
    background: #ffffff;
  }

  .mission-vision-card:hover::before {
    opacity: 1;
  }

  .mission-vision-card--mission:hover .mission-vision-card__title {
    color: #8f000d;
  }

  .mission-vision-card--mission:hover .mission-vision-card__tag {
    color: #8f000d;
  }

  .mission-vision-card--vision:hover .mission-vision-card__title {
    color: #ffca02;
  }

  .mission-vision-card--vision:hover .mission-vision-card__tag {
    color: #ffca02;
  }
}

/* Achievement stats (index) */
.achievement-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  border: none;
  box-shadow: 0 4px 20px rgba(38, 24, 22, 0.06);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .achievement-card {
    padding: 2.25rem 2.5rem;
  }
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8f000d, #ffca02);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.achievement-card__value {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #261816;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .achievement-card__value {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.achievement-card__suffix {
  color: #ffca02;
  transition: color 0.3s ease;
}

.achievement-card__label {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #5a403e;
}

@media (hover: hover) {
  .achievement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(38, 24, 22, 0.1);
  }

  .achievement-card:hover::before {
    opacity: 1;
  }

  .achievement-card:hover .achievement-card__value {
    color: #8f000d;
    transform: scale(1.02);
    transform-origin: left center;
  }

  .achievement-card:hover .achievement-card__suffix {
    color: #ffca02;
  }
}

/* Program cards (operation-mode, family-events) */
.program-cards-section {
  background: #ebebeb;
}

.program-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .program-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 320px));
    column-gap: 2.5rem;
    row-gap: 2.5rem;
    justify-content: center;
  }
}

.program-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

a.program-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.program-card:focus-visible {
  outline: 2px solid #8f000d;
  outline-offset: 2px;
}

.program-card__media {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.program-card__media img {
  display: block;
  width: 100%;
  height: 10.5rem;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .program-card__media img {
    height: 12rem;
  }
}

.program-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1.125rem;
  background: #ffffff;
  color: #261816;
  text-align: left;
}

.program-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #261816;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.program-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #5a403e;
}

.program-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: calc(0.875rem * 1.5 * 3);
  color: #5a403e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.program-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.45rem 1.05rem 0.45rem 0.5rem;
  background: #ffffff;
  color: #261816;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  align-self: flex-start;
  transition: background 0.3s ease, color 0.3s ease, padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), gap 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: inherit;
  font-size: 0.875rem;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

@media (hover: hover) {
  .program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  }

  .program-card:hover .program-card__media img {
    transform: scale(1.05);
  }

  .program-card:hover .program-card__btn {
    background: #ffffff;
    color: #8f000d;
    padding-right: 1.375rem;
    gap: 0.625rem;
  }

  .program-card:hover .program-card__btn-icon {
    transform: translateX(2px);
  }

  .program-card__btn:hover .program-card__btn-icon {
    transform: translateX(4px);
  }
}

/* Development history architecture portraits (mobile) */
@media (max-width: 767px) {
  #family-structure .history-arch-portrait {
    height: auto;
  }

  #family-structure .history-arch-portrait img {
    width: min(20.9375rem, 100%);
    max-width: min(20.9375rem, 100%);
    height: auto;
  }
}

/* Spark meeting cards (operation-mode) */
.spark-meeting-cards {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .spark-meeting-cards {
    gap: 2.25rem;
  }
}

.spark-meeting-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(38, 24, 22, 0.06);
}

@media (min-width: 768px) {
  .spark-meeting-card {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.spark-meeting-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
  .spark-meeting-card__content {
    padding: 2.5rem 2.75rem;
  }
}

.spark-meeting-card__title {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.35;
  color: #261816;
}

@media (min-width: 768px) {
  .spark-meeting-card__title {
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
  }
}

.spark-meeting-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #5a403e;
}

@media (min-width: 768px) {
  .spark-meeting-card__text {
    font-size: 1.0625rem;
  }
}

.spark-meeting-card__media {
  overflow: hidden;
  min-height: 14rem;
}

.spark-meeting-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .spark-meeting-card__media {
    min-height: 18rem;
  }

  .spark-meeting-card__media img {
    min-height: 100%;
  }
}

@media (hover: hover) {
  .spark-meeting-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .spark-meeting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(38, 24, 22, 0.1);
  }

  .spark-meeting-card:hover .spark-meeting-card__media img {
    transform: scale(1.03);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* Page hero description (development-history, operation-mode, monthly-star, family-events) */
.history-hero__desc {
  font-size: 1.125rem;
  line-height: 1.45;
  color: #5a403e;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .history-hero__desc {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
  .history-hero__desc {
    font-size: 1.625rem;
    line-height: 1.5;
  }
}

/* Development history section nav */
.history-section-nav {
  background: #ffffff;
  border-bottom: 1px solid #e7e1d7;
}

.history-section-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem 1.5rem;
  padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
  .history-section-nav__inner {
    padding: 2rem 4rem;
    gap: 2rem;
  }
}

.history-section-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 9999px;
  background: #8f000d;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.history-section-nav__btn:hover {
  background: #7a000b;
  color: #ffffff;
}

/* Activity list (family-events) */
.activity-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.activity-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border: 1px solid rgba(38, 24, 22, 0.15);
  border-radius: 6px;
  background: #ffffff;
  color: #5a403e;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.activity-pagination__btn:hover:not(:disabled):not(.is-active) {
  border-color: #8f000d;
  color: #8f000d;
}

.activity-pagination__btn.is-active {
  background: #8f000d;
  border-color: #8f000d;
  color: #ffffff;
  font-weight: 600;
  cursor: default;
}

.activity-pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.activity-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  color: #5a403e;
  font-size: 0.875rem;
  user-select: none;
}

.activity-filter {
  background: #ebebeb;
  border-top: 1px solid #e7e1d7;
}

.activity-filter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.activity-filter__btn {
  padding: 0.5rem 1.125rem;
  border: 1px solid rgba(38, 24, 22, 0.15);
  border-radius: 9999px;
  background: #ffffff;
  color: #5a403e;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.activity-filter__btn:hover:not(.is-active) {
  border-color: #8f000d;
  color: #8f000d;
}

.activity-filter__btn.is-active {
  background: #8f000d;
  border-color: #8f000d;
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 767px) {
  .activity-filter__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .activity-filter__btn {
    width: 100%;
    padding: 0.5rem 0.375rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}

/* Monthly star rankings */
.manager-rank-section {
  background: #ebebeb;
  border-top: 1px solid #E7E1D7;
}

.manager-card {
  background: #ebebeb;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: none;
}

.manager-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}

.manager-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
}

@media (min-width: 768px) {
  .manager-avatar {
    width: 96px;
    height: 96px;
  }
}

/* Footer mobile layout */
@media (max-width: 767px) {
  footer nav[aria-label="网站菜单"] {
    justify-content: center;
  }

  footer nav[aria-label="网站菜单"] > div {
    align-items: center;
  }

  footer .grid > .col-span-1.flex.flex-col.items-start {
    align-items: center;
  }

  footer .grid > .col-span-1.flex.flex-col.items-start p {
    text-align: center;
  }
}
