/* Fantopia blog public pages — synced to blog/page.css on publish */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  background: #0a0a0a;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.navbar {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(138, 43, 226, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}
.navbar-brand img { height: 40px; width: auto; }
.navbar-brand:hover { opacity: 0.9; }

.navbar-right-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.language-switcher {
  position: relative;
  z-index: 10;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(138, 43, 226, 0.3);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  min-width: 100px;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.lang-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.15), transparent);
  transition: left 0.4s ease;
}

.lang-toggle:hover::before { left: 100%; }

.lang-toggle:hover {
  background: rgba(10, 10, 10, 0.8);
  color: #fff;
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lang-toggle.active {
  background: rgba(138, 43, 226, 0.2);
  color: #fff;
  font-weight: 600;
  border-color: rgba(138, 43, 226, 0.5);
}

.lang-toggle span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.lang-toggle-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.9;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-dropdown.open .lang-toggle-chevron { transform: rotate(180deg); }
.lang-dropdown.open .lang-toggle { border-radius: 12px 12px 0 0; }

.lang-menu {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(138, 43, 226, 0.2);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s ease;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-top: none;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(138, 43, 226, 0.1);
  position: relative;
  overflow: hidden;
}

.lang-menu a:first-child { border-top: 1px solid rgba(138, 43, 226, 0.1); }
.lang-menu a:last-child { border-bottom: none; border-radius: 0 0 11px 11px; }

.lang-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, #8a2be2 0%, #667eea 100%);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.lang-menu a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(138, 43, 226, 0.1);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lang-menu a:hover {
  color: #fff;
  padding-left: 24px;
  background: rgba(138, 43, 226, 0.15);
}

.lang-menu a:hover::before,
.lang-menu a.active::before { transform: scaleY(1); }

.lang-menu a:hover::after,
.lang-menu a.active::after { opacity: 1; }

.lang-menu a.active {
  background: rgba(138, 43, 226, 0.25);
  color: #fff;
  font-weight: 600;
  padding-left: 24px;
}

.lang-menu a .lang-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #8a2be2 0%, #667eea 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s ease;
}

