:root {
  color-scheme: light;
  --ink: #17301d;
  --muted: #5b5b5b;
  --line: rgba(49, 93, 56, 0.18);
  --paper: #f5f0e7;
  --panel: #ffffff;
  --lilac: #6e9e5e;
  --violet: #315d38;
  --orchid: #315d38;
  --rose: #d6a022;
  --lavender: #f5f0e7;
  --sky: #6e9e5e;
  --sun: #ffd447;
  --gold: #d6a022;
  --gold-light: #f5d27a;
  --night: #050505;
  --shadow: 0 24px 60px rgba(49, 93, 56, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(110, 158, 94, 0.20), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(214, 160, 34, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(245, 240, 231, 0.92), rgba(250,250,248,0.72) 48%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.response-view,
.dashboard {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(49, 93, 56, 0.20);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.response-view {
  border-radius: 8px;
  padding: 28px;
}

.brand-row,
.dashboard-header,
.panel-title,
.form-actions,
.range-row {
  display: flex;
  align-items: center;
}

.brand-row {
  position: relative;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(214, 160, 34, 0.7);
  border-radius: 8px;
  color: white;
  background:
    radial-gradient(circle at 20% 120%, rgba(214, 160, 34, 0.28), transparent 34%),
    linear-gradient(135deg, #102615, #315d38 62%, #19351f);
  overflow: hidden;
}

.brand-row::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(245, 210, 122, 0.28);
  border-radius: 6px;
  pointer-events: none;
}

.brand-mark {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 12px);
  gap: 5px;
  align-items: end;
  width: 56px;
  height: 56px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 210, 122, 0.42);
  border-radius: 8px;
}

.brand-mark span {
  display: block;
  width: 12px;
  border-radius: 999px;
  background: var(--gold);
}

.brand-mark span:nth-child(1) {
  height: 18px;
}

.brand-mark span:nth-child(2) {
  height: 28px;
  background: white;
}

.brand-mark span:nth-child(3) {
  height: 22px;
  background: var(--gold-light);
}

.brand-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.brand-copy .eyebrow {
  color: var(--gold-light);
}

.brand-copy h1 {
  color: white;
  text-shadow: 0 10px 28px rgba(214, 160, 34, 0.28);
}

.brand-copy p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.author-avatar {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin-left: auto;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--orchid);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.9rem);
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 24px;
}

.checkin-panel,
.insight-panel,
.chart-panel,
.responses-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkin-panel {
  padding: 24px;
}

.section-heading {
  margin-bottom: 22px;
}

.lead-copy {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.access-note {
  display: inline-flex;
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(49, 93, 56, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 850;
  line-height: 1.4;
}

.daily-verse-card {
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(49, 93, 56, 0.30);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(23, 48, 29, 0.94), rgba(49, 93, 56, 0.86)),
    var(--ink);
  box-shadow: 0 16px 36px rgba(49, 93, 56, 0.20);
}

.daily-verse-card .eyebrow,
.daily-verse-card p {
  color: rgba(255, 255, 255, 0.82);
}

.daily-verse-card h3 {
  margin-bottom: 8px;
  color: white;
  font-size: 1.15rem;
  line-height: 1.35;
}

.daily-verse-card p:last-child {
  margin-bottom: 0;
  line-height: 1.55;
}

.signed-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.signed-card-header img {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(245, 210, 122, 0.78);
  border-radius: 50%;
  object-fit: cover;
}

.signed-card-header strong {
  display: block;
  color: inherit;
  font-weight: 900;
}
.mentor-signature {
  margin-top: 12px;
  color: rgba(245, 240, 231, 0.94) !important;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.share-daily-quote {
  margin-top: 14px;
  width: 100%;
  border: 1px solid rgba(245, 240, 231, 0.55);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--green-dark);
  background: var(--beige);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 48, 29, 0.20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.share-daily-quote:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(23, 48, 29, 0.28);
}


.daily-prompt {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(49, 93, 56, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 240, 231, 0.75), rgba(255, 255, 255, 0.9)),
    linear-gradient(315deg, rgba(110, 158, 94, 0.12), transparent);
}

#prompt-title {
  font-size: 1.2rem;
  line-height: 1.25;
}

#prompt-source {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.journey-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(49, 93, 56, 0.18);
  border-radius: 999px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.daily-inspiration {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--violet);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 760;
  line-height: 1.45;
}

