:root {
  --primary: #2f5d7e;
  --primary-dark: #274e6a;
  --secondary: #3e8e7e;
  --secondary-dark: #327365;
  --accent: #e5c96b;
  --bg-light: #f5f3ee;
  --bg: #ffffff;
  --text-dark: #1f2d3d;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --card-soft: #fbfaf7;
  --cream: #f5f3ee;
  --text: var(--text-dark);
  --muted: var(--text-muted);
  --line: var(--border);
  --shadow: 0 18px 40px rgba(31, 45, 61, 0.1);
  --shadow-soft: 0 12px 28px rgba(31, 45, 61, 0.07);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1120px;
  --container-narrow: 860px;
  --container-article: 760px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 22%, var(--bg-light) 100%);
  line-height: 1.55;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.container-narrow {
  width: min(calc(100% - 40px), var(--container-narrow));
}

.container-detail {
  width: min(calc(100% - 40px), 980px);
}

.container-article {
  width: min(calc(100% - 40px), var(--container-article));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  color: var(--primary);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.back-link:hover,
.blog-card a:hover {
  color: var(--secondary);
}

.site-nav a.is-active {
  color: var(--secondary);
}

.site-nav .button.button-active,
.site-nav .button.is-active {
  background: var(--primary-dark);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-secondary {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--secondary-dark);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(70vh - 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image,
.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 93, 126, 0.22) 0%, rgba(31, 45, 61, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.section {
  padding: 104px 0;
}

.section-tinted {
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 142, 126, 0.12), transparent 45%),
    linear-gradient(180deg, var(--bg-light), #ffffff);
}

.section-cream {
  background: linear-gradient(180deg, var(--bg-light) 0%, #efebe3 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--muted);
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(229, 201, 107, 0.24);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-grid,
.stats-grid,
.gallery-grid,
.footer-grid,
.detail-grid {
  display: grid;
  gap: 24px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
}

.info-card,
.stat-card,
.process-card,
.team-card,
.blog-card,
.listing-card,
.application-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.info-card,
.stat-card,
.process-card {
  padding: 30px;
}

.info-card:hover,
.stat-card:hover,
.process-card:hover,
.team-card:hover,
.blog-card:hover,
.media-card:hover,
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.icon-chip svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-green { background: rgba(62, 142, 126, 0.14); color: var(--secondary); }
.icon-blue { background: rgba(47, 93, 126, 0.14); color: var(--primary); }
.icon-amber { background: rgba(229, 201, 107, 0.22); color: #b69633; }
.icon-purple { background: rgba(47, 93, 126, 0.1); color: var(--primary-dark); }

.info-card h3,
.process-card h3,
.team-card h3,
.blog-card h3,
.listing-card h3,
.detail-copy h2,
.application-card h2 {
  margin: 18px 0 0;
  font-size: 1.34rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.info-card p,
.process-card p,
.listing-card p,
.application-card p,
.detail-copy p,
.detail-copy li,
.article-body p,
.article-body li {
  color: var(--muted);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
}

.stat-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.stat-card p {
  margin: 10px 0 0;
  font-weight: 600;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
}

.media-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.media-card-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: inherit;
  color: inherit;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 45, 61, 0) 38%, rgba(31, 45, 61, 0.88) 100%);
  pointer-events: none;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.media-card:hover img {
  transform: scale(1.06);
}

.media-card-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff;
  pointer-events: none;
}

.media-card-copy span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: rgba(229, 201, 107, 0.24);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.media-card-copy h3 {
  margin: 0;
  font-size: 1.15rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(31, 45, 61, 0.9);
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1080px);
  margin: 4vh auto 0;
  padding: 18px;
  border-radius: 28px;
  background: rgba(31, 45, 61, 0.98);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-image {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 18px;
  background: #1f2d3d;
  cursor: pointer;
}

.lightbox-copy {
  padding: 18px 6px 2px;
  color: rgba(255, 255, 255, 0.75);
}

.lightbox-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
}

.lightbox-copy p {
  margin: 8px 0 0;
}

.lightbox-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.process-card {
  text-align: center;
}

.process-emoji {
  font-size: 2rem;
}

.process-step {
  width: 34px;
  height: 34px;
  margin: 14px auto 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.team-card {
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
}

.team-card-copy,
.blog-card-copy {
  padding: 22px;
  text-align: center;
}

.team-card-copy p {
  margin: 8px 0 0;
  color: var(--primary);
  font-weight: 700;
}

.team-card-copy span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.listing-stack {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.listing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.listing-card h3 {
  margin-top: 0;
}

.listing-copy p {
  margin: 8px 0 0;
}

.listing-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
}

.listing-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-light);
  font-size: 0.78rem;
  font-weight: 700;
}

.listing-meta strong {
  font-size: 1.4rem;
  color: var(--primary);
}

.blog-card {
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.blog-card-copy {
  text-align: left;
}

.blog-card time {
  color: var(--muted);
  font-size: 0.86rem;
}

.blog-card p {
  margin: 12px 0 0;
}

.blog-card a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--primary);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}

