:root {
  color-scheme: light;
  --paper: #f6f1e8;
  --paper-2: #e8e1d5;
  --ink: #111111;
  --muted: #625c53;
  --quiet: #8b8277;
  --line: #d5ccbd;
  --panel: #fffdf7;
  --charcoal: #111111;
  --accent: #ff6e00;
  --accent-strong: #d90000;
  --aizle-red: #f70000;
  --aizle-blue: #0f4fff;
  --aizle-violet: #7300f0;
  --aizle-green: #00a844;
  --aizle-yellow: #ffc400;
  --blue: #0f4fff;
  --green: #00a844;
  --yellow: #ffc400;
  --gold-metal: #9a6500;
  --silver-metal: #69737d;
  --bronze-metal: #af5f22;
  --focus: #0f4fff;
  --shadow-pop: 0 24px 52px rgba(17, 17, 17, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus,
select:focus {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 2px solid var(--charcoal);
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  background: var(--charcoal);
  color: white;
  font-size: 0.9rem;
  box-shadow:
    4px 4px 0 var(--accent),
    -4px -4px 0 var(--aizle-blue);
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--aizle-blue);
}

.nav .year-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.sticky-clear {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--accent-strong);
  background: var(--accent-strong);
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--aizle-yellow);
}

.sticky-clear[hidden] {
  display: none;
}

main {
  width: min(1520px, 100%);
  margin: 0 auto;
}

.archive-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.85fr);
  grid-template-areas:
    "copy stats"
    "copy tools";
  gap: 1px;
  min-height: clamp(500px, 66vh, 620px);
  border-bottom: 2px solid var(--charcoal);
  background: var(--charcoal);
}

.archive-copy,
.archive-tools,
.archive-stats {
  min-width: 0;
  background: var(--paper);
}

.archive-copy {
  grid-area: copy;
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 20px clamp(24px, 4.4vw, 52px) clamp(24px, 4.4vw, 52px);
}

.archive-copy::before {
  content: "";
  display: block;
  width: min(420px, 72%);
  height: 8px;
  margin-bottom: clamp(10px, 2vw, 24px);
  background: linear-gradient(
    90deg,
    var(--aizle-blue) 0 18%,
    var(--accent-strong) 18% 36%,
    var(--aizle-violet) 36% 54%,
    var(--accent) 54% 72%,
    var(--aizle-green) 72% 88%,
    var(--aizle-yellow) 88% 100%
  );
}

.archive-tools {
  grid-area: tools;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(20px, 4vw, 44px);
}

.archive-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1fr);
  gap: 1px;
  align-self: stretch;
  background: var(--charcoal);
}

.archive-stats > * {
  background: var(--paper);
  padding: 20px clamp(16px, 3vw, 28px);
}

.archive-stats .stat-main {
  background: var(--charcoal);
  color: white;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5.2vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.03rem;
  line-height: 1.2;
}

.lede {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
select,
.clear-button {
  min-height: 46px;
  border: 1px solid var(--charcoal);
  border-radius: 0;
  background: var(--panel);
  color: var(--ink);
}

input:focus,
select:focus {
  border-color: var(--aizle-blue);
}

input,
select {
  width: 100%;
  padding: 0 13px;
}

#searchInput {
  min-height: 58px;
  font-size: 1.05rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(94px, 0.25fr);
  gap: 10px;
}

.clear-button {
  align-self: end;
  color: var(--accent);
  font-weight: 900;
}

.clear-button:hover {
  background: var(--accent);
  color: var(--ink);
}

.stat-main {
  display: grid;
  gap: 8px;
}

.stat-main strong {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.85;
}

.stat-main span,
.result-count,
.meta,
.card-footer,
.source-card small {
  color: var(--muted);
}

.archive-stats .stat-main span {
  color: rgba(255, 255, 255, 0.74);
}

.tier-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--charcoal);
  padding: 0;
}

.tier-stats div {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 88px;
  padding: 14px;
  background: var(--paper);
}

.tier-stats div:nth-child(1) {
  background: #fffaf0;
}

.tier-stats div:nth-child(2) {
  background: #fff2cc;
}

.tier-stats div:nth-child(3) {
  background: #eef3f6;
}

.tier-stats div:nth-child(4) {
  background: #f7e4d5;
}

.tier-stats strong {
  font-size: 2rem;
  line-height: 1;
}

.tier-stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.work-section,
.pattern-section,
.source-section {
  padding: clamp(30px, 5vw, 64px) clamp(18px, 4vw, 48px);
  border-bottom: 2px solid var(--charcoal);
}

