:root {
  --bg: #14171a;
  --bg-soft: #1f2428;
  --panel: #ffffff;
  --panel-light: #f4f6f7;
  --ink: #15191d;
  --text: #f8fafb;
  --muted: #67727b;
  --muted-dark: #b9c1c7;
  --line: rgba(20, 23, 26, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --red: #cf232b;
  --red-dark: #991d23;
  --steel: #6f7b84;
  --cream: #f2eee7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 25, 33, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f8f8;
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(90deg, transparent 0 96%, #aab2b8 97%), linear-gradient(0deg, transparent 0 96%, #aab2b8 97%);
  background-size: 72px 72px;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-header,
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(17, 19, 21, .9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand picture {
  display: block;
}

.site-header .brand-logo {
  width: clamp(190px, 26vw, 330px);
  height: auto;
  flex-shrink: 0;
}

.admin-topbar .brand-logo {
  width: clamp(165px, 22vw, 280px);
  height: auto;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 800;
  background: #17191c;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted-dark);
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .site-header .brand-logo,
  .admin-topbar .brand-logo {
    width: min(68vw, 240px);
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
}

.main-nav a,
.admin-tab {
  color: var(--muted-dark);
  padding: 9px 10px;
  border-radius: var(--radius);
  transition: .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.admin-tab:hover,
.admin-tab.active {
  color: var(--white);
  background: rgba(216, 47, 50, .16);
}

.admin-link { border: 1px solid rgba(216, 47, 50, .45); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.98) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 16, 18, .82), rgba(14, 16, 18, .48) 48%, rgba(14, 16, 18, .1)),
    linear-gradient(0deg, rgba(247, 248, 248, 1), rgba(247, 248, 248, 0) 30%),
    radial-gradient(circle at 82% 18%, rgba(207, 35, 43, .22), transparent 28%);
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 auto 86px clamp(18px, 7vw, 96px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.7vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 { font-size: 22px; }

.hero-text {
  max-width: 700px;
  color: #dfe4e7;
  font-size: 18px;
  line-height: 1.65;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  color: #e8edf0;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
}

.hero-facts strong {
  color: var(--white);
  font-size: 18px;
}

.hero-actions,
.admin-top-actions,
.filters,
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn,
.filter-btn,
.slider-btn {
  border: 0;
  cursor: pointer;
  border-radius: var(--radius);
  min-height: 44px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover,
.filter-btn:hover,
.slider-btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 32px rgba(216, 47, 50, .22);
}

.btn-ghost,
.filter-btn,
.slider-btn {
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(20, 23, 26, .14);
}

.hero .btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .26);
}

.section {
  padding: 64px clamp(18px, 5vw, 72px);
}

.section:not(.section-light):not(.college-section) {
  color: var(--white);
  background: linear-gradient(180deg, #171b1f, #111416);
}

.section-light {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(207, 35, 43, .045), transparent 34%),
    linear-gradient(180deg, #ffffff, #f4f6f7);
  border-top: 1px solid rgba(20, 23, 26, .08);
  border-bottom: 1px solid rgba(20, 23, 26, .08);
}

.visit-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -42px auto 0;
  border: 1px solid rgba(20, 23, 26, .1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(17, 25, 33, .18);
}

.visit-strip article {
  padding: 22px;
  background: rgba(255, 255, 255, .94);
}

.visit-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.visit-strip strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-lead {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.section:not(.section-light):not(.college-section) .section-lead {
  color: var(--muted-dark);
}

.intro-grid,
.split-section,
.schedule-layout,
.college-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.split-section {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: start;
}

.schedule-layout {
  grid-template-columns: minmax(0, 760px) minmax(320px, .8fr);
  align-items: start;
}

.reviews-section {
  padding-bottom: 54px;
}

.services-section {
  padding-top: 58px;
}

.reviews-section .section-heading {
  margin-bottom: 26px;
}

.review-column .section-heading {
  margin-bottom: 18px;
}

.intro-grid p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.stat-panel,
.panel-form,
.service-card,
.review-card,
.schedule-card,
.gallery-card,
.metric-card,
.admin-item {
  color: var(--ink);
  background: linear-gradient(180deg, var(--panel), var(--panel-light));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-panel {
  padding: 28px;
  border-left: 5px solid var(--red);
}

.stat-panel span {
  display: block;
  font-size: 56px;
  font-weight: 800;
}

.stat-panel small { color: var(--muted); }

.slider-section { padding-top: 20px; }
.slider {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: center;
}

.slide-card {
  margin: 0;
  position: relative;
  height: min(52vw, 520px);
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .78), transparent);
  color: var(--white);
}

.slide-card strong,
.slide-card span { display: block; }
.slide-card span { color: var(--muted-dark); margin-top: 6px; }

.toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: end;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid rgba(20, 23, 26, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px rgba(17, 25, 33, .07);
}

.search-field {
  display: grid;
  gap: 7px;
  color: var(--steel);
}

.search-field span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(20, 23, 26, .14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  padding: 12px 14px;
  outline: 0;
}

textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: rgba(216, 47, 50, .8);
  box-shadow: 0 0 0 3px rgba(216, 47, 50, .16);
}

.filter-btn.active { background: var(--red); border-color: var(--red); }

.filters {
  justify-content: flex-end;
}

.gallery-grid,
.service-grid,
.review-list,
.schedule-list,
.metric-grid,
.admin-list {
  display: grid;
  gap: 18px;
}

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

.gallery-card {
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

.gallery-card,
.service-card,
.review-card,
.schedule-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gallery-card:hover,
.service-card:hover,
.review-card:hover,
.schedule-card:hover {
  transform: translateY(-3px);
  border-color: rgba(207, 35, 43, .34);
  box-shadow: 0 28px 70px rgba(17, 25, 33, .18);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card div { padding: 16px; }
.gallery-card h3,
.service-card h3,
.review-card h3,
.schedule-card h3 {
  margin-bottom: 8px;
}

.gallery-meta {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(207, 35, 43, .08);
  font-size: 12px;
  font-weight: 800;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(20, 23, 26, .2);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, .68);
}
.gallery-card p,
.service-card p,
.review-card p,
.schedule-card p,
.form-note,
.admin-heading p { color: var(--muted); line-height: 1.55; }

.gallery-card p,
.service-card p,
.review-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.review-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
}

.review-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
}

.review-card small {
  margin-top: auto;
  color: var(--red);
  font-weight: 800;
}

.review-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
}

.review-pager span {
  min-width: 72px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

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

.service-card,
.review-card,
.schedule-card,
.metric-card,
.admin-item { padding: 20px; }

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(207, 35, 43, .18);
  transform: rotate(45deg);
}

.service-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--red);
  border: 1px solid rgba(216, 47, 50, .45);
  font-weight: 800;
}

