:root {
  --blue: #183f73;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

:target {
  scroll-margin-top: 96px;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.topbar,
.nav-wrap,
.quick-links,
.section-pad,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  height: 30px;
  align-items: center;
  color: #778193;
  font-size: 13px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #172f55;
  min-width: 170px;
  transition: transform 180ms ease, color 180ms ease;
}

.brand:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.cross {
  position: relative;
  width: 27px;
  height: 40px;
  flex: 0 0 auto;
}

.cross::before,
.cross::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.cross::before {
  left: 12px;
  top: 0;
  width: 4px;
  height: 40px;
}

.cross::after {
  left: 0;
  top: 13px;
  width: 27px;
  height: 4px;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: #667085;
  font-size: 10px;
}

.main-nav {
  display: flex;
  gap: clamp(24px, 4vw, 58px);
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 25px 0;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  transition: transform 180ms ease, background 180ms ease;
}

.menu-toggle:hover {
  background: #f3f7ff;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 300px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 249, 255, 0.94), rgba(245, 249, 255, 0.64) 42%, rgba(245, 249, 255, 0.08)),
    url("https://images.unsplash.com/photo-1473177104440-ffee2f376098?auto=format&fit=crop&w=1900&q=84") center 48% / cover;
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 34px;
}

.hero h1 {
  margin: 0;
  color: #163869;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.18;
}

.hero p {
  max-width: 520px;
  margin: 12px 0 18px;
  color: #344054;
  font-size: 16px;
  font-weight: 600;
}

.primary-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-btn {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(24, 63, 115, 0.22);
}

.outline-btn {
  width: 100%;
  border: 1px solid #b8c5d8;
  color: var(--blue);
}

.primary-btn:hover,
.outline-btn:hover,
.map-link:hover,
.kakao-chat:hover {
  animation: boing 420ms ease;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(24, 63, 115, 0.22);
}

.outline-btn:hover,
.map-link:hover {
  background: #f3f7ff;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.hero-dots .active {
  background: #fff;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 16px 0 18px;
  border-bottom: 1px solid var(--line);
}

.quick-links a {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 10px 4px;
  text-align: center;
  color: #53667f;
  border-radius: 8px;
  transition: transform 190ms ease, color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.quick-links a:hover {
  color: var(--blue);
  background: #f7faff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-6px);
}

.quick-links a:hover svg {
  animation: boing 480ms ease;
}

.quick-links svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.6;
}

.quick-links strong {
  color: #111827;
  font-size: 16px;
}

.quick-links span {
  color: var(--muted);
  font-size: 12px;
}

.section-pad {
  padding: 30px 0 42px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.15fr;
  gap: 38px;
}

h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.thumb {
  width: 100%;
  aspect-ratio: 1.8;
  object-fit: cover;
  margin-bottom: 18px;
}

.schedule-list {
  margin: 0 0 22px;
}

.schedule-list div,
.link-list li,
.news-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.schedule-list div {
  padding: 6px 0;
}

.schedule-list dt {
  font-weight: 800;
}

.schedule-list dd {
  margin: 0;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-head a {
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.sermon-card,
.offering,
.feature-bands a {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.sermon-card:hover,
.offering:hover,
.feature-bands a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.sermon-card {
  min-height: 220px;
}

.sermon-card::after,
.offering::after,
.feature-bands a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 43, 82, 0.76), rgba(16, 43, 82, 0.08));
}

.sermon-card img,
.offering img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 280ms ease;
}

.sermon-card:hover img,
.offering:hover img,
.feature-bands a:hover img {
  transform: scale(1.045);
}

.sermon-text {
  position: absolute;
  z-index: 1;
  left: 28px;
  top: 26px;
}

.sermon-text strong {
  display: block;
  font-size: 29px;
  line-height: 1.25;
}

.sermon-text small {
  display: block;
  margin-top: 18px;
  font-size: 15px;
}

