/* ABC do Evento — público + admin */

:root {
  --bg: #faf8f5;
  --surface: #fff;
  --text: #1c1917;
  --muted: #78716c;
  --accent: #b45309;
  --accent-dark: #92400e;
  --line: #e7e5e4;
  --shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
  --radius: 12px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.wrap {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.main-content {
  flex: 1;
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.site-header__inner {
  display: grid;
  gap: 0.35rem;
  align-items: baseline;
}

@media (min-width: 720px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .logo {
    grid-column: 1;
  }
  .tagline {
    grid-column: 1;
    grid-row: 2;
  }
  .nav-main {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: center;
  }
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--accent-dark);
}

.tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-main a {
  font-weight: 600;
  text-decoration: none;
}

.nav-main a:hover {
  text-decoration: underline;
}

/* Carousel */
.hero-carousel {
  background: #292524;
}

.carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel__track {
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: min(52vh, 420px);
}

@media (max-width: 719px) {
  .carousel__track {
    aspect-ratio: 16 / 10;
    max-height: 280px;
  }
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel__media {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.carousel__media--placeholder {
  background: linear-gradient(135deg, #44403c 0%, #1c1917 100%);
}

.carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1rem 2.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.carousel__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.carousel__title:hover {
  color: #fef3c7;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow);
}

.carousel__btn:hover {
  background: #fff;
}

.carousel__btn--prev {
  left: 0.75rem;
}

.carousel__btn--prev::before {
  content: "‹";
  font-size: 1.5rem;
  line-height: 1;
}

.carousel__btn--next {
  right: 0.75rem;
}

.carousel__btn--next::before {
  content: "›";
  font-size: 1.5rem;
  line-height: 1;
}

.carousel__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding-bottom: 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.carousel__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.section__lead {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 65ch;
}

.section__cta {
  margin-top: 2rem;
}

/* Grid 3 col — inspirado em guias de celebrantes */
.pro-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .pro-grid {
    grid-template-columns: 1fr;
  }
}

.pro-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.12);
}

.pro-card__thumb {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--line);
}

.pro-card__thumb--169 {
  aspect-ratio: 16 / 9;
}

.pro-card__thumb--empty {
  background: linear-gradient(145deg, #d6d3d1, #a8a29e);
}

.pro-card__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pro-card__name {
  font-weight: 700;
  font-size: 1.05rem;
}

.pro-card__cat {
  font-size: 0.85rem;
  color: var(--muted);
}

/* About boxes */
.about-boxes {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .about-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-box {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-box h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}

.about-box p {
  margin: 0;
  color: var(--muted);
}

.about-box p strong,
.about-box a {
  color: var(--text);
}

/* Profile page — bio + contato na mesma faixa; galeria/vídeos abaixo em largura total */
.pro-profile__hero {
  margin-bottom: 1.25rem;
}

.pro-profile__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.pro-profile__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pro-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9f1239;
  background: #fadadd;
  border-radius: 999px;
  box-shadow: none;
}

.pro-profile__lead {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.pro-profile__bio-col {
  min-width: 0;
}

.pro-section--sobre {
  margin-bottom: 0;
}

@media (min-width: 960px) {
  .pro-profile__lead {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 32%);
    gap: 2.5rem 3rem;
  }

  .pro-profile__aside {
    position: sticky;
    top: 1.25rem;
  }
}

.pro-profile__media {
  margin-top: 2.5rem;
}

.pro-section {
  margin-bottom: 2.5rem;
}

.pro-section:last-child {
  margin-bottom: 0;
}

.pro-section__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pro-section__title--video {
  gap: 0.45rem;
}

.pro-section__title-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.88;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17 10.5V7a1 1 0 00-1-1H4a1 1 0 00-1 1v10a1 1 0 001 1h12a1 1 0 001-1v-3.5l4 4v-11l-4 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pro-section__body {
  max-width: 65ch;
}

.pro-bio__text {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

.pro-gallery--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 560px) {
  .pro-gallery--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 720px) {
  .pro-gallery--grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pro-gallery__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--line);
}

.pro-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pro-videos--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pro-videos--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pro-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0c0a09;
  box-shadow: var(--shadow);
}

.pro-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pro-contact-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.1);
  border: 1px solid var(--line);
}

.pro-contact-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.pro-contact-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pro-contact-card__empty {
  margin: 0;
  font-size: 0.9rem;
}

.pro-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.pro-contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(28, 25, 23, 0.12);
}

.pro-contact-btn--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.pro-contact-btn--whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  color: #fff;
}

.pro-contact-btn--secondary {
  background: #f5f5f4;
  border-color: #e7e5e4;
  color: var(--text);
  justify-content: flex-start;
}

.pro-contact-btn--secondary:hover {
  background: #e7e5e4;
  border-color: #d6d3d1;
  color: var(--text);
}

.pro-contact-btn__icon {
  display: inline-block;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.pro-contact-btn__icon--wa {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.pro-contact-btn--whatsapp .pro-contact-btn__icon--wa {
  background: #fff;
}

.pro-contact-btn__icon--web {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.45 2.1 1.17 2.83l-.83 1.1zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}

.pro-contact-btn__icon--ig {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 01-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 017.8 2m-.2 2A3.6 3.6 0 004 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 003.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5M12 7a5 5 0 110 10 5 5 0 010-10m0 2a3 3 0 100 6 3 3 0 000-6z'/%3E%3C/svg%3E");
}

.pro-contact-btn__icon--external {
  width: 0.95rem;
  height: 0.95rem;
  margin-left: auto;
  opacity: 0.65;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M19 19H5V5h7V3H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
}

.pro-contact-btn--secondary .pro-contact-btn__icon--external {
  margin-left: auto;
}

.back-link {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn--whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  color: #fff;
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn--danger {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

.btn--danger:hover {
  background: #991b1b;
}

.icon {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.icon--web {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.45 2.1 1.17 2.83l-.83 1.1zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}

.icon--ig {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 01-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 017.8 2m-.2 2A3.6 3.6 0 004 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 003.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5M12 7a5 5 0 110 10 5 5 0 010-10m0 2a3 3 0 100 6 3 3 0 000-6z'/%3E%3C/svg%3E");
}

/* Search */
.search-form {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .search-form {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: end;
  }
}

.search-form input,
.search-form select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: var(--surface);
}

.search-results-count {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.pro-grid--compact {
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0.25rem 0;
}

.muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Admin */
.admin-body {
  background: #f1f5f9;
}

.admin-bar {
  background: #0f172a;
  color: #e2e8f0;
  padding: 0.75rem 0;
}

.admin-bar a {
  color: #93c5fd;
  text-decoration: none;
  margin-left: 1rem;
}

.admin-bar a:hover {
  text-decoration: underline;
}

.admin-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.admin-page {
  padding: 2rem 0 3rem;
}

.admin-login {
  max-width: 400px;
  padding: 3rem 0;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-form--wide {
  max-width: 720px;
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-form input:not([type="checkbox"]):not([type="file"]),
.admin-form textarea,
.admin-form select {
  font: inherit;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-form fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 0 0 1rem;
}

.admin-form legend {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0 0.35rem;
}

label.check {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.admin-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.35rem 1rem;
}

.admin-photo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-photo-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  background: #f5f5f4;
  font-weight: 600;
}

.admin-danger {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}

.msg {
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.msg--ok {
  background: #dcfce7;
  color: #166534;
}

.msg--err {
  background: #fee2e2;
  color: #991b1b;
}
