:root {
  --bg: #070b11;
  --bg-alt: #101923;
  --panel: rgba(16, 25, 35, 0.95);
  --panel-strong: rgba(10, 16, 23, 0.98);
  --panel-soft: rgba(23, 34, 45, 0.9);
  --border: rgba(212, 175, 55, 0.26);
  --gold-1: #f6d57a;
  --gold-2: #c89b3c;
  --gold-3: #8d6526;
  --text: #f5f6f7;
  --muted: #b1bdc9;
  --success: #50d890;
  --danger: #ff7d7d;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, rgba(198, 154, 53, 0.18), transparent 30%), linear-gradient(180deg, #03070b 0%, #0a0f15 100%);
  color: var(--text);
}

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

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

button,
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(5, 10, 15, 0.54);
  padding: 0.9rem 0.95rem;
  color: var(--text);
  outline: none;
}

button {
  cursor: pointer;
  width: auto;
}

input[type='date'] {
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
}

input[type='date']::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.9) brightness(1.2) sepia(1) saturate(0.7) hue-rotate(12deg);
  opacity: 1;
  margin-left: 6px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(246, 213, 122, 0.7);
  box-shadow: 0 0 0 3px rgba(246, 213, 122, 0.12);
}

textarea {
  resize: vertical;
  min-height: 96px;
}

.page-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 22px 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px 18px;
  background: rgba(7, 12, 18, 0.62);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-logo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(246, 213, 122, 0.7);
  box-shadow: 0 0 30px rgba(198, 154, 53, 0.3);
}

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

.brand-kicker,
.panel-kicker,
.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f1d177;
}

.brand-text h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 4rem);
  line-height: 0.95;
  font-family: 'Cormorant Garamond', serif;
  color: #f2d48d;
  text-shadow: 0 0 18px rgba(246, 213, 122, 0.34);
}

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

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(246, 213, 122, 0.08);
  border: 1px solid rgba(246, 213, 122, 0.32);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.26s ease;
}

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

.ghost-button,
.primary-button,
.secondary-button,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.26s ease;
}

.ghost-button {
  background: rgba(246, 213, 122, 0.08);
  color: var(--text);
  border: 1px solid rgba(246, 213, 122, 0.32);
}

.primary-button {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #16130d;
  box-shadow: 0 12px 18px rgba(200, 155, 60, 0.28);
}

.secondary-button,
.secondary-link {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.ghost-button:hover,
.primary-button:hover,
.secondary-button:hover,
.secondary-link:hover {
  transform: translateY(-1px);
}

.app-main {
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.hero {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr;
  gap: 18px;
  padding: 26px 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 2.4vw, 3.2rem);
  line-height: 1.08;
}

.hero-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
}

