:root {
  color-scheme: light;
  --ink: #24262d;
  --ink-strong: #101216;
  --muted: #7b8089;
  --soft-muted: #a4a8b0;
  --page: #eef0f3;
  --canvas: #ffffff;
  --panel: #ffffff;
  --panel-soft: #f6f7f8;
  --rail: #f7f7f8;
  --rail-text: #33363d;
  --rail-muted: #8b9098;
  --line: #e7e8eb;
  --shadow: 0 24px 60px rgba(26, 28, 35, 0.12);
  --shadow-soft: 0 10px 24px rgba(26, 28, 35, 0.05);
  --sage: #f3f8f1;
  --sage-ink: #2f6b42;
  --gold: #fff7db;
  --gold-ink: #8a681a;
  --lavender: #f3f4ff;
  --lavender-soft: #f4f5ff;
  --cream: #fafafa;
  --red: #b84f4c;
  --green: #247246;
  --blue: #2f7df6;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

.app-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  width: min(1500px, calc(100vw - 48px));
  height: calc(100vh - 48px);
  margin: 24px auto;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 22, 0.08);
  border-radius: var(--radius-lg);
  background: var(--canvas);
  box-shadow: var(--shadow);
}

.sidebar {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 22px 14px;
  background: var(--rail);
  border-right: 1px solid var(--line);
  color: var(--rail-text);
}

.brand {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0 12px 20px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.brand-image {
  display: block;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(16, 18, 22, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 18, 22, 0.10);
  object-fit: cover;
  object-position: center;
}

.brand h1,
.brand p,
h2,
h3,
p {
  margin: 0;
}

.brand h1 {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.1;
}

.brand p {
  color: var(--rail-muted);
  font-size: 12px;
  margin-top: 4px;
}

.sidebar-nav {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.nav-link,
.month-menu summary,
.month-nav-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 38px;
  color: var(--rail-text);
  background: transparent;
  box-shadow: none;
  border: 1px solid transparent;
  text-decoration: none;
  padding: 0 12px 0 36px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 560;
  text-align: left;
}

.nav-link::before,
.month-nav-button::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: none;
  opacity: 0.82;
}

.nav-link.active,
.nav-link:hover,
.month-nav-button.active,
.month-nav-button:hover {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 8px 20px rgba(16, 18, 22, 0.05);
}

.month-menu {
  margin-top: 2px;
}

.month-menu summary {
  cursor: pointer;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.month-menu summary::-webkit-details-marker {
  display: none;
}

.month-menu summary::after {
  content: "⌄";
  margin-left: auto;
  font-size: 14px;
}

.month-menu:not([open]) summary::after {
  content: "›";
}

.month-nav-list {
  display: grid;
  gap: 3px;
  margin-top: 6px;
  padding-left: 6px;
}

.month-nav-button {
  min-height: 34px;
  padding-left: 34px;
  font-size: 12px;
}

.month-nav-button::before {
  left: 13px;
  width: 6px;
  height: 6px;
  background: #d7b94b;
  box-shadow: none;
}

.source-note {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(16, 18, 22, 0.05);
}

.source-note span {
  display: block;
  color: var(--rail-muted);
  font-size: 11px;
  font-weight: 620;
  text-transform: uppercase;
}

.source-note strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.source-note small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

main {
  display: grid;
  gap: 16px;
  align-content: start;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 22px;
  background: #ffffff;
}

main > section,
.kpi,
.panel,
.monthly-account-card,
.money-column {
  min-width: 0;
}

body[data-view-mode="month"] .monthly-account-card {
  min-width: 100%;
}

.hero-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 0 0 6px;
}

.hero-panel h2 {
  margin-top: 4px;
  color: var(--ink-strong);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 620;
  line-height: 1.02;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: none;
}

select,
input {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  padding: 0 13px;
  outline: none;
}

input {
  min-width: 280px;
}

.transaction-search {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.transaction-search select {
  min-width: 150px;
}

.transaction-search input {
  min-width: 240px;
}

.transaction-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: -4px 0 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f8fa;
}

.transaction-filter-options[hidden] {
  display: none;
}

.transaction-filter-options > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.filter-chip {
  min-height: 30px;
  border-radius: 999px;
  padding: 0 11px;
  font-size: 13px;
  font-weight: 560;
}

.filter-chip.active {
  border-color: rgba(47, 125, 246, 0.34);
  background: rgba(47, 125, 246, 0.10);
  color: var(--blue);
}

.transaction-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin: -2px 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.transaction-summary[hidden] {
  display: none;
}

.transaction-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.transaction-summary strong {
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 620;
}

select:focus,
input:focus {
  border-color: rgba(47, 125, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(47, 125, 246, 0.12);
}

button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 650;
  padding: 0 14px;
}

button:hover {
  background: var(--panel-soft);
}

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 14px;
}

.kpi,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.kpi {
  position: relative;
  min-height: 122px;
  padding: 22px;
  overflow: hidden;
  background: #ffffff;
}

.kpi::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
}