.lang-menu a.active .lang-check {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .lang-toggle {
    min-width: 88px;
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .lang-menu { min-width: 140px; }
}

.page-hero {
  padding: 104px 0 48px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}
.page-hero > p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumb a {
  color: rgba(138, 43, 226, 0.95);
}
.breadcrumb a:hover { color: #fff; }
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 48px;
}
.guide-article {
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.guide-article__head {
  padding: 24px 24px 0;
}
@media (min-width: 768px) {
  .guide-article__head { padding: 32px 40px 0; }
}
.guide-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-hero-row__poster,
.guide-hero-row__seat {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.guide-hero-row__poster {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-hero-figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
.guide-hero-figure__caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.guide-hero-row__poster .guide-hero-figure,
.guide-hero-row__seat .guide-hero-figure {
  position: relative;
}
.guide-hero-row__poster .guide-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.guide-hero-row__seat .guide-hero,
.guide-hero-row .guide-hero--seat {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.guide-hero {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #000;
  display: block;
}
.guide-hero-row .guide-hero {
  border-bottom: none;
}
@media (max-width: 768px) {
  .guide-hero-row__poster .guide-hero,
  .guide-hero-row__seat .guide-hero {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.guide-hero--single {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .guide-hero-row {
    grid-template-columns: 1fr;
  }
  .guide-hero-row__poster {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
.guide-article__inner { padding: 24px; }
@media (min-width: 768px) { .guide-article__inner { padding: 32px 40px; } }
.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.guide-category {
  background: rgba(138, 43, 226, 0.18);
  color: rgba(196, 151, 255, 0.95);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(138, 43, 226, 0.25);
}
.guide-title {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.35;
  margin: 0 0 8px;
  word-break: break-word;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}
.guide-summary {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: none;
  width: 100%;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: auto;
  text-wrap: wrap;
}
.guide-article__head .guide-meta {
  margin-bottom: 16px;
}
.guide-event-details {
  margin: 0;
  padding: 0;
}
.guide-event-details + .guide-body > .guide-faq {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 32px;
  padding-top: 28px;
}
.guide-event-details__title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 18px;
  padding: 0;
  border: none;
}
.guide-event-details__list {
  margin: 0;
  padding: 0;
}
.guide-detail-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-detail-row:first-child { padding-top: 0; }
.guide-detail-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.guide-detail-row__label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
.guide-detail-row__value {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}
.guide-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.guide-detail-list li {
  margin: 0;
  padding: 3px 0;
}
.guide-detail-list li + li { margin-top: 2px; }
.guide-detail-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 0;
  border-radius: 0;
  background: none;
  color: rgba(196, 151, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
  vertical-align: middle;
}
.guide-detail-tag::before { content: "（"; }
.guide-detail-tag::after { content: "）"; }
.guide-detail-list--tiers li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  background: none;
  border: none;
  border-radius: 0;
}
.guide-detail-list--tiers li + li { margin-top: 0; }
.guide-tier-name {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.guide-tier-price {
  color: rgba(196, 151, 255, 0.95);
  font-weight: 600;
  white-space: nowrap;
}
.guide-detail-list--platforms .guide-platform-link {
  color: rgba(196, 151, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.guide-detail-list--platforms .guide-platform-link:hover {
  color: #fff;
}
@media (max-width: 560px) {
  .guide-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .container { padding: 0 16px; }
  .page-hero { padding-top: 92px; }
}
.guide-body { font-size: 16px; color: rgba(255, 255, 255, 0.9); }
.guide-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}
.guide-faq__item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-faq__item:first-child { padding-top: 0; }
.guide-faq__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.guide-faq__question {
  font-size: 22px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}
.guide-faq__question::before { content: none; }
.guide-faq__answer .rich-text-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}
.guide-faq__answer .guide-figure {
  margin: 18px 0 0;
}
.guide-body .rich-text-body h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.95);
}
.guide-body .rich-text-body h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: rgba(255, 255, 255, 0.92);
}
.guide-body .rich-text-body p { margin: 12px 0; }
.guide-body .rich-text-body ul,
.guide-body .rich-text-body ol { margin: 12px 0 12px 24px; }
.guide-body .rich-text-body a {
  color: rgba(196, 151, 255, 0.95);
  text-decoration: underline;
}
.guide-body .rich-text-body a:hover { color: #fff; }
.guide-figure {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}
.guide-section { margin-top: 32px; }
.guide-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
}
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}
.feed-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.feed-item:last-child { border-bottom: none; }
.feed-item__link {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 14px 16px;
  transition: background .15s ease;
}
.feed-item__link:hover { background: rgba(255, 255, 255, 0.03); }
.feed-item__thumb {
  flex: 0 0 108px;
  width: 108px;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.feed-item__thumb--empty {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.12), rgba(18, 18, 18, 0.9));
}
.feed-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feed-item__pin {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 4px;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.28);
}
.feed-item__title {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
}
.feed-item__meta {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.45);
}
.feed-item__meta time { color: inherit; }
.feed-item__summary {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 640px) {
  .feed-item__link { gap: 12px; padding: 12px 14px; }
  .feed-item__thumb { flex-basis: 88px; width: 88px; }
  .feed-item__title { font-size: 15px; }
  .feed-item__summary { -webkit-line-clamp: 1; }
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.guide-grid--compact { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.guide-card {
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: block;
}
.guide-card:hover {
  border-color: rgba(138, 43, 226, 0.35);
  box-shadow: 0 8px 28px rgba(138, 43, 226, 0.18);
  transform: translateY(-2px);
}
.guide-card__cover {
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-card__cover img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.guide-card__body { padding: 16px; }
.guide-card__pin {
  display: inline-block;
  font-size: 12px;
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 6px;
}
.guide-card h3 {
  font-size: 16px;
  line-height: 1.45;
  margin: 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
}
.guide-card time,
.guide-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.guide-card--compact h3 { font-size: 15px; }
.guide-empty { color: rgba(255, 255, 255, 0.45); }
.feed-empty {
  background: rgba(20, 20, 20, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 40px;
  margin-top: 0;
  border-top: 1px solid rgba(138, 43, 226, 0.2);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(138, 43, 226, 0.5) 50%, transparent 100%);
}
.footer-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  text-align: left;
}
.footer-contact-section {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.footer-section {
  display: flex;
  flex-direction: column;
}
.footer-section-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-contact-email {
  margin: 0;
}
.footer-contact-email a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}
.footer-contact-email a:hover {
  color: #fff;
}
.social-media-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.social-link-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(138, 43, 226, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.social-link-icon:hover::before {
  width: 100%;
  height: 100%;
}
.social-link-icon:hover {
  background: rgba(138, 43, 226, 0.15);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
  border-color: rgba(138, 43, 226, 0.5);
}
.social-link-icon .svg-icon {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.social-link-icon:hover .svg-icon {
  fill: #fff;
  transform: scale(1.1);
}
.footer-copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
@media (max-width: 1200px) {
  .footer-contact-section {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  .footer-main-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-contact-section {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  .footer-section {
    align-items: center;
  }
  .footer-section-title {
    margin-bottom: 16px;
  }
}