.reflection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.reflection-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.reflection-field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.reflection-field textarea {
  min-height: 86px;
}

.mood-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.mood-guidance {
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgba(49, 93, 56, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 240, 231, 0.86)),
    white;
}

.mood-guidance h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.mood-guidance p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.mood-card {
  position: relative;
  display: grid;
  min-height: 172px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mood-card:has(input:checked) {
  border-color: var(--violet);
  box-shadow: 0 14px 28px rgba(49, 93, 56, 0.24);
  transform: translateY(-2px);
}

.mood-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.mood-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(49, 93, 56, 0.12);
}

.mood-title {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
}

.mood-copy {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.field-group {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.field-group > label {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
}

.range-row {
  gap: 14px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--violet);
}

output {
  display: grid;
  place-items: center;
  width: 42px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tag-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #ffffff;
}

.tag-grid input {
  accent-color: var(--violet);
}

textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #ffffff;
}

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

.primary-btn,
.secondary-btn,
.ghost-btn,
.icon-btn {
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.primary-btn {
  min-height: 50px;
  padding: 0 20px;
  color: white;
  background: linear-gradient(135deg, var(--violet), var(--orchid));
  box-shadow: 0 12px 22px rgba(49, 93, 56, 0.24);
}

.ghost-btn {
  min-height: 50px;
  padding: 0 18px;
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.secondary-btn {
  min-height: 48px;
  padding: 0 16px;
  color: white;
  background: var(--ink);
}

.insight-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
}

.visual-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  border-radius: 8px;
  background: #f5f0e7;
  overflow: hidden;
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.pulse-core {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(49, 93, 56, 0.12);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 35px rgba(49, 93, 56, 0.16);
}

.pulse-core strong {
  font-size: 2rem;
}

.pulse-core span,
.panel-title span,
.metric span {
  color: var(--muted);
  font-size: 0.82rem;
}

#care-message {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.image-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.image-tiles img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.dashboard {
  margin-top: 24px;
  padding: 24px;
  border-radius: 8px;
}

.growth-section {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(49, 93, 56, 0.20);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(23, 48, 29, 0.96), rgba(49, 93, 56, 0.88));
  color: white;
  box-shadow: var(--shadow);
}

.growth-section .eyebrow,
.growth-section p {
  color: rgba(255, 255, 255, 0.82);
}

.growth-heading {
  max-width: 850px;
  margin-bottom: 18px;
}

.growth-heading h2 {
  color: white;
}

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

.growth-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 250px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.book-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: start;
}

.book-card .secondary-btn {
  grid-column: 1 / -1;
}

.growth-cover {
  width: 100%;
  border: 1px solid rgba(245, 210, 122, 0.38);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.immersion-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(245, 210, 122, 0.32);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.growth-card h3 {
  color: white;
  font-size: 1.2rem;
}

.growth-card p {
  margin-bottom: 0;
  line-height: 1.55;
}

.growth-card .secondary-btn {
  align-self: flex-start;
  color: var(--ink);
  background: white;
}

.share-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(49, 93, 56, 0.20);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.share-copy p:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.share-form {
  display: grid;
  gap: 14px;
}

.share-form .field-group {
  margin-bottom: 0;
}

.share-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
}