.kpi:nth-child(1)::before {
  background: var(--sage-ink);
}

.kpi:nth-child(2)::before {
  background: #d4a91d;
}

.kpi:nth-child(3)::before {
  background: var(--line);
}

.kpi span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.kpi strong {
  display: block;
  margin-top: 16px;
  color: var(--ink-strong);
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 580;
  letter-spacing: 0;
}

.kpi:nth-child(3) strong {
  color: inherit;
}

.kpi strong.positive {
  color: var(--green);
}

.kpi strong.negative {
  color: var(--red);
}

.panel {
  padding: 16px;
  background: #ffffff;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.panel-heading h3 {
  margin-top: 4px;
  color: var(--ink-strong);
  font-size: 20px;
  font-weight: 640;
}

.panel-heading h4 {
  margin: 4px 0 0;
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 620;
}

.panel-heading.compact {
  margin-bottom: 12px;
}

.panel-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
}

.income-split {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.income-split article {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background: #ffffff;
}

.income-split article:nth-child(1) {
  border-top-color: var(--sage-ink);
}

.income-split article:nth-child(2) {
  border-top-color: #d4a91d;
}

.income-split article:nth-child(3) {
  border-top-color: #9aa0ee;
}

.income-split span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 580;
  text-transform: uppercase;
}

.income-split strong {
  display: block;
  margin-top: 8px;
  color: var(--ink-strong);
  font-size: 26px;
  font-weight: 580;
}

.income-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.income-detail-grid article {
  min-width: 0;
}

.positive {
  color: var(--green);
}

.negative {
  color: var(--red);
}

.monthly-account-list {
  display: grid;
  gap: 14px;
}

#monthly-account .panel-heading {
  margin-bottom: 12px;
}

#monthly-account .eyebrow {
  color: var(--ink-strong);
  font-size: 20px;
  font-weight: 640;
  text-transform: none;
}

.monthly-account-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  padding: 14px;
}

.monthly-card-head {
  display: block;
  margin-bottom: 12px;
}

.monthly-card-head h4 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 18px;
  font-weight: 640;
}

.monthly-card-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 580;
  text-transform: uppercase;
}

.monthly-money-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 12px;
}

.yearly-account-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(420px, 1.28fr);
  gap: 12px;
  align-items: start;
}

.monthly-account-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(420px, 1.28fr);
  gap: 12px;
  align-items: start;
}

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

.money-column {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.expense-main-column {
  min-height: 100%;
}

.money-column-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 16px 14px 13px;
  border-bottom: 1px solid var(--line);
}

.money-column-title span {
  min-width: 0;
  color: var(--ink-strong);
  font-size: 18px;
  font-weight: 640;
  text-transform: none;
}

.money-column-title strong {
  min-width: max-content;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 560;
}

.income-column {
  border-top: 4px solid var(--sage-ink);
}

.value-column {
  border-top: 4px solid #d4a91d;
}

.expense-column {
  border-top: 4px solid #9aa0ee;
}

.projection-column {
  border-top: 4px solid var(--blue);
}

.expense-plan-table {
  display: grid;
  font-size: 13px;
}

.expense-plan-row {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) 104px 80px 76px;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-top: 1px solid var(--line);
}

.expense-plan-row > span:first-child {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.expense-plan-row strong {
  font-weight: 560;
  text-align: right;
  white-space: nowrap;
}

.expense-plan-head {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.expense-plan-head span:not(:first-child) {
  text-align: right;
}

.expense-plan-totals {
  background: #f7f8fa;
  color: var(--muted);
  font-style: italic;
}

.expense-plan-input {
  width: 100%;
  min-width: 0;
  min-height: 30px;
  border-radius: 8px;
  padding: 0 8px;
  text-align: right;
  appearance: textfield;
  -moz-appearance: textfield;
}

.expense-plan-input::-webkit-inner-spin-button,
.expense-plan-input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.expense-plan-input::placeholder {
  color: var(--muted);
  opacity: 0.72;
}

.gst-note {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.gst-calculator-table {
  min-width: 900px;
  table-layout: fixed;
}

.gst-calculator-table tfoot td {
  position: sticky;
  bottom: 0;
  z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: #f7f8fa;
  color: var(--ink-strong);
  font-weight: 650;
}

.gst-calculator-table th:nth-child(1),
.gst-calculator-table td:nth-child(1) {
  width: 150px;
}

.gst-calculator-table th:nth-child(2),
.gst-calculator-table td:nth-child(2) {
  width: 86px;
  text-align: center;
}

.gst-projection-input {
  width: 140px;
  min-width: 0;
  min-height: 32px;
  border-radius: 8px;
  text-align: right;
  appearance: textfield;
  -moz-appearance: textfield;
}

.gst-projection-input::-webkit-inner-spin-button,
.gst-projection-input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.gst-paid-checkbox {
  width: 18px;
  min-width: 0;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--green);
}

.money-flow-panel {
  display: block;
  overflow: visible;
}

.money-flow-panel[hidden] {
  display: none;
}

.money-flow-panel .money-flow-heading {
  margin-bottom: 16px;
}

.money-flow-panel .money-flow-heading h3 {
  display: block;
}

.money-flow-heading select {
  min-width: 220px;
}

.money-flow-chart {
  display: block;
  min-width: 0;
  min-height: 420px;
}

.money-flow-chart-card {
  position: relative;
  display: block;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(247, 248, 250, 0.68), rgba(255, 255, 255, 0)),
    #ffffff;
  padding: 16px;
}

.chart-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 560;
}

