/* ===========================================================
   Bowtech4You – Heide-Maria Strasser
   Schlichtes, sachliches Grunddesign auf Basis von CSS-Variablen.
   Farben/Schriften hier zentral anpassen.
=========================================================== */

:root {
  --color-bg: #faf8f4;
  --color-bg-alt: #f1ede3;
  --color-surface: #ffffff;
  --color-text: #2e2c28;
  --color-text-muted: #66625a;
  --color-primary: #4f7896;
  --color-primary-dark: #375868;
  --color-primary-light: #e8eff2;
  --color-accent: #c07a4a;
  --color-border: #e3ddd0;

  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --max-width: 1080px;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(46, 44, 40, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  accent-color: var(--color-primary);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

section.alt {
  background: var(--color-bg-alt);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
}

.lede {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 640px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- Header ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.brand-name span {
  display: block;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-primary-dark);
}

.nav-links a[aria-current="page"] {
  color: var(--color-primary-dark);
}

/* ---------- Dropdown nav ---------- */

.nav-item {
  position: relative;
}

.nav-item-label {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav-caret-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

.nav-caret {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.15s ease;
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 60;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover .nav-caret,
.nav-item.open .nav-caret {
  transform: rotate(225deg);
  margin-top: 3px;
}

.nav-dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */

.hero {
  padding: 96px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-visual {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: var(--color-primary-light);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-line {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.trust-line strong {
  color: var(--color-text);
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

/* ---------- Cards / grids ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Grid items default to min-width:auto, which can force the track (and the
   page) wider than the viewport once text no longer fits on one line. */
.hero .container > *,
.grid-2 > *,
.grid-3 > *,
.steps > *,
.contact-grid > * {
  min-width: 0;
}

.portrait {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 4px solid var(--color-surface);
}

.history-card {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.bowtech-badge {
  width: 160px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--color-surface);
  padding: 12px 16px;
  border: 1px solid var(--color-border);
}

.history-card > div {
  flex: 1;
  min-width: 240px;
}

.history-card p {
  margin-bottom: 0;
}

.banner-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}

/* ---------- Steps (Ablauf) ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text);
  font-family: inherit;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-primary-dark);
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 4px 22px;
  color: var(--color-text-muted);
  max-width: 680px;
}

/* ---------- Method pages (Bowtech / Kinesiologie / Emmett) ---------- */

.method-hero {
  padding: 72px 0 64px;
}

.method-hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.method-hero-visual {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: var(--color-primary-light);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.method-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag-list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 0.92rem;
  color: var(--color-text);
}

.method-nav-jump {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---------- Home: method teaser cards ---------- */

.method-teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.method-teaser {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.method-teaser:hover {
  transform: translateY(-3px);
}

.method-teaser-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-primary-light);
}

.method-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-teaser-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.method-teaser-body h3 {
  margin-bottom: 8px;
}

.method-teaser-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.method-teaser-link {
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 0.92rem;
  margin-top: 12px;
}

/* ---------- Aktuelles ---------- */

.aktuelles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aktuelles-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.aktuelles-media {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  overflow: hidden;
  position: relative;
}

.aktuelles-media img,
.aktuelles-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aktuelles-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.aktuelles-body {
  padding: 16px 18px 20px;
}

.aktuelles-date {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.aktuelles-caption {
  margin: 0;
  font-size: 0.95rem;
}

.aktuelles-empty {
  color: var(--color-text-muted);
  text-align: center;
  padding: 40px 0;
}

.aktuelles-admin-link {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.aktuelles-admin-link a {
  color: var(--color-text-muted);
}

/* ---------- Placeholder / Kinesiologie ---------- */

.placeholder-box {
  border: 1.5px dashed var(--color-primary);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--color-primary-light);
}

.placeholder-tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ---------- Contact ---------- */

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

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-list li:first-child {
  border-top: 1px solid var(--color-border);
}

.contact-list .label {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 110px;
  flex-shrink: 0;
  padding-top: 2px;
}

.contact-list a {
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--color-primary-dark);
}

/* ---------- Small icon buttons/links (copy, map) ---------- */

.copy-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: none;
  color: var(--color-text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.15s ease, background 0.15s ease;
}

.icon-btn:hover {
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
}

.icon-btn svg {
  width: 15px;
  height: 15px;
}

.copy-btn .icon-check {
  display: none;
}

.copy-btn.copied .icon-copy {
  display: none;
}

.copy-btn.copied .icon-check {
  display: block;
}

.copy-btn.copied {
  color: var(--color-primary-dark);
}

footer.site-footer .icon-btn {
  color: #a9a599;
}

footer.site-footer .icon-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

footer.site-footer .copy-btn.copied {
  color: #fff;
}

.map-note {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: #2e2c28;
  color: #d8d5cc;
  padding: 48px 0 28px;
}

footer.site-footer a {
  color: #d8d5cc;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 20px;
  font-size: 0.82rem;
  color: #a9a599;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Simple pages (Impressum/Datenschutz) ---------- */

.simple-page {
  padding: 72px 0 96px;
  max-width: 760px;
}

.simple-page h1 {
  margin-bottom: 32px;
}

.simple-page h2 {
  font-size: 1.2rem;
  margin-top: 36px;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-text-muted);
}

/* ---------- Responsive ---------- */

@media (max-width: 1040px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--color-border);
    gap: 4px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item-label {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--color-bg-alt);
    max-height: 0;
    padding: 0 8px;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .nav-item.open .nav-dropdown {
    max-height: 200px;
    padding: 8px;
    margin-bottom: 8px;
  }

  .nav-item:hover .nav-dropdown {
    max-height: 0;
    padding: 0 8px;
  }

  .nav-item.open:hover .nav-dropdown {
    max-height: 200px;
    padding: 8px;
  }

  .hero .container,
  .method-hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .method-hero-visual {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .grid-3,
  .steps,
  .method-teasers,
  .aktuelles-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .grid-3,
  .steps,
  .method-teasers,
  .aktuelles-grid {
    grid-template-columns: 1fr;
  }

  .contact-list .label {
    width: 90px;
  }
}

/* ---------- Admin panel ---------- */

.admin-body {
  background: var(--color-bg-alt);
  min-height: 100vh;
}

.admin-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.admin-login {
  max-width: 380px;
  margin: 96px auto;
  padding: 40px 24px;
}

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

.admin-error {
  background: #fbe9e7;
  border: 1px solid #e0a598;
  color: #8a3324;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.admin-success {
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary);
  color: var(--color-primary-dark);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input[type="text"],
.field input[type="password"],
.field input[type="date"],
.field input[type="file"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--color-text);
}

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

.field-hint {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 5px;
}

.btn-plain {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.admin-list-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.admin-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-bg-alt);
}

.admin-thumb-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--color-primary-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-item-body {
  flex: 1;
  min-width: 0;
}

.admin-item-body strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.admin-item-body p {
  margin: 2px 0 0;
  font-size: 0.95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-item-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.admin-item-actions button {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.95rem;
}

.admin-item-actions button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.admin-item-actions .danger:hover {
  border-color: #c0453a;
  color: #c0453a;
}