.work-card:hover {
  border-color: var(--charcoal);
  box-shadow: var(--shadow-pop);
  transform: translateY(-8px) scale(1.025) rotate(-1.2deg);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.inline-clear {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  font-size: inherit;
  line-height: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.inline-clear[hidden] {
  display: none;
}

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

.work-card {
  display: grid;
  align-content: start;
  gap: 14px;
  grid-template-rows: auto auto auto auto auto auto auto;
  min-height: 470px;
  padding: 0;
  border: 1px solid var(--charcoal);
  background: var(--panel);
  cursor: pointer;
  overflow: hidden;
  transform-origin: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.work-card.is-model {
  background: #fff9e9;
  box-shadow: inset 0 0 0 4px rgba(255, 196, 0, 0.24);
}

.work-card:nth-child(6n + 1):hover {
  box-shadow: 10px 10px 0 var(--aizle-blue), var(--shadow-pop);
}

.work-card:nth-child(6n + 2):hover {
  box-shadow: 10px 10px 0 var(--accent), var(--shadow-pop);
  transform: translateY(-8px) scale(1.025) rotate(1.2deg);
}

.work-card:nth-child(6n + 3):hover {
  box-shadow: 10px 10px 0 var(--aizle-violet), var(--shadow-pop);
}

.work-card:nth-child(6n + 4):hover {
  box-shadow: 10px 10px 0 var(--aizle-green), var(--shadow-pop);
  transform: translateY(-8px) scale(1.025) rotate(1deg);
}

.work-card:nth-child(6n + 5):hover {
  box-shadow: 10px 10px 0 var(--accent-strong), var(--shadow-pop);
}

.work-card:nth-child(6n + 6):hover {
  box-shadow: 10px 10px 0 var(--aizle-yellow), var(--shadow-pop);
  transform: translateY(-8px) scale(1.025) rotate(1.2deg);
}

.work-card > :not(.media-panel) {
  margin-inline: 18px;
}

.work-card .card-footer {
  margin-bottom: 18px;
}

.media-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  overflow: hidden;
  background: var(--charcoal);
  color: white;
  text-decoration: none;
}

.media-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-card:hover .media-panel img {
  opacity: 0.92;
  transform: scale(1.03);
}

.media-panel.source-only {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(15, 79, 255, 0.82), rgba(255, 110, 0, 0.72)),
    var(--charcoal);
}

.media-initials {
  color: rgba(255, 255, 255, 0.78);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.64);
  color: white;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(6px);
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.work-card:hover .play-badge,
.media-panel:hover .play-badge {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}

.card-top,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
}

.card-top > span:last-child {
  color: var(--muted);
  font-weight: 800;
}

.card-category {
  margin-top: -4px;
}

.work-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.work-card p {
  margin-bottom: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-button {
  width: fit-content;
  padding: 4px 7px;
  border: 1px solid var(--charcoal);
  background: var(--panel);
  color: var(--ink);
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 800;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.tag-button:hover {
  background: var(--aizle-blue);
  color: white;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 var(--aizle-yellow);
}

.tag-list .tag-button:nth-child(4n + 2):hover,
.source-tags .tag-button:nth-child(4n + 2):hover {
  background: var(--accent);
  color: var(--ink);
}

.tag-list .tag-button:nth-child(4n + 3):hover,
.source-tags .tag-button:nth-child(4n + 3):hover {
  background: var(--aizle-violet);
}

.tag-list .tag-button:nth-child(4n + 4):hover,
.source-tags .tag-button:nth-child(4n + 4):hover {
  background: var(--aizle-green);
  color: var(--ink);
}

.card-top .tag-button,
.tier-stats .tag-button {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

.card-top .award-grand-prix,
.tier-stats .award-grand-prix {
  background: #050505;
  border-color: #050505;
  color: white;
}

.card-top .award-gold,
.tier-stats .award-gold {
  background: var(--gold-metal);
  border-color: var(--gold-metal);
  color: white;
}

.card-top .award-silver,
.tier-stats .award-silver {
  background: var(--silver-metal);
  border-color: var(--silver-metal);
  color: white;
}

.card-top .award-bronze,
.tier-stats .award-bronze {
  background: var(--bronze-metal);
  border-color: var(--bronze-metal);
  color: white;
}

.category-tag {
  max-width: 100%;
  border-color: var(--aizle-violet);
  color: var(--aizle-violet);
}

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

.research-marker {
  width: fit-content;
  padding: 3px 7px;
  border: 1px solid var(--aizle-green);
  color: var(--aizle-green);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-meta .tag-button {
  padding: 6px 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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

.pattern-card {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--charcoal);
  border-top-width: 8px;
  background: var(--panel);
}

.pattern-card:nth-child(6n + 1) {
  border-top-color: var(--aizle-blue);
}

.pattern-card:nth-child(6n + 2) {
  border-top-color: var(--accent);
}

.pattern-card:nth-child(6n + 3) {
  border-top-color: var(--aizle-violet);
}

.pattern-card:nth-child(6n + 4) {
  border-top-color: var(--aizle-green);
}

.pattern-card:nth-child(6n + 5) {
  border-top-color: var(--accent-strong);
}

.pattern-card:nth-child(6n + 6) {
  border-top-color: var(--aizle-yellow);
}

.pattern-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
}

.source-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--charcoal);
  background: var(--panel);
}

.source-card:nth-child(4n + 1) {
  box-shadow: inset 5px 0 0 var(--aizle-blue);
}

.source-card:nth-child(4n + 2) {
  box-shadow: inset 5px 0 0 var(--accent);
}

.source-card:nth-child(4n + 3) {
  box-shadow: inset 5px 0 0 var(--aizle-violet);
}

.source-card:nth-child(4n + 4) {
  box-shadow: inset 5px 0 0 var(--aizle-green);
}

.source-card span {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.source-card a {
  font-weight: 800;
}

.profile-dialog {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 24px));
  max-width: none;
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  overflow: auto;
  margin: 0;
  padding: 0;
  border: 2px solid var(--charcoal);
  background: var(--paper);
  color: var(--ink);
  overscroll-behavior: contain;
}

