:root {
  --sky: #99b7c6;
  --lilac: #978ec4;
  --shell: #f9f5ea;
  --blush: #ffd8d1;
  --rose: #f9afb1;
  --sage: #9ab59d;
  --charcoal: #3a3f3b;
  --coral: #f4b092;
  --berry: #ce325b;
  --bg: #f9f5ea;
  --card: #fff;
  --text: #252827;
  --muted: #5b605b;
  --shadow: 0 10px 40px rgba(58, 63, 59, 0.14);
  --radius: 14px;
  --font-display: "DM Serif Display", "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--charcoal);
  text-decoration: none;
}

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

.site-header {
  padding: 16px 24px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(249, 245, 234, 0.95) 0%, rgba(249, 245, 234, 0.7) 100%);
  backdrop-filter: blur(8px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(58, 63, 59, 0.12);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-wordmark {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: saturate(0) brightness(0.2);
}

.nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--blush);
  color: var(--charcoal);
}

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

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--shell);
  border: 1px solid rgba(58, 63, 59, 0.15);
}

.user-chip-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.user-chip-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(58, 63, 59, 0.12);
}

.chip-name {
  font-weight: 600;
}

.chip-role {
  font-size: 12px;
  color: var(--muted);
  text-transform: capitalize;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.dot-manager {
  background: var(--lilac);
}

.dot-user {
  background: var(--sage);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  box-shadow: 0 10px 25px rgba(58, 63, 59, 0.16);
}

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

.btn.donate {
  background: var(--charcoal);
  color: var(--shell);
}

.btn.donate:hover {
  background: #2b2f2c;
  color: var(--shell);
}

.btn.ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(58, 63, 59, 0.16);
  box-shadow: none;
}

.btn.ghost:hover {
  background: var(--shell);
}

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

.btn.inline {
  margin-top: 12px;
}

.flash-stack {
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.flash {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.flash.success {
  background: var(--sage);
  color: #0d2719;
}

.flash.error {
  background: var(--berry);
  color: #fff;
}

.flash.info {
  background: var(--lilac);
  color: #fff;
}

.page {
  padding: 32px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}

.landing-page {
  padding-top: 16px;
}

.page.reports-page {
  max-width: 100%;
  width: 100%;
  padding: 24px 24px 40px;
}

.reports-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.reports-embed {
  margin: 14px auto 0;
  width: 100%;
  max-width: 1250px;
  display: flex;
  justify-content: center;
}

.reports-embed .tableau-embed-target {
  min-height: auto;
  height: auto;
  border-radius: 14px;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}

.reports-embed .tableau-embed-v3 {
  width: 100% !important;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
  margin-top: 6px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  margin: 6px 0 4px;
  color: var(--charcoal);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--lilac);
  font-size: 12px;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.hero-card {
  background: linear-gradient(145deg, var(--blush), var(--rose));
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  color: #312420;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
  width: 100%;
}

.mini-header {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
  color: #2b1c1c;
  margin-bottom: 2px;
}

.metric-highlight {
  display: grid;
  gap: 2px;
}

.metric-highlight .metric-number {
  font-size: clamp(28px, 4vw, 34px);
  word-break: normal;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 8px 0 10px;
}

.metric-number {
  font-size: 26px;
  font-weight: 700;
  word-break: break-word;
}

.metric-label {
  color: #2b1c1c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.microcopy {
  color: var(--muted);
  font-size: 14px;
}

.impact-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: stretch;
  gap: 18px;
  padding: 12px 16px;
  margin: 8px 0 14px;
  background: linear-gradient(145deg, var(--blush), var(--rose));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(58, 63, 59, 0.06);
  overflow-x: auto;
}

.impact-bar .metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.impact-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: #2b1c1c;
  white-space: nowrap;
}

.impact-metric .metric-number {
  font-size: 26px;
  white-space: nowrap;
}

