/* ============================================
   三重県立こころの医療センター - リニューアルデザイン
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --navy:       #1a2744;
  --navy-mid:   #243360;
  --navy-light: #2e4080;
  --accent:     #4a7fd4;
  --accent-hover: #3a6bc0;
  --white:      #ffffff;
  --off-white:  #f8f9fb;
  --light-gray: #eef0f4;
  --mid-gray:   #b0b8cc;
  --text:       #2c2c3a;
  --text-light: #5c627a;
  --gold:       #c8a96e;
  --ff-sans: 'Noto Sans JP', sans-serif;
  --ff-serif: 'Noto Serif JP', serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 8px 40px rgba(26,39,68,0.16);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
address { font-style: normal; }

/* ---- Utility ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-padding { padding: 100px 0; }
.bg-dark { background: var(--navy); }
.bg-light { background: var(--off-white); }
.pc-only { display: inline; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold); }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }

.section-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 16px;
}
.section-body.light { color: rgba(255,255,255,0.72); }

.section-header-center { text-align: center; margin-bottom: 60px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-mid); }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-large { padding: 18px 40px; font-size: 1rem; }
.btn-icon svg { flex-shrink: 0; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(26,39,68,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px 40px;
  gap: 40px;
}
.site-logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.1em;
}
.logo-main {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  font-family: var(--ff-serif);
}
.global-nav { margin-left: auto; }
.global-nav ul {
  display: flex;
  gap: 8px;
}
.global-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  border-radius: 3px;
}
.global-nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 3px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent-hover); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  padding: 80px 32px 40px;
  transition: right var(--transition);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a:hover { color: var(--white); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  /* フォールバックグラデーション（画像未設定時） */
  background-color: var(--navy-mid);
}
.hero-slide.active { opacity: 1; }
/* 画像がない場合の美しいグラデーション */
.hero-slide:nth-child(1) { background: linear-gradient(135deg, #1a2744 0%, #2e4080 50%, #1a3a5c 100%); }
.hero-slide:nth-child(2) { background: linear-gradient(135deg, #0f1f40 0%, #243360 50%, #1e3560 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(135deg, #1e2d50 0%, #2a3d70 50%, #152035 100%); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,22,45,0.78) 0%,
    rgba(15,22,45,0.48) 55%,
    rgba(15,22,45,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 80px;
}
.hero-catch-en {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease 0.5s forwards;
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 2;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease 0.9s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   NOTICE BAR
   ============================================ */
.notice-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--navy);
  padding: 14px 40px;
  overflow: hidden;
}
.notice-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.notice-ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 1.4em;
}
.notice-ticker ul {
  position: absolute;
  width: 100%;
}
.notice-ticker li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s;
}
.notice-ticker li.active { opacity: 1; }
.notice-more {
  font-size: 0.75rem;
  color: var(--mid-gray);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: underline;
}
.notice-more:hover { color: var(--white); }

/* ============================================
   ABOUT
   ============================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-title { margin-top: 4px; }
.image-wrap {
  position: relative;
}
.image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}
.image-wrap.img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--light-gray) 0%, #d8dde8 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-wrap.img-placeholder::after {
  content: '施設写真';
  color: var(--mid-gray);
  font-size: 0.85rem;
}
.image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--accent);
  border-radius: 3px;
  z-index: -1;
}

/* ============================================
   SYSTEM
   ============================================ */
.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.system-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.24);
}
.system-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--navy-mid);
}
.system-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.system-card:hover .system-card-img img { transform: scale(1.05); }
.system-card-img.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #243360, #1a2744);
}
.system-card-img.img-placeholder::after {
  content: '診療写真';
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.system-card-body {
  padding: 24px;
}
.system-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--gold);
}
.system-icon svg { width: 100%; height: 100%; }
.system-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--ff-serif);
}
.system-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 16px;
}
.card-link {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.card-link:hover { color: #7aadff; }

/* ============================================
   NEWS
   ============================================ */
.news-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.news-header .section-title { margin-bottom: 28px; }
.news-list { border-top: 1px solid var(--light-gray); }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-gray);
}
.news-date {
  font-size: 0.78rem;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.news-tag {
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.tag-important { background: #fee2e2; color: #b91c1c; }
.tag-info      { background: #dbeafe; color: #1e40af; }
.tag-news      { background: var(--light-gray); color: var(--text-light); }
.news-title-link {
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
  min-width: 0;
}
.news-title-link:hover { color: var(--accent); }

/* ============================================
   WORKS
   ============================================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.works-item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.works-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.works-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.works-item:nth-child(4) { grid-column: 1 / 3; }
.works-item:nth-child(5) { grid-column: 3 / 5; }

.works-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 240px;
  background: var(--light-gray);
}
.works-item--large .works-img { height: 340px; }
.works-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.works-img.img-placeholder { display: flex; align-items: center; justify-content: center; }
.works-img.img-placeholder::after { content: '施設写真'; color: var(--mid-gray); font-size: 0.82rem; }
.works-item:hover .works-img img { transform: scale(1.05); }
.works-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15,22,45,0.72));
  padding: 24px 16px 14px;
  opacity: 0;
  transform: translateY(4px);
  transition: var(--transition);
}
.works-item:hover .works-caption { opacity: 1; transform: none; }
.works-caption span {
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 500;
}

/* ============================================
   ACCESS
   ============================================ */
.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.access-dl { margin-bottom: 32px; }
.access-dl dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 4px;
}
.access-dl dt:first-child { margin-top: 0; }
.access-dl dd {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}
.access-dl dd a:hover { color: var(--accent); }
.access-dl small { font-size: 0.8rem; color: var(--text-light); }
.access-map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.access-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 120px 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3560 100%);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100vw);
  height: min(800px, 100vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,127,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-overlay { position: absolute; inset: 0; }
.cta-content { position: relative; z-index: 2; }
.cta-section .section-label { margin-bottom: 12px; }
.cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 2;
  margin-bottom: 36px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #0e1628; color: rgba(255,255,255,0.7); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-bottom: 20px;
}
.footer-logo .logo-sub { font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.footer-logo .logo-main { font-size: 1.05rem; font-weight: 700; color: var(--white); font-family: var(--ff-serif); }
.footer-info address { font-size: 0.82rem; line-height: 2; }
.footer-info a:hover { color: var(--white); }
.footer-nav h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.82rem; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-policy-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-policy-links a { font-size: 0.75rem; }
.footer-policy-links a:hover { color: var(--white); }
.copyright { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ---- Page Top ---- */
.page-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 500;
  box-shadow: var(--shadow);
}
.page-top svg { width: 20px; height: 20px; }
.page-top.visible { opacity: 1; visibility: visible; transform: none; }
.page-top:hover { background: var(--accent-hover); }

/* ============================================
   AOS (簡易アニメーション)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="150"] { transition-delay: 0.15s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="250"] { transition-delay: 0.25s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate  { transform: none; }

/* ============================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 16px 24px; gap: 20px; }
  .global-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .image-wrap img, .image-wrap.img-placeholder { height: 360px; }
  .system-grid { grid-template-columns: repeat(2, 1fr); }
  .news-inner { grid-template-columns: 1fr; gap: 32px; }
  .access-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================
   RESPONSIVE — Mobile (≤ 640px)
   ============================================ */
@media (max-width: 640px) {
  .pc-only { display: none; }
  .section-padding { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Hero */
  .hero { height: 100svh; min-height: 580px; }
  .hero-slide { background-position: center center; background-size: cover; }
  .hero-content { padding: 0 20px; padding-top: 80px; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-desc { font-size: 0.88rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* Notice bar */
  .notice-bar { padding: 12px 20px; gap: 12px; }
  .notice-more { display: none; }

  /* About */
  .image-accent { display: none; }

  /* System */
  .system-grid { grid-template-columns: 1fr; }

  /* News */
  .news-item { flex-wrap: wrap; gap: 8px; }
  .news-title-link { width: 100%; }

  /* Works */
  .works-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .works-item--large,
  .works-item:nth-child(2),
  .works-item:nth-child(3),
  .works-item:nth-child(4),
  .works-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .works-img { height: 140px; }
  .works-item--large .works-img { height: 180px; }

  /* Access */
  .access-map iframe { height: 280px; }

  /* CTA */
  .cta-section { padding: 72px 20px; }
  .cta-body { font-size: 0.88rem; }
  .btn-large { width: 100%; justify-content: center; padding: 16px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .footer-policy-links { gap: 16px; flex-wrap: wrap; }

  /* Page top */
  .page-top { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}