.play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 52%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.sermon-card:hover .play {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.link-list,
.news-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.link-list li,
.news-list li {
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
}

.link-list a,
.news-list a {
  transition: color 170ms ease, padding-left 170ms ease;
}

.link-list a:hover,
.news-list a:hover {
  color: var(--blue);
  padding-left: 6px;
}

time {
  color: #9ca3af;
  white-space: nowrap;
  font-size: 14px;
}

.news-list {
  margin-bottom: 30px;
}

.offering {
  min-height: 160px;
}

.offering span {
  position: absolute;
  z-index: 1;
  inset: 26px;
}

.offering strong {
  display: block;
  font-size: 24px;
}

.offering small {
  display: block;
  margin-top: 4px;
}

.offering em,
.feature-bands em {
  display: inline-block;
  margin-top: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-weight: 800;
}

.feature-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-bands a,
.feature-bands img {
  min-height: 240px;
}

.feature-bands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-bands a:nth-child(2)::after {
  background: linear-gradient(90deg, rgba(23, 59, 71, 0.78), rgba(23, 59, 71, 0.16));
}

.feature-bands a:nth-child(3)::after {
  background: linear-gradient(90deg, rgba(40, 77, 30, 0.78), rgba(40, 77, 30, 0.12));
}

.feature-bands span {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 4vw, 42px);
  top: 38px;
  width: min(330px, calc(100% - 48px));
}

.feature-bands strong {
  display: block;
  font-size: clamp(23px, 2.4vw, 29px);
}

.feature-bands small {
  display: block;
  margin-top: 14px;
  font-size: 16px;
}

.gallery-section {
  background: #fff;
}

.sub-hero {
  min-height: 260px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 44, 78, 0.9), rgba(17, 44, 78, 0.42)),
    url("https://images.unsplash.com/photo-1438032005730-c779502df39b?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.sub-hero-inner,
.about-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.sub-hero p {
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
}

.sub-hero span {
  display: block;
  max-width: 620px;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.pastor-greeting {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 42px;
}

.pastor-greeting img {
  width: 100%;
  aspect-ratio: 0.95;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 900;
}

.pastor-greeting h2,
.vision-section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
}

.pastor-greeting p:not(.eyebrow) {
  color: #4b5563;
  font-size: 17px;
  font-weight: 700;
}

.pastor-greeting strong {
  display: block;
  margin-top: 22px;
  color: #111827;
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 46px;
}

.about-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.about-card:hover,
.vision-grid article:hover {
  animation: boing 420ms ease;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.about-card svg,
.vision-grid svg {
  width: 38px;
  height: 38px;
  color: var(--blue);
  stroke-width: 1.7;
}

.about-card h2 {
  margin: 16px 0 14px;
}

.about-card ul {
  margin: 0;
  padding-left: 20px;
  color: #4b5563;
  font-weight: 700;
}

.about-card p {
  margin: 0;
  color: #4b5563;
  font-weight: 700;
}

.small-note {
  margin-top: 14px !important;
  color: #9ca3af !important;
  font-size: 14px;
}

.vision-section {
  padding: 36px;
  background: #f7f9fc;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vision-grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.vision-grid strong {
  color: #111827;
  font-size: 18px;
}

.vision-grid span {
  color: #5b6678;
  font-weight: 700;
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.gallery-grid img:hover {
  animation: boing 420ms ease;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
  transform: translateY(-3px);
}

.location-section {
  background: #f7f9fc;
}

.location-head {
  margin-bottom: 20px;
}

.location-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #b8c5d8;
  color: var(--blue);
  background: #fff;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.map-box {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 63, 115, 0.12), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(24, 63, 115, 0.08) 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(24, 63, 115, 0.08) 35px);
  border: 1px solid var(--line);
}

.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  color: #274b76;
  pointer-events: none;
}

.map-placeholder strong {
  font-size: 24px;
}

.map-placeholder span {
  color: #5f7189;
}

.directions {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.directions h3 {
  margin: 0 0 18px;
  font-size: 21px;
}

.directions dl {
  margin: 0;
}

.directions div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.directions div:last-child {
  border-bottom: 0;
}

.directions dt {
  color: var(--blue);
  font-weight: 900;
}

.directions dd {
  margin: 4px 0 0;
  color: #4b5563;
}

.kakao-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  color: #241a00;
  background: #fee500;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: min(500px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  padding: 34px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.modal.is-open .modal-panel {
  animation: boing 420ms ease;
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.modal-close:hover {
  background: #f3f7ff;
  transform: translateY(-2px);
}

.modal-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--blue);
  background: #f3f7ff;
}