.panel-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.panel-form label,
.admin-form {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.schedule-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(20, 23, 26, .10);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 249, 251, .98));
  box-shadow: 0 12px 30px rgba(17, 25, 33, .08);
}

.date-badge {
  display: grid;
  place-items: center;
  min-height: 78px;
  border: 1px solid rgba(216, 47, 50, .18);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(216, 47, 50, .98), rgba(177, 25, 28, .98));
  box-shadow: 0 10px 20px rgba(216, 47, 50, .18);
}

.places-pill {
  display: inline-flex;
  margin-top: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--steel);
  background: rgba(20, 23, 26, .06);
  font-size: 13px;
  font-weight: 700;
}

.date-badge strong { font-size: 26px; color: var(--white); text-shadow: 0 1px 0 rgba(0, 0, 0, .16); }
.date-badge span { color: rgba(255, 255, 255, .88); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.schedule-card .date-badge {
  align-self: stretch;
}

.schedule-card p {
  color: var(--ink);
}

.schedule-card .btn {
  min-width: 152px;
  justify-self: end;
}

.schedule-card h3 {
  color: var(--ink);
}

.college-section {
  align-items: center;
  min-height: 250px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(207, 35, 43, .18), transparent 38%),
    #16191c;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.college-copy p { color: var(--muted-dark); line-height: 1.7; }
.college-section img {
  justify-self: end;
  max-height: 130px;
  width: min(360px, 100%);
  object-fit: contain;
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
}

.college-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  max-width: 240px;
  line-height: 1.15;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--muted-dark);
  background: #0c0d0f;
  border-top: 1px solid var(--line);
}

