@font-face {
  font-family: "Maven Pro";
  src: url("/assets/fonts/maven-pro-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Maven Pro";
  src: url("/assets/fonts/maven-pro-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #014b7e;
  --pale-blue: #a6cde8;
  --ink: #424242;
  --text: #6f6f6f;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --content: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: #fff url("/assets/body-bg.jpg") no-repeat center top;
  background-size: 2000px 900px;
  color: var(--text);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.52;
}

body,
button,
input,
textarea {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover,
a:focus-visible {
  color: var(--blue);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content-width {
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 71px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -14px;
  height: 14px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  pointer-events: none;
}

.header-inner {
  min-height: 71px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  flex: 0 0 auto;
  min-height: 71px;
  padding: 20px 30px 13px;
  background: var(--pale-blue);
  border-radius: 0 0 8px 8px;
}

.brand::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 3px;
  background: var(--pale-blue);
  transform: rotate(45deg);
}

.brand img {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 38px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: stretch;
  min-height: 71px;
}

.main-nav a {
  position: relative;
  display: grid;
  place-items: center;
  margin-left: 36px;
  color: var(--ink);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px;
  height: 4px;
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  margin-top: 14px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  height: 472px;
  margin-top: 71px;
  background-color: transparent;
  background-image: url("/assets/header/full-slider_breit.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 472px;
}

.lifted-section {
  position: relative;
  z-index: 6;
  margin-top: -12px;
}

.section-card {
  position: relative;
  z-index: 5;
  padding: 30px 40px;
  border-top: 4px solid var(--blue);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 1px 5px rgba(3, 3, 3, 0.18);
}

.section-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 3px;
  background: var(--blue);
  transform: rotate(45deg);
}

.scroll-target {
  scroll-margin-top: 90px;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 34px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.home-grid .section-title {
  margin-top: 3px;
}

.home-grid .section-icon {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(145deg, #1474aa, var(--blue));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 7px 16px rgba(1, 75, 126, 0.2);
}

.home-grid .section-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.intro-lines strong {
  color: #5d5d5d;
}

.accent-line,
.phone-line {
  position: relative;
  margin: 26px 0;
  color: var(--blue);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.phone-line a {
  color: var(--blue);
  text-decoration: none;
}

.phone-line small {
  color: var(--ink);
  font-size: 14px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0 0 9px;
  text-align: left;
  vertical-align: top;
  font-weight: 400;
}

.hours-table th {
  width: 44px;
  color: var(--ink);
  font-weight: 700;
}

.prescription-notice {
  margin-top: 64px;
}

.current-title {
  color: var(--ink);
  font-weight: 700;
}

.current-details {
  white-space: pre-line;
}

.parallax-section {
  position: relative;
  z-index: 1;
  min-height: 520px;
  margin-top: -40px;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-section.compact {
  min-height: 520px;
}

.parallax-shade {
  position: absolute;
  inset: 0;
  background: rgba(67, 148, 163, 0.1);
}

.parallax-copy {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  color: #fff;
  text-align: center;
}

.parallax-copy h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(3, 3, 3, 0.7);
}

.parallax-copy p {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.25;
  text-shadow: 2px 2px 0 rgba(3, 3, 3, 0.75);
}

.overlap-section {
  position: relative;
  z-index: 8;
  margin-top: -82px;
}

.team-grid {
  display: grid;
  gap: 26px;
}

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

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

.staff-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d8e5ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(1, 75, 126, 0.1);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.staff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(1, 75, 126, 0.16);
}

.staff-portrait {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e9f1f5;
}

.staff-portrait::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 37, 63, 0.9));
  pointer-events: none;
}

.staff-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.staff-card:hover .staff-portrait img {
  transform: scale(1.025);
}

.staff-caption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 54px 24px 20px;
  color: #fff;
}

.staff-caption h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 400;
  line-height: 1.15;
}

.team-grid.assistants .staff-caption h3 {
  font-size: 21px;
}

.staff-caption p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.staff-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 15px 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.staff-details summary::-webkit-details-marker {
  display: none;
}

.staff-chevron,
.accordion-chevron {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.staff-chevron {
  margin-top: -4px;
  transition: transform 0.2s ease;
}

.staff-details[open] .staff-chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.staff-details-content {
  padding: 20px 24px 24px;
  border-top: 1px solid #e1ebf0;
  background: #f8fbfd;
}

.staff-details-content ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc outside;
}

.staff-details-content li + li {
  margin-top: 7px;
}

.staff-details-content li::marker {
  color: var(--blue);
}