.profile-dialog #dialogContent {
  min-width: 0;
  padding-top: 42px;
}

.profile-dialog::backdrop {
  background: rgba(20, 20, 18, 0.7);
}

.close-button {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: max-content;
  min-height: 42px;
  margin-left: auto;
  margin-bottom: -42px;
  padding: 0 14px;
  border: 0;
  background: var(--accent-strong);
  color: white;
  box-shadow: 5px 5px 0 var(--aizle-yellow), 0 10px 24px rgba(20, 20, 18, 0.18);
  font-weight: 900;
}

.close-button:hover {
  background: var(--charcoal);
}

.profile-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(24px, 5vw, 54px);
  border-bottom: 2px solid var(--charcoal);
  background: var(--panel);
}

.profile-hero h2 {
  max-width: 920px;
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 5.2rem);
}

.profile-hero p {
  max-width: 980px;
  color: var(--muted);
  font-size: 1.05rem;
}

.profile-hero-copy {
  min-width: 0;
}

.profile-video-full {
  width: 100%;
}

.profile-video-full .media-panel,
.video-embed {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--charcoal);
  background: var(--charcoal);
}

.profile-video-full .media-panel img {
  min-height: 0;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.profile-anchor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.profile-anchor-row a {
  padding: 6px 9px;
  border: 1px solid var(--charcoal);
  background: var(--panel);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.profile-anchor-row a:hover {
  background: var(--aizle-blue);
  color: white;
}

.profile-page-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  text-underline-offset: 0.16em;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1px;
  min-width: 0;
  background: var(--charcoal);
}

.profile-main,
.profile-side {
  display: grid;
  align-content: start;
  gap: 1px;
  min-width: 0;
  background: var(--charcoal);
}

.profile-block,
.profile-side section {
  min-width: 0;
  padding: 24px;
  background: var(--paper);
}

.profile-block:nth-child(4n + 1) {
  box-shadow: inset 5px 0 0 var(--aizle-blue);
}

.profile-block:nth-child(4n + 2) {
  box-shadow: inset 5px 0 0 var(--accent);
}

.profile-block:nth-child(4n + 3) {
  box-shadow: inset 5px 0 0 var(--aizle-violet);
}

.profile-block:nth-child(4n + 4) {
  box-shadow: inset 5px 0 0 var(--aizle-green);
}

.profile-block p,
.profile-side p,
td {
  color: var(--muted);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--charcoal);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--panel);
}

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

th {
  color: var(--accent-strong);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.source-trail {
  display: grid;
  gap: 8px;
}

.source-row {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
}

.source-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

li + li {
  margin-top: 8px;
}

.error {
  color: var(--accent);
}

@media (max-width: 1080px) {
  .archive-panel,
  .profile-hero,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .archive-panel {
    grid-template-areas:
      "copy"
      "stats"
      "tools";
    min-height: 0;
  }

  .archive-stats {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    gap: 14px;
    padding-inline: 16px;
  }

  .nav {
    flex-wrap: wrap;
  }

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

  .archive-copy {
    gap: 12px;
    padding: 20px;
  }

  .archive-copy .lede {
    display: none;
  }

  .archive-tools {
    gap: 12px;
    padding: 16px 20px 20px;
  }

  .filter-grid {
    grid-template-columns: minmax(0, 1fr) 86px;
  }

  .archive-stats > * {
    padding: 14px 20px;
  }

  .stat-main {
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 10px;
  }

  .stat-main strong {
    font-size: 2.55rem;
  }

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

  .tier-stats div {
    min-height: 64px;
    padding: 10px;
  }

  .tier-stats strong {
    font-size: 1.55rem;
  }

  .work-grid,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .profile-dialog {
    top: 6px;
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
  }

  .profile-dialog #dialogContent {
    padding-top: 38px;
  }

  .close-button {
    min-height: 38px;
    margin-bottom: -38px;
    padding: 0 11px;
  }

  .media-panel {
    min-height: 210px;
  }
}

/* Study Aids (interpretation layer) */
.study-aids { border-top: 2px solid rgba(0, 0, 0, 0.12); }
.study-aids h4 { margin: 1.1rem 0 0.35rem; font-size: 0.95rem; letter-spacing: 0.01em; }
.study-aids-note { font-size: 0.8rem; opacity: 0.65; font-style: italic; margin-top: 0.15rem; }
.lever-row { display: flex; align-items: baseline; gap: 0.5rem; margin: 0.3rem 0; }
.lever-row span { font-size: 0.92rem; }
.thought-starters { padding-left: 1.2rem; }
.thought-starters li { margin: 0.35rem 0; }
.compare-notes { padding-left: 1.2rem; font-size: 0.88rem; opacity: 0.85; }