.site-footer a { color: var(--white); }

.quick-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(17, 19, 21, .88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

@media (min-width: 781px) {
  .quick-bar {
    display: none;
  }
}

.quick-bar a {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.quick-bar a:first-child {
  background: var(--red);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .86);
}

.lightbox.open { display: grid; }
.lightbox img {
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox p {
  max-width: 800px;
  color: var(--muted-dark);
  text-align: center;
  margin: 16px 0 0;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  font-size: 28px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .2s ease;
}

.toast.show { opacity: 1; transform: translateY(0); }

.admin-notice {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 9, 10, .72);
  backdrop-filter: blur(10px);
}

.admin-notice[hidden] { display: none; }

.admin-notice-panel {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #191c20, #111315);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.admin-notice-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  background: var(--red);
}

.admin-notice-copy strong,
.admin-notice-copy p {
  display: block;
}

.admin-notice-copy strong {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 6px;
}

.admin-notice-copy p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.admin-notice.is-error .admin-notice-mark { background: #d34a4f; }
.admin-notice.is-success .admin-notice-mark { background: #cf232b; }

.admin-body { background: #101214; }
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  background: radial-gradient(circle at top, rgba(207, 35, 43, .18), transparent 45%), #101214;
}
.admin-login .panel-form {
  width: min(100%, 440px);
}
.admin-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: calc(100vh - 73px);
}

.admin-sidebar {
  position: sticky;
  top: 73px;
  height: calc(100vh - 73px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #14171a;
}

.admin-tab {
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.admin-content { padding: 34px; }
.admin-view { display: none; }
.admin-view.active { display: block; }
.admin-heading { margin-bottom: 22px; }
.admin-heading h1 { font-size: clamp(34px, 4vw, 56px); margin-bottom: 10px; }

.admin-content {
  color: var(--white);
  background: linear-gradient(180deg, #171b1f, #101214);
}

.admin-top-actions {
  justify-content: flex-end;
}

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

.metric-card strong {
  display: block;
  font-size: 38px;
  color: var(--red);
}

.admin-form {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  margin-bottom: 22px;
}

.admin-form input[type="file"] {
  padding: 10px;
}

.admin-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 14px;
}

.danger {
  background: #6c1f22;
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
}

@media (max-width: 1080px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid, .metric-grid, .review-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .main-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(17, 19, 21, .98);
    border-bottom: 1px solid var(--line-dark);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 780px) {
  .hero { min-height: 86vh; }
  .hero-content { margin: 0 18px 44px; width: auto; }
  .hero-text { font-size: 16px; }
  .section {
    padding: 48px 18px;
  }
  .toolbar {
    grid-template-columns: 1fr;
  }
  .filters {
    justify-content: flex-start;
  }
  .filter-btn {
    flex: 1 1 calc(50% - 8px);
  }
  .intro-grid,
  .split-section,
  .schedule-layout,
  .college-section,
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .panel-form {
    position: static;
  }
  .gallery-grid,
  .service-grid,
  .review-list,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .slider {
    grid-template-columns: 1fr;
  }
  .slider-btn { width: 100%; }
  .schedule-card {
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
  }
  .admin-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
  }
  .admin-form {
    grid-template-columns: 1fr;
  }
  .admin-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .visit-strip {
    grid-template-columns: 1fr;
    margin-top: -22px;
  }
}