.testimonial-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.testimonial-item {
  min-height: 128px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.testimonial-item p {
  color: var(--muted);
  line-height: 1.5;
}

.testimonial-item strong {
  color: var(--ink);
}

.creia-section {
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px solid rgba(49, 93, 56, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.creia-section h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(214, 160, 34, 0.52);
  border-radius: 8px;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(214, 160, 34, 0.22), transparent 26%),
    linear-gradient(135deg, #102615, #315d38);
  box-shadow: var(--shadow);
}

.contact-section .eyebrow {
  color: var(--gold-light);
}

.contact-section h2 {
  color: white;
}

.contact-section p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section .primary-btn {
  flex: 0 0 auto;
  color: var(--ink);
  background: linear-gradient(135deg, white, var(--gold-light));
}

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

.instagram-link,
.schedule-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(245, 210, 122, 0.46);
  border-radius: 8px;
  color: white;
  font-weight: 850;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.schedule-link {
  color: var(--ink);
  background: linear-gradient(135deg, white, var(--gold-light));
}

.dashboard-header {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.period-control {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 4px 8px 4px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.period-control span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.period-control select {
  min-width: 112px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 850;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-color: var(--line);
  background: white;
}

.icon-btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.metric {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.metric strong {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.report-summary {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(49, 93, 56, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(110, 158, 94, 0.16), rgba(255, 255, 255, 0.86));
}

.report-summary p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-bottom: 16px;
}

.chart-panel,
.responses-panel {
  padding: 16px;
}

.panel-title {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 190px;
}

.bar-item {
  display: grid;
  gap: 8px;
  align-items: end;
  min-width: 0;
}

.bar-track {
  display: flex;
  align-items: end;
  height: 145px;
  border-radius: 8px;
  background: #f5f0e7;
  overflow: hidden;
}

.bar-fill {
  width: 100%;
  min-height: 8px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--rose), var(--violet));
}

.bar-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.tag-list {
  display: grid;
  gap: 10px;
}

.tag-row {
  display: grid;
  grid-template-columns: minmax(92px, 0.7fr) 1fr 34px;
  align-items: center;
  gap: 10px;
}

.tag-meter {
  height: 9px;
  border-radius: 999px;
  background: #f5f0e7;
  overflow: hidden;
}

.tag-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--rose));
}

.response-list {
  display: grid;
  gap: 10px;
}

.response-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.response-score {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lavender);
  font-weight: 850;
}

.response-text strong {
  display: block;
}

.response-text span,
.response-date {
  color: var(--muted);
  font-size: 0.82rem;
}

.empty-state {
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--violet));
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.app-footer span,
.app-footer strong {
  font-weight: 800;
}

.app-footer small {
  font-size: 0.82rem;
  font-weight: 700;
}

.app-footer a {
  color: var(--violet);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero-grid,
  .analytics-grid,
  .growth-grid,
  .share-section,
  .testimonial-list {
    grid-template-columns: 1fr;
  }

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

  .mood-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .app-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .response-view,
  .dashboard,
  .checkin-panel,
  .insight-panel {
    padding: 16px;
  }

  .brand-row,
  .dashboard-header {
    align-items: flex-start;
  }

  .brand-row {
    display: grid;
    grid-template-columns: 56px 1fr;
  }

  .author-avatar {
    grid-column: 1 / -1;
    margin: 4px 0 0;
  }

  .dashboard-header {
    flex-direction: column;
  }

  .mood-options,
  .reflection-grid,
  .tag-grid,
  .report-summary,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .mood-card,
  .visual-card {
    min-height: auto;
  }

  .visual-card {
    min-height: 190px;
  }

  .visual-card img {
    min-height: 190px;
  }

  .response-item {
    grid-template-columns: 46px 1fr;
  }

  .response-date {
    grid-column: 2;
  }

  .app-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-branding {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .contact-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .book-card {
    grid-template-columns: 82px 1fr;
  }
}


/* === SINTA HOJE · CREIO identidade viva === */
:root {
  --ink: #17301d;
  --muted: #5b5b5b;
  --line: rgba(49, 93, 56, 0.18);
  --paper: #f5f0e7;
  --panel: #fffdf8;
  --violet: #315d38;
  --orchid: #315d38;
  --gold: #d6a022;
  --gold-light: #f5d27a;
  --green: #315d38;
  --green-soft: #6e9e5e;
  --cream: #f5f0e7;
  --shadow: 0 24px 60px rgba(49, 93, 56, 0.18);
}
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(110, 158, 94, 0.24), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(214, 160, 34, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(245, 240, 231, 0.9), rgba(255, 253, 248, 0.94)),
    var(--paper);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.35) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: soulLight 8s ease-in-out infinite;
}
@keyframes soulLight { 0%, 50% { transform: translateX(-110%);} 75%, 100% { transform: translateX(110%);} }
.response-view { border-radius: 28px; }
.brand-row {
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 100%, rgba(214, 160, 34, 0.25), transparent 35%),
    linear-gradient(135deg, #19351f, #315d38 58%, #102615);
}
.brand-row::after { border-radius: 20px; }
.brand-mark { border-radius: 18px; }
.checkin-panel, .insight-panel, .chart-panel, .responses-panel, .growth-card, .share-section, .contact-section, .dashboard, .creia-section {
  border-radius: 26px !important;
}
.primary-btn, .secondary-btn, .ghost-btn, .schedule-link, .instagram-link {
  border-radius: 999px !important;
}
.creio-welcome {
  position: relative;
  display: grid;
  grid-template-columns: 165px 1fr;
  align-items: center;
  gap: 18px;
  margin: -6px 0 26px;
  padding: 22px 24px;
  border: 1px solid rgba(49, 93, 56, .18);
  border-radius: 30px;
  background: linear-gradient(135deg, #fffdf8, #f5f0e7);
  box-shadow: 0 22px 45px rgba(49, 93, 56, .12);
  overflow: hidden;
}
.creio-welcome::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(110, 158, 94, .16);
}
.creio-buddy {
  position: relative;
  z-index: 1;
  width: 150px;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(49, 93, 56, .2));
  animation: creioFloat 3.8s ease-in-out infinite;
}
@keyframes creioFloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-8px);} }
.creio-dialogue {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 0 0 1px rgba(49, 93, 56, .1);
}
.creio-dialogue h2 { color: var(--green); }
.creio-quick-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.creio-quick-actions button {
  border: 1px solid rgba(49,93,56,.18);
  border-radius: 999px;
  background: #fff;
  padding: 10px 14px;
  color: var(--green);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.creio-quick-actions button:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(49,93,56,.12); }