.modal-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.modal-panel h2 {
  margin: 0 48px 8px 0;
  font-size: 27px;
}

.modal-lead {
  margin: 0 0 22px;
  color: #4b5563;
  font-weight: 700;
}

.modal-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.modal-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.modal-list dt {
  color: #111827;
  font-weight: 900;
}

.modal-list dd {
  margin: 0;
  color: var(--blue);
  font-weight: 900;
  text-align: right;
}

.modal-note {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding: 16px;
  background: #f7f9fc;
  border-left: 4px solid var(--blue);
}

.modal-note strong {
  color: var(--blue);
}

.modal-note span {
  color: #4b5563;
}

@keyframes boing {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-5px) scale(1.04);
  }
  70% {
    transform: translateY(1px) scale(0.99);
  }
  100% {
    transform: translateY(-3px) scale(1);
  }
}

.site-footer {
  background: linear-gradient(135deg, #213744, #17242e);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 120px;
}

.footer-brand {
  color: #fff;
}

address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.64);
}

address span {
  margin-left: 16px;
}

address small {
  display: block;
  margin-top: 8px;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #1d303c;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 84px;
  }

  :target {
    scroll-margin-top: 84px;
  }

  .topbar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 34px rgba(15, 23, 42, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .quick-links {
    grid-template-columns: repeat(4, 1fr);
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  #news {
    grid-column: 1 / -1;
  }

  .feature-bands {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pastor-greeting,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 28px 0;
    gap: 18px;
  }
}

@media (max-width: 680px) {
  .topbar,
  .nav-wrap,
  .quick-links,
  .section-pad,
  .footer-inner,
  .hero-content,
  .sub-hero-inner,
  .about-page {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 255px;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(245, 249, 255, 0.15), rgba(245, 249, 255, 0.95) 62%),
      url("https://images.unsplash.com/photo-1473177104440-ffee2f376098?auto=format&fit=crop&w=1200&q=82") center / cover;
  }

  .hero-content {
    padding: 36px 0 34px;
  }

  .hero h1 {
    font-size: 25px;
  }

  .hero p {
    font-size: 13px;
    margin: 10px 0 14px;
  }

  .primary-btn,
  .outline-btn {
    min-height: 40px;
    font-size: 14px;
  }

  .primary-btn {
    width: 100%;
  }

  .quick-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 10px 0 12px;
  }

  .quick-links a {
    gap: 3px;
    padding: 8px 4px;
  }

  .quick-links svg {
    width: 32px;
    height: 32px;
  }

  .quick-links strong {
    font-size: 15px;
  }

  .quick-links span {
    font-size: 11px;
    line-height: 1.35;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero {
    min-height: 220px;
  }

  .sub-hero span {
    font-size: 15px;
  }

  .pastor-greeting {
    gap: 26px;
  }

  .about-card,
  .vision-section {
    padding: 24px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .location-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .map-link {
    width: 100%;
    justify-content: center;
  }

  .map-box {
    min-height: 260px;
  }

  .directions {
    padding: 24px;
  }

  .kakao-chat {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
  }

  .modal {
    padding: 14px;
  }

  .modal-panel {
    padding: 28px 22px 24px;
  }

  .modal-list div {
    flex-direction: column;
    gap: 2px;
  }

  .modal-list dd {
    text-align: left;
  }

  .link-list li,
  .news-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  address span {
    display: block;
    margin-left: 0;
    margin-top: 3px;
  }
}