/* [project]/app/globals.css [app-client] (css) */
:root {
  --ink: #17221d;
  --muted: #64736b;
  --surface: #fff;
  --canvas: #f3f6f2;
  --line: #dce4df;
  --brand: #146b45;
  --brand-dark: #0d4e32;
  --danger: #a33131;
}

* {
  box-sizing: border-box;
}

html {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

body {
  background: var(--canvas);
  color: var(--ink);
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

button, .button {
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: .65rem;
  justify-content: center;
  padding: .75rem 1rem;
  text-decoration: none;
  display: inline-flex;
}

button:hover, .button:hover {
  background: var(--brand-dark);
}

button:focus-visible, input:focus-visible, select:focus-visible, a:focus-visible {
  outline-offset: 2px;
  outline: 3px solid #65b58f;
}

label {
  gap: .35rem;
  font-weight: 600;
  display: grid;
}

input, select, textarea {
  background: #fff;
  border: 1px solid #aebbb4;
  border-radius: .55rem;
  width: 100%;
  min-height: 2.75rem;
  padding: .6rem .7rem;
}

textarea {
  resize: vertical;
  min-height: 7rem;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  color: #fff;
  background: #10271c;
}

.site-header .shell {
  justify-content: space-between;
  align-items: center;
  min-height: 4rem;
  display: flex;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.nav form {
  margin: 0;
}

.nav button {
  background: none;
  padding: .4rem;
}

.main {
  padding-block: 2.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 24px #10271c0d;
}

.auth-card {
  max-width: 420px;
  margin: 8vh auto;
}

.stack {
  gap: 1rem;
  display: grid;
}

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

.exercise-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  display: grid;
}

.exercise-card {
  padding: 0;
  overflow: hidden;
}

.exercise-card > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.exercise-card > div {
  padding: 1.25rem;
}

.compact {
  gap: .5rem;
}

.compact > * {
  margin-block: 0;
}

.inline-actions, .page-heading {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .65rem;
  display: flex;
}

.inline-actions form {
  flex: 1;
}

.inline-actions button {
  width: 100%;
}

.secondary {
  color: var(--brand-dark);
  background: #e7eee9;
}

.secondary:hover {
  background: #d3e1d8;
}

.filter-grid, .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.filter-grid {
  grid-template-columns: 2fr repeat(4, 1fr);
  align-items: end;
}

.filter-search {
  grid-column: span 2;
}

.form-wide {
  grid-column: 1 / -1;
}

.check {
  align-items: center;
  min-height: 2.75rem;
  font-weight: 500;
  display: flex;
}

.check input {
  width: auto;
  min-height: auto;
}

.detail-layout {
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  align-items: start;
  gap: 1.5rem;
  display: grid;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 1rem;
  overflow: hidden;
}

.video-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.prose p {
  white-space: pre-line;
}

.lead {
  font-size: 1.15rem;
}

.table-scroll {
  overflow-x: auto;
}

.status {
  border-radius: 999px;
  padding: .25rem .55rem;
  font-size: .75rem;
  font-weight: 800;
  display: inline-block;
}

.status-published {
  color: #0d5b36;
  background: #dff2e7;
}

.status-draft {
  background: #e8ecea;
}

.status-in_review {
  color: #725100;
  background: #fff1c9;
}

.video-row {
  border-top: 1px solid var(--line);
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
  display: grid;
}

.video-row img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 120px;
}

.error-list {
  color: var(--danger);
  padding-left: 1.2rem;
}

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

.message {
  border-radius: .5rem;
  padding: .75rem;
}

.message.error {
  color: var(--danger);
  background: #f9e6e6;
}

.message.success {
  color: var(--brand-dark);
  background: #e4f4eb;
}

.eyebrow {
  color: var(--brand);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 800;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: .75rem;
}

@media (max-width: 820px) {
  .filter-grid, .form-grid, .detail-layout {
    grid-template-columns: 1fr;
  }

  .filter-search, .form-wide {
    grid-column: auto;
  }

  .video-row {
    grid-template-columns: 90px 1fr;
  }

  .video-row form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .nav a:not(:last-child) {
    display: none;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/