.creio-live-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--green);
  font-weight: 900;
  font-size: .78rem;
}
.creio-live-badge span { width: 9px; height: 9px; border-radius: 50%; background: #6e9e5e; box-shadow: 0 0 0 0 rgba(110,158,94,.6); animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 70% { box-shadow: 0 0 0 10px rgba(110,158,94,0);} 100% { box-shadow: 0 0 0 0 rgba(110,158,94,0);} }
.creio-card-panel { padding: 26px; background: linear-gradient(135deg,#fffdf8,#f5f0e7); border: 1px solid rgba(49,93,56,.16); border-radius: 30px; }
.creio-panel-head { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.creio-panel-head img { width: 82px; height: 82px; border-radius: 50%; box-shadow: 0 12px 25px rgba(49,93,56,.18); }
.creio-principles-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 18px 0; }
.creio-principles-grid article { padding: 16px; border-radius: 20px; background: rgba(255,255,255,.7); border: 1px solid rgba(49,93,56,.12); }
.creio-principles-grid strong { display:block; color: var(--green); margin-bottom: 6px; }
.creio-principles-grid span { color: var(--muted); font-size: .92rem; line-height: 1.35; }
.creio-chatbox { display: grid; gap: 12px; min-height: 110px; max-height: 280px; overflow: auto; padding: 14px; border-radius: 22px; background: rgba(255,255,255,.62); border: 1px solid rgba(49,93,56,.12); }
.creio-message, .user-message { display:flex; gap:10px; align-items:flex-start; }
.creio-message img { width:42px; height:42px; border-radius:50%; flex:0 0 auto; }
.creio-message p, .user-message p { margin:0; padding:13px 15px; border-radius:18px; line-height:1.45; }
.creio-message p { background:#fff; color:var(--ink); border-top-left-radius:6px; }
.user-message { justify-content:flex-end; }
.user-message p { background:var(--green); color:#fff; border-top-right-radius:6px; }
.creio-input-row { display:flex; gap:10px; margin-top:12px; }
.creio-input-row input { flex:1; padding:14px 16px; border-radius:999px; border:1px solid rgba(49,93,56,.18); background:#fff; }
.creio-input-row .primary-btn { flex:0 0 auto; border-radius:999px; padding:14px 22px; }
.creio-topics { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.creio-topics button { padding:9px 16px; border-radius:999px; border:1px solid rgba(49,93,56,.22); background:rgba(255,255,255,.8); color:var(--ink); font-size:.88rem; font-weight:700; cursor:pointer; transition:background .18s, color .18s; }
.creio-topics button:hover { background:var(--green); color:#fff; border-color:var(--green); }
.creio-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px 9px 9px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #315d38, #17301d);
  box-shadow: 0 18px 45px rgba(49,93,56,.36);
  animation: creioPulse 2.4s infinite;
}
.creio-floating img { width: 44px; height: 44px; border-radius: 50%; background:#fff; }
.creio-floating span { font-weight:900; letter-spacing:.04em; }
@keyframes creioPulse { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-4px);} }
.onboarding-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23,48,29,.62);
  backdrop-filter: blur(12px);
}
.onboarding-backdrop[hidden] { display: none; }
.onboarding-card {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 32px;
  background: #fffdf8;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.onboarding-card > img { width: 130px; height: 160px; object-fit: contain; margin-top:-20px; animation: creioFloat 3.8s ease-in-out infinite; }
.onboarding-card form { display:grid; gap:10px; text-align:left; margin-top:18px; }
.onboarding-card input { padding:14px 16px; border-radius:18px; border:1px solid rgba(49,93,56,.18); }
.signed-card-header img { object-fit: cover; }

.mood-card, .growth-card, .metric, .testimonial-item, .response-item { transition: transform .2s ease, box-shadow .2s ease; }
.mood-card:hover, .growth-card:hover, .metric:hover, .testimonial-item:hover, .response-item:hover { transform: translateY(-3px); box-shadow: 0 16px 35px rgba(49,93,56,.1); }
.bar-fill { transition: height .8s ease; }
@media (max-width: 820px) {
  .creio-welcome { grid-template-columns: 1fr; text-align: center; }
  .creio-buddy { margin: 0 auto; }
  .creio-principles-grid { grid-template-columns: 1fr; }
  .creio-input-row { flex-direction: column; }
}

.company-diagnostic {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(49,93,56,.16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245,240,231,.82), rgba(255,255,255,.78));
}
.company-diagnostic-head h3 { margin: 4px 0 8px; color: var(--green); }
.company-diagnostic-head p { margin: 0 0 14px; color: var(--muted); line-height: 1.5; }
.company-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.company-field { display: grid; gap: 7px; }
.company-field label { font-weight: 800; color: var(--ink); }
.company-field textarea { width: 100%; resize: vertical; border-radius: 16px; border: 1px solid rgba(49,93,56,.18); padding: 12px; font: inherit; background: rgba(255,255,255,.88); }
.creio-message.typing p { color: var(--muted); font-style: italic; }
.creio-contact-card { margin-left:52px; display:flex; gap:10px; flex-wrap:wrap; align-items:center; padding:12px; border-radius:18px; background:rgba(245,240,231,.85); border:1px solid rgba(49,93,56,.12); }
.creio-contact-card a { text-decoration:none; font-weight:800; padding:10px 12px; border-radius:999px; color:white; background:var(--green); }
.creio-contact-card a.secondary { background:transparent; color:var(--green); border:1px solid rgba(49,93,56,.25); }
@media (max-width: 820px) { .company-grid { grid-template-columns: 1fr; } .creio-contact-card { margin-left:0; } }


/* Música oficial do app */
.music-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  border: 1px solid rgba(214, 160, 34, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(49, 93, 56, 0.18);
  backdrop-filter: blur(16px);
}

.music-widget button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #315D38, #6E9E5E);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(49, 93, 56, 0.24);
}

.music-widget small {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.music-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #315D38;
  background: #F5F0E7;
  animation: musicPulse 1.8s ease-in-out infinite;
}

.music-widget.is-playing .music-icon {
  animation: musicSpin 2.4s linear infinite;
}

.nr1-disclaimer {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid #315D38;
  border-radius: 8px;
  color: #315D38;
  background: rgba(245, 240, 231, 0.82);
  font-size: 0.94rem;
  line-height: 1.5;
}

@keyframes musicPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes musicSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .music-widget {
    left: 12px;
    right: 12px;
    bottom: 84px;
    justify-content: space-between;
    border-radius: 18px;
  }

  .music-widget small {
    max-width: 44%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Ajustes de cadastro e experiência */
.optional-field { color: var(--muted); font-size: .86em; font-weight: 600; }
.consent-line { display: flex; align-items: flex-start; gap: 10px; margin: 10px 0 14px; color: var(--muted); font-size: .92rem; line-height: 1.35; }
.consent-line input { width: auto; margin-top: 3px; }
.music-widget::before { content: "Ligue o som"; position: absolute; left: 12px; bottom: calc(100% + 8px); padding: 7px 10px; border-radius: 999px; background: #315D38; color: #fff; font-weight: 800; font-size: .78rem; box-shadow: 0 10px 22px rgba(49,93,56,.22); animation: soundHint 1.9s ease-in-out infinite; }
.music-widget.is-playing::before { display:none; }
@keyframes soundHint { 0%,100%{ transform: translateY(0); opacity:.92;} 50%{ transform: translateY(-4px); opacity:1;} }

#demo-fill { display: none !important; }


/* Ajuste final da paleta SINTA HOJE: verde, bege, branco e dourado. */
:root {
  --lilac: #6E9E5E;
  --violet: #315D38;
  --orchid: #315D38;
  --lavender: #F5F0E7;
  --rose: #D6A022;
  --sky: #6E9E5E;
}
.creio-quick-actions button,
.company-field,
.daily-verse-card,
.daily-prompt,
.mood-card,
.growth-card,
.response-item,
.testimonial-item {
  border-color: rgba(49,93,56,.18) !important;
}

/* Ajustes CREIO simplificado + enquete do perdão */
.forgiveness-poll {
  margin: 1.25rem 0;
  padding: 1.25rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(245, 240, 231, 0.96), rgba(250, 250, 248, 0.92));
  border: 1px solid rgba(49, 93, 56, 0.16);
  box-shadow: 0 18px 44px rgba(49, 93, 56, 0.10);
  display: grid;
  gap: 1rem;
}
.poll-copy h2 { margin: .15rem 0 .35rem; }
.poll-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.poll-actions button {
  border: 1px solid rgba(49, 93, 56, .22);
  border-radius: 18px;
  padding: .9rem .75rem;
  background: #FAFAF8;
  color: #315D38;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(49, 93, 56, .08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.poll-actions button:hover,
.poll-actions button.is-selected {
  transform: translateY(-2px);
  background: rgba(110, 158, 94, .16);
  border-color: rgba(49, 93, 56, .46);
}
.poll-result {
  margin: 0;
  color: #315D38;
  font-weight: 700;
}
.simplified-creio .creio-panel-head { align-items: flex-start; }
.creio-message-form { display: grid; gap: 1rem; margin-top: 1rem; }
@media (max-width: 720px) {
  .poll-actions { grid-template-columns: 1fr; }
}

/* Boas-vindas SINTA HOJE */
.welcome-note {
  margin: 22px 0;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(245,240,231,.98), rgba(250,250,248,.94));
  border: 1px solid rgba(49, 93, 56, .16);
  box-shadow: 0 18px 45px rgba(49, 93, 56, .12);
  color: #315D38;
  animation: gentleEntrance .7s ease both;
}
.welcome-note h2 {
  margin: 4px 0 12px;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  color: #315D38;
}
.welcome-note p {
  margin: 0 0 10px;
  color: #4d5a4d;
  line-height: 1.65;
}
.welcome-note strong {
  display: inline-block;
  margin-top: 6px;
  color: #315D38;
  font-size: 1.02rem;
}


.legal-consent-box {
  background: rgba(49, 93, 56, 0.08);
  border: 1px solid rgba(49, 93, 56, 0.18);
  border-radius: 18px;
  padding: 14px;
  margin: 14px 0;
}
.legal-consent-box p {
  margin: 0 0 10px;
  color: #315D38;
  font-weight: 600;
  line-height: 1.45;
}
.legal-open-btn {
  width: 100%;
}
.legal-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 31, 19, 0.72);
  display: grid;
  place-items: center;
  padding: 18px;
}
.legal-modal-backdrop[hidden] { display: none; }
.legal-modal-card {
  width: min(760px, 100%);
  max-height: min(86vh, 760px);
  overflow: hidden;
  background: #FAFAF8;
  color: #263128;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  border: 1px solid rgba(49,93,56,.18);
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.legal-modal-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(49,93,56,.16);
  padding-bottom: 12px;
}
.legal-modal-header h2 { margin: 0; color: #315D38; }
.legal-close-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(49,93,56,.18);
  background: #F5F0E7;
  color: #315D38;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.legal-docs-content {
  overflow: auto;
  padding: 16px 4px;
  line-height: 1.6;
}
.legal-docs-content h3 {
  color: #315D38;
  margin: 18px 0 8px;
}
.legal-docs-content p {
  margin: 0 0 10px;
}

.legal-open-btn.is-accepted {
  border-color: rgba(49, 93, 56, 0.35);
  background: rgba(110, 158, 94, 0.14);
  color: #315D38;
  font-weight: 800;
}

.legal-modal-card .primary-btn {
  position: sticky;
  bottom: 0;
  width: 100%;
  margin-top: 16px;
}

/* Ajuste profissional da tela inicial/cadastro: mais compacta e responsiva */
.onboarding-backdrop {
  align-items: start;
  overflow-y: auto;
  padding: 12px;
}

.onboarding-card {
  width: min(520px, 100%);
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  padding: 18px 22px 16px;
  border-radius: 26px;
  scrollbar-width: thin;
}

.onboarding-card > img {
  width: 86px;
  height: 106px;
  margin: -10px auto -2px;
}

.onboarding-card .eyebrow {
  margin-bottom: 2px;
  font-size: 0.68rem;
}

.onboarding-card h2 {
  margin: 0 0 6px;
  font-size: clamp(1.45rem, 4.2vw, 2.05rem);
  line-height: 1.02;
}

.onboarding-card > p {
  max-width: 430px;
  margin: 0 auto 10px;
  font-size: 0.95rem;
  line-height: 1.28;
}

.onboarding-card form {
  gap: 7px;
  margin-top: 10px;
}

.onboarding-card label:not(.consent-line) {
  font-size: 0.92rem;
  font-weight: 750;
}

.onboarding-card input {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 16px;
}

.legal-consent-box {
  margin: 8px 0 6px;
  padding: 11px 12px;
  border-radius: 16px;
}

.legal-consent-box p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.32;
}

.legal-open-btn {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 16px;
}

.consent-line {
  margin: 2px 0 4px;
  font-size: 0.86rem;
  line-height: 1.22;
}

#profile-form .primary-btn {
  position: sticky;
  bottom: 0;
  z-index: 2;
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  box-shadow: 0 -8px 22px rgba(255, 253, 248, 0.92), 0 12px 26px rgba(49, 93, 56, 0.20);
}

