﻿:root {
  --bg: #fbf6f3;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-soft: #f5ece7;
  --text: #2f1c22;
  --muted: #725b63;
  --rose: #be7d8c;
  --rose-strong: #8f4353;
  --wine: #6f2d3b;
  --gold: #caa56c;
  --gold-soft: #e8d6b8;
  --line: rgba(111, 45, 59, 0.12);
  --shadow: 0 28px 80px rgba(111, 45, 59, 0.12);
  --shadow-soft: 0 18px 50px rgba(111, 45, 59, 0.09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-title: Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(202, 165, 108, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(190, 125, 140, 0.18), transparent 26%),
    linear-gradient(180deg, #fcf8f5 0%, #f7efeb 55%, #fbf6f3 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(190, 125, 140, 0.2);
}

.page-shell {
  position: relative;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 243, 0.82);
  border-bottom: 1px solid rgba(111, 45, 59, 0.08);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-strong), var(--gold));
  box-shadow: 0 16px 36px rgba(143, 67, 83, 0.22);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--wine);
}

.nav-admin-btn {
  display: inline-flex;
  white-space: nowrap;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--rose-strong), var(--rose));
  color: #fff;
  box-shadow: 0 18px 30px rgba(143, 67, 83, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--wine);
  border-color: rgba(143, 67, 83, 0.14);
}

.btn-secondary:hover {
  border-color: rgba(143, 67, 83, 0.24);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--wine);
  border-color: rgba(143, 67, 83, 0.12);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.92rem;
}

.section {
  padding: 88px 0;
}

.section.compact {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--rose-strong);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-head.center {
  text-align: center;
  justify-items: center;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero {
  position: relative;
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.95fr);
  gap: 54px;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 20px;
  padding: 12px 0 0;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.45rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-copy .subtitle {
  margin: 0;
  color: var(--wine);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy .intro {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-copy .description {
  margin: 0;
  max-width: 640px;
  color: var(--text);
  font-size: 0.98rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 100%;
}

.badge {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(143, 67, 83, 0.1);
  color: var(--wine);
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(111, 45, 59, 0.05);
}

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

.meta-card {
  padding: 15px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(143, 67, 83, 0.09);
  box-shadow: 0 10px 24px rgba(111, 45, 59, 0.06);
}

.meta-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--rose-strong);
  margin-bottom: 4px;
}

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

.hero-media {
  position: relative;
  justify-self: end;
  align-self: start;
  width: min(100%, 440px);
  max-width: 440px;
  margin-top: 0;
  z-index: 0;
}

.portrait-frame {
  position: relative;
  border-radius: 38px;
  padding: 16px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.58)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow);
  border: 1px solid rgba(143, 67, 83, 0.08);
  overflow: hidden;
}

.hero-portrait {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  background: #edded6;
}

.feature-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(143, 67, 83, 0.08);
  box-shadow: var(--shadow-soft);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.03rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 251, 248, 0.94));
  border-top: 1px solid rgba(143, 67, 83, 0.06);
  border-bottom: 1px solid rgba(143, 67, 83, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: start;
}

.about-card,
.panel-card,
.form-card,
.devotional-card,
.event-card,
.social-card,
.contact-card,
.info-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(143, 67, 83, 0.09);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.about-card {
  padding: 30px;
}

.about-card p {
  margin-top: 0;
  color: var(--muted);
}

.about-highlights {
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.about-highlights li {
  list-style: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(143, 67, 83, 0.08);
  color: var(--text);
}

.about-side {
  display: grid;
  gap: 16px;
}

.about-side .info-card {
  padding: 20px;
}

.info-card h3 {
  margin: 0 0 8px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.services-grid,
.events-grid,
.socials-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.event-card,
.social-card,
.gallery-card {
  padding: 24px;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(190, 125, 140, 0.18), rgba(202, 165, 108, 0.16));
  color: var(--wine);
}

.service-icon svg,
.social-icon svg,
.mini-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3,
.event-card h3,
.social-card h3,
.gallery-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.service-card p,
.event-card p,
.gallery-card p {
  margin: 0;
  color: var(--muted);
}

.devotional-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: start;
}

.devotional-card {
  padding: 34px;
}

.devotional-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.devotional-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.08;
}

.devotional-chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(111, 45, 59, 0.07);
  color: var(--wine);
  font-weight: 700;
  font-size: 0.92rem;
}

.verse-box {
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(202, 165, 108, 0.12), rgba(190, 125, 140, 0.1));
  border: 1px solid rgba(143, 67, 83, 0.08);
  margin-bottom: 22px;
}

.verse-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--wine);
}

.verse-box p {
  margin: 0;
  color: var(--text);
}

.devotional-body {
  display: grid;
  gap: 20px;
}

.devotional-body h4 {
  margin: 0 0 6px;
  color: var(--wine);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.devotional-body p {
  margin: 0;
  color: var(--muted);
}

.devotional-sidebar {
  display: grid;
  gap: 18px;
}

.mini-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(143, 67, 83, 0.08);
  box-shadow: var(--shadow-soft);
}