.staff-diploma {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid #dce8ee;
  color: var(--ink);
  font-weight: 700;
}

.accordion {
  margin: 10px 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(3, 3, 3, 0.15);
  overflow: hidden;
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 80px;
  padding: 22px 20px;
  border: 0;
  color: var(--blue);
  font-size: 18px;
  list-style: none;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion-title {
  min-width: 0;
}

.accordion-toggle {
  display: inline-grid;
  place-items: center;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  margin-left: auto;
  border-radius: 8px;
  background: rgba(1, 75, 126, 0.1);
  color: var(--blue);
  transition: transform 0.2s ease;
}

.accordion[open] .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 30px;
  background: var(--blue);
  color: #fff;
  text-align: left;
}

.accordion-content p:first-child,
.accordion-content ul:first-child {
  margin-top: 0;
}

.accordion-content p:last-child,
.accordion-content ul:last-child {
  margin-bottom: 0;
}

.accordion-content li + li {
  margin-top: 7px;
}

.accordion-content ul,
.privacy-card ul {
  margin: 0 0 18px;
  padding-left: 1.4rem;
  list-style: disc outside;
}

.accordion-content ol,
.privacy-card ol {
  margin: 0 0 18px;
  padding-left: 1.4rem;
  list-style: decimal outside;
}