@media (max-height: 760px) {
  .onboarding-card { padding: 14px 20px 12px; }
  .onboarding-card > img { width: 70px; height: 86px; margin-top: -8px; }
  .onboarding-card h2 { font-size: 1.6rem; }
  .onboarding-card > p { font-size: 0.88rem; line-height: 1.2; margin-bottom: 8px; }
  .onboarding-card form { gap: 5px; margin-top: 8px; }
  .onboarding-card input { min-height: 40px; padding: 9px 12px; }
  .legal-consent-box { padding: 9px 10px; margin: 6px 0 4px; }
  .legal-consent-box p { font-size: 0.84rem; line-height: 1.22; }
  .consent-line { font-size: 0.8rem; }
  #profile-form .primary-btn { min-height: 44px; }
}

@media (max-width: 520px) {
  .onboarding-backdrop { padding: 8px; }
  .onboarding-card {
    max-height: calc(100vh - 16px);
    padding: 14px 16px 12px;
    border-radius: 22px;
  }
  .onboarding-card > img { width: 68px; height: 84px; }
  .onboarding-card > p { font-size: 0.86rem; }
}


.daily-quote-animated {
  animation: quoteBreath 4.8s ease-in-out infinite;
}

@keyframes quoteBreath {
  0%, 100% { transform: translateY(0); opacity: .88; }
  50% { transform: translateY(-2px); opacity: 1; }
}

.digital-signature {
  display: inline-block;
  margin-top: 14px;
  color: #f5f0e7 !important;
  font-family: "Brush Script MT", "Segoe Script", "Snell Roundhand", cursive;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
  text-shadow: 0 6px 18px rgba(0,0,0,.26);
  animation: signatureDraw .9s ease both;
}

@keyframes signatureDraw {
  from { opacity: 0; transform: translateX(-8px) scale(.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.daily-quote-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.daily-quote-actions .share-daily-quote {
  margin-top: 0;
}

.reminder-btn {
  background: #f5f0e7;
}

.quote-archive {
  margin-top: 12px;
  border-top: 1px solid rgba(245,240,231,.28);
  padding-top: 10px;
  color: rgba(255,255,255,.88);
}

.quote-archive summary {
  cursor: pointer;
  font-weight: 900;
}

#daily-quote-archive {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.archive-quote-item {
  padding: 10px;
  border: 1px solid rgba(245,240,231,.25);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  line-height: 1.45;
}

.archive-quote-item small {
  display: block;
  color: rgba(255,255,255,.70);
  margin-bottom: 4px;
  font-weight: 800;
}