.money-flow-chart svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 340px;
}

.chart-grid {
  stroke: var(--line);
  stroke-width: 1;
}

.chart-axis-label {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 560;
}

.chart-month-label {
  letter-spacing: 0.02em;
}

.chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.chart-line-income {
  stroke: #256b43;
}

.chart-line-expense {
  stroke: #6d73e6;
  stroke-dasharray: 8 7;
}

.chart-dot {
  fill: #ffffff;
  stroke-width: 2.25;
}

.chart-hit-dot {
  fill: transparent;
  cursor: default;
}

.chart-tooltip {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: 156px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 18, 22, 0.14);
  color: var(--ink);
  font-size: 12px;
  pointer-events: none;
}

.chart-tooltip[hidden] {
  display: none;
}

.chart-tooltip strong {
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 620;
}

.chart-tooltip span {
  color: var(--muted);
  white-space: nowrap;
}

.chart-dot-income {
  stroke: #256b43;
}

.chart-dot-expense {
  stroke: #6d73e6;
}

.category-chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.75;
  stroke-dasharray: 8 7;
}

.category-chart-dot {
  fill: #ffffff;
  stroke-width: 2.25;
}

.category-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  padding: 0 4px 6px;
  color: var(--muted);
  font-size: 12px;
}

.category-chart-legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.category-chart-legend i {
  width: 18px;
  height: 3px;
  border-radius: 999px;
}

.mini-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.mini-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mini-row strong {
  white-space: nowrap;
  font-weight: 560;
}

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

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.transaction-table {
  min-width: 1080px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.compact-income-table {
  min-width: 0;
  table-layout: fixed;
}

.compact-income-table th:first-child,
.compact-income-table td:first-child {
  width: 104px;
  white-space: nowrap;
}

.compact-income-table th:last-child,
.compact-income-table td:last-child {
  width: 104px;
}

.compact-income-table td,
.compact-income-table th {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

th {
  position: sticky;
  top: 0;
  background: #f7f8fa;
  color: #686d75;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.sort-button {
  min-height: auto;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  font-size: inherit;
  font-weight: inherit;
}

.sort-button:hover {
  background: transparent;
  color: var(--ink-strong);
}

td.amount {
  text-align: right;
  font-weight: 560;
  white-space: nowrap;
}

.transaction-table th:nth-child(1),
.transaction-table td:nth-child(1) {
  width: 110px;
  white-space: nowrap;
}

.transaction-table th:nth-child(2),
.transaction-table td:nth-child(2) {
  width: 38%;
}

.transaction-table th:nth-child(3),
.transaction-table td:nth-child(3) {
  width: 145px;
}

.transaction-table th:nth-child(4),
.transaction-table td:nth-child(4) {
  width: 170px;
}

.transaction-table th:nth-child(5),
.transaction-table td:nth-child(5) {
  width: 230px;
}

.transaction-table th:nth-child(6),
.transaction-table td:nth-child(6) {
  width: 110px;
}

.transaction-table td:nth-child(2),
.transaction-table td:nth-child(4),
.transaction-table td:nth-child(5) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transaction-table tbody tr {
  transition: background 120ms ease;
}

.transaction-table th,
.transaction-table td {
  border-bottom-color: var(--line);
}

.transaction-table tbody tr.transaction-expense td {
  background: #f8f8ff;
}

.transaction-table tbody tr.transaction-wage td {
  background: #f7fbf5;
}

.transaction-table tbody tr.transaction-additional td {
  background: #fffaf0;
}

.transaction-table tbody tr:hover td {
  background: #f4f6f8;
}

.type-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 2px 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-size: 12px;
  font-weight: 560;
  white-space: nowrap;
}

.transaction-category-select {
  width: 100%;
  min-width: 0;
  min-height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0 8px;
  font-size: 13px;
}

.transaction-category-select:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.72;
}

.notes-cell {
  color: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 1120px) {
  .app-shell {
    width: 100%;
    height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .kpi-grid,
  .income-split,
  .income-detail-grid,
  .monthly-money-grid,
  .monthly-account-layout,
  .yearly-account-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .app-shell {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .sidebar {
    position: static;
    height: auto;
    overflow: visible;
  }

  .source-note {
    position: static;
    margin-top: 18px;
  }

  main {
    height: auto;
    overflow: visible;
    padding: 22px;
  }

  .hero-panel,
  .panel-heading,
  .monthly-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    flex-wrap: wrap;
    border-radius: 22px;
  }

}