.container-faq {
  width: min(calc(100% - 40px), 820px);
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-trigger {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.faq-trigger::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--muted);
}

.faq-item.is-open .faq-trigger::after {
  content: "−";
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.site-footer {
  background: var(--primary);
  color: #fbfcff;
  padding-top: 56px;
}

.footer-grid {
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  align-items: start;
}

.site-footer h3,
.site-footer h4 {
  margin: 0;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, transform 0.25s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: rgba(62, 142, 126, 0.4);
  transform: translateY(-1px);
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials svg path {
  fill: currentColor;
}

.footer-bottom {
  padding: 26px 20px 34px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
}

.page-main {
  min-height: calc(100vh - 72px);
}

.contact-hero {
  padding: 72px 0 28px;
}

.contact-hero-inner {
  padding: 52px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(62, 142, 126, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 238, 0.98));
  box-shadow: var(--shadow-soft);
}

.contact-hero-copy {
  max-width: 720px;
}

.contact-hero-copy h1 {
  margin: 14px 0 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.contact-hero-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-card,
.contact-form-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-card h2,
.contact-form-card h2 {
  margin: 18px 0 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.contact-card p,
.contact-form-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-card a,
.contact-card span {
  display: inline-block;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
}

.detail-layout {
  padding-top: 62px;
  padding-bottom: 72px;
}

.detail-header h1 {
  margin: 14px 0 0;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.tag-green {
  background: rgba(62, 142, 126, 0.14);
  color: var(--secondary);
}

.detail-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 380px);
  align-items: start;
  margin-top: 40px;
}

.detail-copy {
  display: grid;
  gap: 30px;
}

.detail-copy section {
  background: transparent;
}

.detail-copy h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.bullet-amber li::before { background: #b69633; }

.bullet-check li::before {
  width: 14px;
  height: 14px;
  top: 0.25em;
  border: 2px solid rgba(62, 142, 126, 0.45);
  background: transparent;
}

.bullet-check li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.53em;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
}

.application-card {
  padding: 28px;
  position: sticky;
  top: 100px;
}

.application-card h2 {
  margin-top: 0;
}

.application-card p {
  margin: 10px 0 0;
}

.application-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.application-form label {
  display: grid;
  gap: 7px;
}

.application-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.application-form input,
.application-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}

.application-form input:focus,
.application-form textarea:focus {
  outline: 2px solid rgba(62, 142, 126, 0.18);
  border-color: rgba(62, 142, 126, 0.55);
}

.file-field {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px 12px;
}

.file-field > span {
  grid-column: 1 / -1;
}

.file-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
}

.file-name {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.article-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 42px;
  color: #fff;
}

.article-hero-copy time,
.article-hero-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.article-hero-copy h1 {
  max-width: 620px;
  margin: 8px 0 6px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.article-section {
  padding-top: 60px;
}

.article-body h2 {
  margin: 28px 0 12px;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.article-body ol {
  padding-left: 20px;
  color: var(--muted);
}

.article-body li + li {
  margin-top: 14px;
}

.article-back {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1080px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .four-up,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .application-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(245, 243, 238, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .three-up,
  .four-up,
  .stats-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .contact-hero-inner {
    padding: 32px 26px;
  }

  .listing-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .listing-meta {
    justify-content: flex-start;
  }

  .article-hero {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .hero {
    min-height: 460px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .faq-trigger {
    padding-right: 52px;
  }

  .file-field {
    grid-template-columns: 1fr;
  }
  
  .lightbox-dialog {
    width: min(calc(100% - 20px), 1080px);
    margin-top: 2.5vh;
    padding: 14px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }
}