.impact-note {
  margin-left: auto;
  white-space: nowrap;
  font-size: 12px;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.panel {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(58, 63, 59, 0.06);
}

.panel h2 {
  margin-top: 0;
  font-family: var(--font-display);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.tableau-panel {
  margin-top: 18px;
}

.tableau-shell {
  background: var(--shell);
  border: 1px dashed rgba(58, 63, 59, 0.25);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.tableau-embed-target {
  background: #fff;
  border-radius: 10px;
  min-height: 720px;
  display: block;
  width: 100%;
  border: 1px solid rgba(58, 63, 59, 0.12);
  box-shadow: var(--shadow);
}

.tableau-embed-v3 {
  width: 100%;
  height: 100%;
  display: block;
}

.pill-list,
.numbered {
  padding-left: 18px;
}

.table {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(58, 63, 59, 0.08);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  padding: 12px 14px;
}

.table-head {
  background: var(--shell);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.table-row {
  background: #fff;
  border-top: 1px solid rgba(58, 63, 59, 0.08);
}

.table-row.muted {
  color: var(--muted);
}

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

.form.two-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--charcoal);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(58, 63, 59, 0.2);
  background: #fff;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lilac);
  box-shadow: 0 0 0 3px rgba(151, 142, 196, 0.1);
}

textarea {
  min-height: 80px;
}

.grid.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.card {
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(58, 63, 59, 0.08);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 30px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 8px 0;
}

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

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(58, 63, 59, 0.15);
  background: var(--shell);
  font-weight: 600;
}

.auth {
  max-width: 420px;
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.info-item {
  background: var(--shell);
  border: 1px solid rgba(58, 63, 59, 0.12);
  border-radius: 12px;
  padding: 12px;
}

.info-span-2 {
  grid-column: span 2;
}

.info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
}

.info-value {
  font-weight: 700;
  color: var(--charcoal);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-stack {
  display: grid;
  gap: 24px;
}

.profile-panel + .profile-panel {
  margin-top: 24px;
}

.section-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}

.search-box {
  display: flex;
  gap: 8px;
  align-items: center;
}

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

.inline-form {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.inline-form + .table,
.form + .table {
  margin-top: 12px;
}

.stacked {
  display: grid;
  gap: 10px;
}

.pagination-bar {
  margin: 12px 0;
  padding: 10px 12px;
  background: var(--card);
  border: 1px solid rgba(58, 63, 59, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pager {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer {
  margin-top: 32px;
  padding: 22px 24px 30px;
  background: var(--charcoal);
  color: #fff;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.fine-print {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 64px;
  width: auto;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--lilac);
  outline-offset: 2px;
  transition: outline 0.2s ease;
}

/* Column visibility controls */
.column-controls {
  margin: 12px 0;
  padding: 10px 12px;
  background: var(--card);
  border: 1px solid rgba(58, 63, 59, 0.08);
  border-radius: var(--radius);
  position: relative;
}

.column-checkboxes {
  position: absolute;
  top: 100%;
  left: 12px;
  right: 12px;
  margin-top: 8px;
  padding: 12px;
  background: var(--card);
  border: 1px solid rgba(58, 63, 59, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
}

.column-checkboxes label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.column-checkboxes input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
}

/* Horizontal scrollable table */
.table-scroll-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(58, 63, 59, 0.08);
  background: var(--card);
}

.table-scrollable {
  min-width: 100%;
  display: table;
  border-collapse: separate;
  border-spacing: 0;
  overflow: visible;
}

.table-scrollable .table-head,
.table-scrollable .table-row {
  display: table-row;
}

.table-scrollable .table-head > div,
.table-scrollable .table-row > div {
  display: table-cell;
  padding: 12px 14px;
  white-space: nowrap;
  vertical-align: top;
  border-bottom: 1px solid rgba(58, 63, 59, 0.08);
}

.table-scrollable .table-head {
  background: var(--shell);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  position: sticky;
  top: 0;
  z-index: 5;
}

.table-scrollable .table-row {
  background: #fff;
}

.table-scrollable .table-row:nth-child(even) {
  background: var(--shell);
}

/* Fixed column widths */
.table-scrollable .col-name {
  min-width: 150px;
  max-width: 200px;
}

.table-scrollable .col-email {
  min-width: 220px;
  max-width: 3200px;
  white-space: normal;
  word-break: break-word;
}

.table-scrollable .col-role {
  min-width: 100px;
  max-width: 120px;
}

.table-scrollable .col-phone {
  min-width: 120px;
  max-width: 150px;
}

.table-scrollable .col-dob {
  min-width: 120px;
  max-width: 140px;
}

.table-scrollable .col-city {
  min-width: 120px;
  max-width: 150px;
}

.table-scrollable .col-state {
  min-width: 80px;
  max-width: 100px;
}

.table-scrollable .col-zip {
  min-width: 80px;
  max-width: 100px;
}

.table-scrollable .col-school {
  min-width: 150px;
  max-width: 200px;
}

.table-scrollable .col-interest {
  min-width: 150px;
  max-width: 200px;
}

.table-scrollable .col-milestones {
  min-width: 120px;
  max-width: 140px;
}

.table-scrollable .col-donations {
  min-width: 140px;
  max-width: 180px;
}

.table-scrollable .col-actions {
  min-width: 140px;
  max-width: 160px;
  overflow: visible;
}

/* Sticky actions column */
.table-scrollable .sticky-actions {
  position: sticky;
  right: 0;
  background: var(--card);
  z-index: 5;
  box-shadow: -4px 0 8px rgba(58, 63, 59, 0.1);
}

.table-scrollable .table-head .sticky-actions {
  background: var(--shell);
  z-index: 5;
}

.table-scrollable .table-row:nth-child(even) .sticky-actions {
  background: var(--shell);
}

/* Actions dropdown */
.sticky-actions {
  z-index: 5 !important;
  position: relative;
}

.actions-dropdown {
  position: relative;
  z-index: 999999;
}

.sticky-actions.is-open {
  z-index: 25 !important;
}

.actions-dropdown.is-open {
  z-index: 20;
}

.actions-btn {
  width: 100%;
  min-width: 80px;
  position: relative;
  z-index: 1;
}

.actions-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 9999999;
  background: var(--card);
  border: 1px solid rgba(58, 63, 59, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(58, 63, 59, 0.25);
  min-width: 160px;
  overflow: hidden;
}

.actions-menu.drop-up {
  top: auto;
  bottom: calc(100% + 4px);
  box-shadow: 0 -4px 20px rgba(58, 63, 59, 0.25);
}

.actions-menu-item {
  display: block;
  padding: 10px 14px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(58, 63, 59, 0.08);
}

.actions-menu-item:last-child,
.actions-menu-item-form:last-child .actions-menu-item-btn {
  border-bottom: none;
}

.actions-menu-item:hover {
  background: var(--shell);
}

.actions-menu-item-form {
  display: block;
  margin: 0;
  padding: 0;
}

.actions-menu-item-btn {
  display: block;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: var(--charcoal);
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(58, 63, 59, 0.08);
}

.actions-menu-item-btn:hover {
  background: var(--shell);
}

/* Hide columns when toggled */
.table-scrollable .col-name.hidden,
.table-scrollable .col-email.hidden,
.table-scrollable .col-role.hidden,
.table-scrollable .col-phone.hidden,
.table-scrollable .col-dob.hidden,
.table-scrollable .col-city.hidden,
.table-scrollable .col-state.hidden,
.table-scrollable .col-zip.hidden,
.table-scrollable .col-school.hidden,
.table-scrollable .col-interest.hidden,
.table-scrollable .col-milestones.hidden,
.table-scrollable .col-donations.hidden {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 720px) {
  .nav-shell {
    grid-template-columns: 1fr;
  }
  .nav-links {
    justify-content: flex-start;
  }
  .table-head,
  .table-row {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .column-checkboxes {
    grid-template-columns: 1fr;
  }
}

/* Landing carousel */
.landing-carousel {
  margin: 4px 0 12px;
}

.carousel-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--shell);
  border: 1px solid rgba(58, 63, 59, 0.08);
  box-shadow: var(--shadow);
  height: clamp(260px, 50vw, 480px);
}

.carousel-track {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.carousel-caption {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: flex-start;
  gap: 8px;
  padding: clamp(14px, 5vw, 36px);
  max-width: 600px;
  color: var(--charcoal);
  background: linear-gradient(
  90deg,
  rgba(249, 245, 234, 1) 0%,
  rgba(249, 245, 234, 0.9) 20%,
  rgba(249, 245, 234, 0.80) 40%,
  rgba(249, 245, 234, 0.75) 60%,
  rgba(249, 245, 234, 0.6) 80%,
  rgba(249, 245, 234, 0.1) 95%,
  rgba(249, 245, 234, 0) 100%
);
}

.carousel-caption h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
}

.carousel-caption p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  max-width: 400px;
}

.carousel-caption .eyebrow {
  color: var(--lilac);
  margin-bottom: 2px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(58, 63, 59, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 25px rgba(58, 63, 59, 0.18);
  z-index: 3;
}

.carousel-nav:hover {
  background: #fff;
  transform: translateY(-50%) translateY(-1px);
}

.carousel-nav.prev {
  left: 14px;
}

.carousel-nav.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  border: 1px solid rgba(37, 40, 39, 0.24);
  box-shadow: 0 10px 25px rgba(37, 40, 39, 0.16);
  z-index: 3;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(37, 40, 39, 0.35);
  background: rgba(37, 40, 39, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-dot.is-active {
  transform: scale(1.15);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

@media (max-width: 768px) {
  .carousel-caption {
    align-content: flex-end;
    background: linear-gradient(180deg, rgba(249, 245, 234, 0.05) 0%, rgba(249, 245, 234, 0.92) 75%);
    max-width: none;
  }

  .carousel-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }
}
