/* =========================================================
   QuoteWall (super simple)
   - thin light-blue background
   - IBM Plex Sans
   - quotes styled nicely, attribution smaller but clear
   - optional "me:" note, quieter + blended
   ========================================================= */

:root{
  --bg: #8BDDFD;          /* thin light blue */
  --ink: #0e1a24;         /* main text */
  --muted: rgba(14, 26, 36, 0.62);
  --soft: rgba(14, 26, 36, 0.14);

  --card: rgba(255, 255, 255, 0.55);
  --card-border: rgba(14, 26, 36, 0.12);
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

body{
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

/* Layout */
.wrap{
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 18px;
}

/* Header */
.hero{
  border-bottom: 1px solid var(--soft);
}

.kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.title{
  margin: 0;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.subtitle{
  margin: 12px 0 0;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

/* Quotes list */
.quotes{
  display: grid;
  gap: 16px;
  padding-top: 10px;
}

/* Quote card */
.quote-card{
  margin: 0;
  padding: 18px 18px 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
}

/* The quote itself */
.quote-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Attribution */
.quote-meta{
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.author{
  font-weight: 700; /* makes attribution easy to see */
}

.source{
  font-weight: 400;
}

/* Your note (quiet, blended) */
.my-note{
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(14, 26, 36, 0.18);

  font-size: 13px;
  line-height: 1.55;
  color: rgba(14, 26, 36, 0.52);
}

.my-note-label{
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: rgba(14, 26, 36, 0.58);
}

/* Footer */
.footer{
  padding-top: 10px;
  border-top: 1px solid var(--soft);
}

.footer-text{
  margin: 0;
  text-align: center;
  color: rgba(14, 26, 36, 0.45);
}