.hero-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.mini-stat {
  background: linear-gradient(180deg, rgba(246, 213, 122, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(246, 213, 122, 0.2);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.mini-stat strong {
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  color: #f4d786;
  font-weight: 800;
}

.prayer-panel {
  padding: 20px 22px 18px;
}

.prayer-header {
  margin-bottom: 14px;
}

.prayer-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 213, 122, 0.22);
  background: rgba(246, 213, 122, 0.08);
  color: #f2d48d;
  font-size: 0.75rem;
  font-weight: 700;
}

.prayer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.prayer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 108px;
  padding: 16px 12px;
  border-radius: 18px;
  border: 1px solid rgba(246, 213, 122, 0.18);
  background: linear-gradient(180deg, rgba(246, 213, 122, 0.08), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.prayer-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prayer-card strong {
  font-size: clamp(1.1rem, 1.6vw, 1.7rem);
  line-height: 1.2;
  color: #f5d98d;
}

.panel {
  background: linear-gradient(180deg, rgba(16, 25, 35, 0.96), rgba(11, 15, 21, 0.97));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  background: linear-gradient(180deg, rgba(18, 28, 39, 0.98), rgba(9, 12, 17, 0.96));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.card-label {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value {
  margin-top: 14px;
  font-size: clamp(1.5rem, 2vw, 2.3rem);
  line-height: 1.2;
  font-weight: 800;
}

.stat-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.stat-card.income .value,
.stat-card.income .card-label {
  color: #7ce4a8;
}

.stat-card.expense .value,
.stat-card.expense .card-label {
  color: #ff9797;
}

.stat-card.balance .value,
.stat-card.balance .card-label {
  color: #f7d885;
}

.stat-card.topup .value,
.stat-card.topup .card-label {
  color: #a4d8ff;
}

.content-grid,
.bottom-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}

.list-panel,
.chart-panel,
.form-panel,
.info-panel,
.donation-panel,
.admin-panel {
  padding: 22px 22px 18px;
}

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

.panel-header h3 {
  margin: 6px 0 0;
  font-size: 1.5rem;
}

.status-badge,
.list-count {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(246, 213, 122, 0.12);
  border: 1px solid rgba(246, 213, 122, 0.22);
  color: #f2d48d;
  font-size: 0.72rem;
  font-weight: 700;
}

.transactions-list {
  display: grid;
  gap: 12px;
  max-height: 430px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.transaction-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.transaction-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.transaction-item.income .transaction-icon {
  background: rgba(80, 216, 144, 0.12);
  color: var(--success);
}

.transaction-item.expense .transaction-icon {
  background: rgba(255, 125, 125, 0.12);
  color: var(--danger);
}

.transaction-meta {
  min-width: 0;
}

.transaction-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.transaction-title strong {
  font-size: 0.98rem;
}

.transaction-tag {
  font-size: 0.7rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.transaction-date,
.transaction-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.transaction-amount {
  font-weight: 800;
  white-space: nowrap;
}

.transaction-item.income .transaction-amount {
  color: var(--success);
}

.transaction-item.expense .transaction-amount {
  color: var(--danger);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 12px;
  min-height: 200px;
  width: max-content;
  min-width: 100%;
  padding: 10px 0 14px;
  flex-shrink: 0;
}

.chart-scroll {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 12px;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(234, 199, 110, 0.5) rgba(255, 255, 255, 0.04);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

.chart-scroll::-webkit-scrollbar {
  height: 10px;
}

.chart-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.chart-scroll::-webkit-scrollbar-thumb {
  background: rgba(234, 199, 110, 0.48);
  border-radius: 999px;
}

.chart-yearly {
  min-height: 220px;
  min-width: 620px;
  width: max-content;
  flex-shrink: 0;
}

.month-chart {
  min-width: 760px;
  width: max-content;
  flex-shrink: 0;
}

.bar-group {
  position: relative;
  flex: 0 0 56px;
  min-width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 100%;
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
  overflow: visible;
  touch-action: manipulation;
  user-select: none;
}

.bar-group:focus-visible,
.bar-group:hover,
.bar-group.active {
  cursor: pointer;
}

.bar-values {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, height 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  transform: translateY(6px);
}

.bar-group.active .bar-values,
.bar-group:focus-visible .bar-values,
.bar-group:hover .bar-values {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

.bar-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.chart-panel,
.chart-mode {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bar-stack {
  width: 100%;
  min-height: 160px;
  padding: 0 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.bar-stack .bar {
  width: 24px;
  min-height: 16px;
  border-radius: 12px 12px 0 0;
}

.chart-scroll .chart-bars {
  margin: 0 auto;
}

.bar-value.income {
  background: rgba(80, 216, 144, 0.1);
  border: 1px solid rgba(80, 216, 144, 0.28);
  color: #8ce7b1;
}

.bar-value.expense {
  background: rgba(255, 125, 125, 0.1);
  border: 1px solid rgba(255, 125, 125, 0.28);
  color: #ffb3b3;
}

.bar-stack {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding: 0 4px;
}

.yearly-stack {
  height: 140px;
}

.bar {
  flex: 1;
  min-height: 18px;
  border-radius: 10px 10px 0 0;
  box-shadow: inset 0 -10px 22px rgba(0, 0, 0, 0.18);
}

.bar.income {
  background: linear-gradient(180deg, #8fe9b0, #2aaf6d);
}

.bar.expense {
  background: linear-gradient(180deg, #ffb0b0, #ff6f6f);
}

.bar-label {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  opacity: 0.85;
}

.chart-mode {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.chart-mode.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.chart-header-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: #f4d884;
}

.small-button {
  padding: 0.5rem 0.8rem;
  font-size: 0.75rem;
}

.info-grid,
.donation-grid {
  display: grid;
  gap: 16px;
}

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

.info-card,
.donation-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px 18px;
}

.info-card .label,
.donation-box .label {
  display: block;
  margin-bottom: 8px;
  color: #f0cf7b;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-card strong,
.donation-box strong,
.donation-box p,
.donation-box small {
  display: block;
}

.info-card strong {
  color: var(--text);
  line-height: 1.6;
}

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

.donation-box strong {
  font-size: 1.45rem;
  margin: 6px 0;
  color: #f3d783;
}

.donation-box p {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
}

.donation-box small {
  color: var(--muted);
  line-height: 1.6;
}

.donation-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #f2d48d;
  font-size: 0.88rem;
  line-height: 1.6;
}

.year-filter {
  margin-bottom: 18px;
}

.year-filter label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.year-filter select {
  width: min(180px, 100%);
  background: rgba(5, 10, 15, 0.54);
}

.auth-body {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.auth-shell {
  width: min(100%, 440px);
  padding: 18px;
}

.auth-card {
  padding: 22px 20px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.auth-brand h1 {
  margin: 6px 0 0;
  font-size: 2rem;
}

.login-form,
.transaction-form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

input[type='date'] {
  min-height: 48px;
  padding-right: 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.full-width {
  width: 100%;
}

.alert {
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-size: 0.92rem;
}

.alert-success {
  background: rgba(80, 216, 144, 0.12);
  border: 1px solid rgba(80, 216, 144, 0.25);
  color: #8ce7b1;
}

.alert-error {
  background: rgba(255, 125, 125, 0.1);
  border: 1px solid rgba(255, 125, 125, 0.25);
  color: #ffb3b3;
}

.password-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.password-modal.open {
  display: flex;
}

.password-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 10, 0.72);
  backdrop-filter: blur(4px);
}

.password-modal-dialog {
  position: relative;
  width: min(100%, 520px);
  background: linear-gradient(180deg, rgba(16, 25, 35, 0.98), rgba(10, 15, 21, 0.99));
  border: 1px solid rgba(246, 213, 122, 0.28);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px 20px;
}

.password-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.password-modal-header h3 {
  margin: 6px 0 0;
  font-size: 1.7rem;
}

.modal-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 20px 0 8px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.empty-state {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.filter-form {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.transaction-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(246, 213, 122, 0.1);
  border: 1px solid rgba(246, 213, 122, 0.22);
  color: #f5d88b;
}

.mini-button.danger {
  background: rgba(255, 125, 125, 0.1);
  border-color: rgba(255, 125, 125, 0.28);
  color: #ffb3b3;
}

.inline-delete-form {
  margin: 0;
}

.inline-delete-form button {
  width: auto;
}

.bar-values {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: 78px;
}

.bar-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.bar-value.income {
  background: rgba(80, 216, 144, 0.1);
  border: 1px solid rgba(80, 216, 144, 0.28);
  color: #8ce7b1;
}

.bar-value.expense {
  background: rgba(255, 125, 125, 0.1);
  border: 1px solid rgba(255, 125, 125, 0.28);
  color: #ffb3b3;
}

.bar-stack {
  width: 100%;
  min-height: 160px;
  padding: 0 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.bar-stack .bar {
  width: 24px;
  min-height: 16px;
  border-radius: 12px 12px 0 0;
}

.chart-scroll .chart-bars {
  margin: 0 auto;
}

@media (max-width: 960px) {
  .hero,
  .content-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

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

  .donation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 16px 14px 28px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 14px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }

  .hero {
    padding: 18px 16px;
    gap: 14px;
  }

  .mini-stat {
    padding: 14px 14px 12px;
  }

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

  .prayer-card {
    min-height: 96px;
  }

  .form-actions {
    flex-direction: column;
  }

  .transaction-item {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 12px 12px;
  }

  .transaction-title strong {
    font-size: 1rem;
  }

  .transaction-date,
  .transaction-note {
    font-size: 0.76rem;
  }

  .transaction-amount {
    grid-column: 2;
    font-size: 0.95rem;
  }

  .transaction-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .chart-panel,
  .list-panel,
  .info-panel,
  .donation-panel {
    padding: 16px 14px 14px;
  }

  .chart-bars {
    gap: 8px;
    min-height: 180px;
  }

  .chart-scroll {
    padding-bottom: 10px;
  }

  .month-chart {
    min-width: 620px;
  }

  .chart-yearly {
    min-width: 540px;
  }

  .bar-group {
    flex-basis: 54px;
    min-width: 54px;
  }

  .bar-stack,
  .yearly-stack {
    height: 150px;
  }

  .bar-values {
    min-height: 72px;
  }

  .bar-value {
    font-size: 0.54rem;
    padding: 0.22rem 0.35rem;
  }

  .bar-label {
    font-size: 0.7rem;
  }

  .brand-kicker,
  .panel-kicker,
  .eyebrow {
    letter-spacing: 0.12em;
  }

  .hero-copy h2,
  .panel-header h3 {
    font-size: 1.4rem;
  }
}