.accordion-content li::marker,
.privacy-card li::marker {
  color: currentColor;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.services-grid .accordion {
  align-self: start;
  height: fit-content;
  margin: 0;
  border: 1px solid #d8e5ed;
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(1, 75, 126, 0.08);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.services-grid .accordion:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(1, 75, 126, 0.13);
}

.services-grid .accordion summary {
  justify-content: flex-start;
  min-height: 84px;
  padding: 20px 22px;
  border-bottom: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.services-grid .accordion[open] summary {
  background: #f2f7fa;
  color: var(--blue);
}

.services-grid .accordion-content {
  padding: 22px;
  border-top: 1px solid #e2ecf2;
  background: #f9fbfc;
  color: var(--text);
  line-height: 1.62;
}

.tip-disclaimer {
  margin: -12px 0 30px;
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tips-list .accordion {
  align-self: start;
  margin: 0;
  border: 1px solid #d7e5ed;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(1, 75, 126, 0.07);
}

.tips-list .accordion + .accordion {
  margin-top: 0;
}

.tips-list .accordion summary {
  justify-content: flex-start;
  min-height: 76px;
  padding: 14px 16px;
  border: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.tips-list .accordion-content {
  padding: 24px;
  border-top: 1px solid #e7e7e7;
  background: #f8fbfd;
  color: var(--text);
  line-height: 1.58;
}

.tips-list .accordion[open] {
  grid-column: 1 / -1;
  border-color: #abc9dc;
  box-shadow: 0 12px 28px rgba(1, 75, 126, 0.11);
}

.tips-list .accordion[open] summary {
  color: var(--blue);
  background: #eef6fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
}

.contact-card {
  align-self: start;
  padding: 24px;
  border-radius: 10px;
  background: var(--soft);
  box-shadow: inset 0 0 5px rgba(2, 3, 3, 0.06);
}

.contact-card p {
  margin-top: 0;
}

.contact-item {
  display: flex;
  gap: 10px;
  color: var(--blue);
  font-size: 18px;
}

.map-card img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

.map-link {
  display: inline-block;
  margin-top: 14px;
}

.site-footer {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  padding: 40px 60px;
  border-radius: 8px;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer > div + div {
  padding-left: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.copyright {
  padding: 15px 0 30px;
  color: #b3b3b3;
}

.to-top {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: rgba(1, 75, 126, 0.9);
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.to-top:hover {
  color: #fff;
  background: #003b64;
}

/* Admin */
.admin-page {
  min-height: 100vh;
  padding: 56px 20px;
  background: #eef4f8;
}

.admin-shell {
  width: min(100%, 980px);
  margin: 0 auto;
}

.admin-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}

.admin-heading p {
  margin: 8px 0 0;
}

.admin-heading a {
  color: var(--blue);
}

.admin-form {
  padding: 34px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 35px rgba(1, 75, 126, 0.1);
}

.form-section + .form-section {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid #dce6ec;
}

.form-section h2 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 23px;
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #bfced7;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(1, 75, 126, 0.15);
  border-color: var(--blue);
}

.hours-editor {
  display: grid;
  gap: 10px;
}

.hours-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
}

.form-actions {
  position: sticky;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 34px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(1, 75, 126, 0.15);
}

.save-button {
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 12px 20px;
  cursor: pointer;
}

.save-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.save-status {
  font-size: 14px;
}

.access-denied {
  padding: 32px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 35px rgba(1, 75, 126, 0.1);
}

.admin-card {
  padding: 34px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(1, 75, 126, 0.1);
}

.admin-card h2 {
  margin-top: 0;
  color: var(--blue);
  font-weight: 400;
}

.admin-card .field + .field {
  margin-top: 16px;
}

.admin-card .save-button {
  margin-top: 22px;
}

.notice {
  margin: 0 0 20px;
  padding: 13px 15px;
  border-left: 4px solid var(--blue);
  border-radius: 5px;
  background: #eaf4fa;
  color: var(--ink);
}

.notice.error {
  border-left-color: #a52a2a;
  background: #fff0f0;
}

.logout-form {
  margin: 0;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.setup-summary {
  margin: 22px 0;
  padding: 18px;
  border-radius: 8px;
  background: #f4f7f9;
}

.setup-summary code {
  color: var(--ink);
}

.privacy-page {
  min-height: 100vh;
  padding: 100px 20px 60px;
  background: transparent;
}

.privacy-card {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 42px;
  border-top: 4px solid var(--blue);
  border-radius: 10px;
  background: white;
  box-shadow: 0 2px 12px rgba(1, 75, 126, 0.1);
}

.privacy-card h1,
.privacy-card h2 {
  color: var(--ink);
  font-weight: 400;
}

.privacy-card h1 {
  margin: 10px 0 10px;
  font-size: clamp(34px, 5vw, 52px);
  color: var(--blue);
}

.privacy-card h2 {
  margin: 38px 0 12px;
  padding-top: 22px;
  border-top: 1px solid #dfe8ed;
  font-size: 25px;
}

.privacy-card h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 19px;
}

.privacy-card .privacy-intro {
  max-width: 760px;
  color: #56646d;
  font-size: 18px;
}

.privacy-card .privacy-meta {
  color: #87949b;
  font-size: 14px;
}

.privacy-card a {
  color: var(--blue);
}

.privacy-brand {
  display: inline-block;
  margin: -18px 0 26px;
  padding: 16px 20px;
  border-radius: 0 0 9px 9px;
  background: var(--pale-blue);
}

.privacy-brand img {
  width: 150px;
  height: auto;
}

@media (max-width: 990px) {
  .site-header {
    background: var(--blue);
  }

  .header-inner {
    width: 100%;
    padding: 0 16px;
  }

  .brand {
    padding-inline: 22px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset: 71px 0 auto;
    display: none;
    min-height: 0;
    padding: 12px 18px 18px;
    background: var(--blue);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    justify-items: start;
    min-height: 44px;
    margin: 0;
    padding-inline: 10px;
    color: #fff;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: #fff;
    font-weight: 700;
  }

  .main-nav a.active::after {
    inset: auto 10px 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.55);
  }

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

  .home-grid > div + div {
    padding-top: 22px;
    border-top: 1px solid #e6e6e6;
  }

  .prescription-notice {
    margin-top: 28px;
  }

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

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

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .brand {
    min-height: 64px;
    padding: 17px 18px 10px;
  }

  .brand img {
    width: 132px;
    height: auto;
  }

  .hero {
    height: 472px;
    background-image: url("/assets/header/mobileslider.png");
    background-size: auto 472px;
  }

  .content-width {
    width: min(calc(100% - 20px), var(--content));
  }

  .section-card {
    padding: 26px 20px;
  }

  .section-title {
    font-size: 23px;
  }

  .team-grid.doctors,
  .team-grid.assistants,
  .services-grid,
  .tips-list {
    grid-template-columns: 1fr;
  }

  .tips-list .accordion[open] {
    grid-column: auto;
  }

  .services-grid .accordion-content {
    padding: 20px;
  }

  .parallax-section {
    min-height: 420px;
    background-attachment: scroll;
    background-position: center center;
  }

  .parallax-copy {
    padding-top: 150px;
  }

  .parallax-copy h2 {
    font-size: 44px;
  }

  .parallax-copy p {
    visibility: hidden;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .site-footer > div + div {
    margin-top: 20px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .admin-page {
    padding: 30px 12px;
  }

  .admin-heading {
    display: block;
  }

  .admin-heading > a {
    display: inline-block;
    margin-top: 16px;
  }

  .admin-form {
    padding: 22px 16px;
  }

  .form-grid,
  .hours-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-card {
    padding: 30px 22px;
  }
}