.mini-panel h3 {
  margin: 0 0 12px;
}

.mini-panel p,
.mini-panel li {
  color: var(--muted);
}

.mini-panel ul {
  margin: 0;
  padding-left: 18px;
}

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

.event-card {
  display: grid;
  gap: 16px;
}

.event-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 238, 0.96));
  border-color: rgba(202, 165, 108, 0.26);
}

.event-image {
  width: 100%;
  height: 230px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(190, 125, 140, 0.18), rgba(202, 165, 108, 0.2));
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(111, 45, 59, 0.06);
  color: var(--wine);
  font-weight: 600;
}

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

.social-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.social-card.disabled {
  opacity: 0.68;
}

.social-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-strong), var(--gold));
  box-shadow: 0 14px 28px rgba(143, 67, 83, 0.18);
}

.social-card small {
  color: var(--muted);
  word-break: break-word;
}

.social-card .btn {
  width: fit-content;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.form-card,
.contact-card,
.panel-card {
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

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

.password-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.password-row input {
  flex: 1;
  min-width: 0;
}

.password-toggle {
  min-height: 48px;
  padding-inline: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(143, 67, 83, 0.12);
  cursor: pointer;
  z-index: 1;
}

.password-toggle:hover {
  background: #fff;
}

.field label {
  font-weight: 700;
  font-size: 0.93rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(143, 67, 83, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(143, 67, 83, 0.3);
  box-shadow: 0 0 0 4px rgba(190, 125, 140, 0.12);
  background: #fff;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(143, 67, 83, 0.08);
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
}

.contact-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.login-feedback {
  margin: -2px 0 0;
  min-height: 1.25em;
  color: var(--wine);
  font-size: 0.92rem;
}

.login-feedback.is-error {
  color: #a53a4b;
}

.login-feedback.is-success {
  color: #2f6b4f;
}

.mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(190, 125, 140, 0.18), rgba(202, 165, 108, 0.16));
  color: var(--wine);
}

.footer {
  padding: 36px 0 48px;
  color: var(--muted);
}

.footer-inner {
  padding-top: 28px;
  border-top: 1px solid rgba(143, 67, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--wine);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(47, 28, 34, 0.94);
  color: #fff;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  transition: transform 220ms ease, opacity 220ms ease;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  background:
    radial-gradient(circle at top left, rgba(202, 165, 108, 0.12), transparent 30%),
    linear-gradient(180deg, #fcf8f5 0%, #f8f2ee 100%);
}

.admin-sidebar {
  padding: 24px;
  border-right: 1px solid rgba(143, 67, 83, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu button {
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.admin-menu button.active,
.admin-menu button:hover {
  background: rgba(190, 125, 140, 0.12);
  color: var(--wine);
  border-color: rgba(190, 125, 140, 0.18);
}

.admin-footer {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-main {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-top h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.admin-subtitle {
  color: var(--muted);
  margin: 4px 0 0;
}

.panel-grid {
  display: grid;
  gap: 18px;
}

.panel-grid.two {
  grid-template-columns: 1fr 1fr;
}

.stack {
  display: grid;
  gap: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(143, 67, 83, 0.08);
  color: var(--wine);
  font-weight: 600;
  cursor: pointer;
}

.table-list {
  display: grid;
  gap: 12px;
}

.table-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(143, 67, 83, 0.08);
}

.table-item-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

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

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

.empty-state {
  padding: 28px;
  border-radius: 22px;
  border: 1px dashed rgba(143, 67, 83, 0.18);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
}

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(520px, 100%);
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(143, 67, 83, 0.1);
  box-shadow: var(--shadow);
}

.login-card h1 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 2.2rem;
}

.helper-text {
  color: var(--muted);
  font-size: 0.94rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.95fr);
    gap: 48px;
  }

  .hero-media {
    width: min(100%, 420px);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .devotional-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-media {
    justify-self: center;
    width: min(100%, 620px);
    margin-top: 0;
  }

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

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

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

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(143, 67, 83, 0.1);
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    min-height: 68px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-media {
    order: -1;
  }

  .hero-meta,
  .feature-strip,
  .services-grid,
  .events-grid,
  .socials-grid,
  .form-grid.two,
  .panel-grid.two {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    line-height: 1.02;
  }

  .hero-media {
    justify-self: stretch;
    width: 100%;
  }

  .hero-copy {
    gap: 16px;
    padding: 4px 0 0;
  }

  .password-row {
    flex-direction: column;
  }

  .password-toggle {
    width: 100%;
  }

  .login-card .btn-primary,
  .login-card .btn-secondary {
    width: 100%;
  }

  .hero-portrait {
    object-position: center 10%;
  }

  .section {
    padding: 64px 0;
  }

  .about-card,
  .devotional-card,
  .form-card,
  .contact-card,
  .panel-card,
  .mini-panel {
    padding: 20px;
  }

  .admin-main {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
