/* =========================================================================
   Evolution, Intelligent Design, and the Catholic Mind — deck styles
   Built for 1920×1080. ACU design system.
   ========================================================================= */

@import url('assets/colors_and_type.css');

/* ---------- slide frame ---------- */
.slide {
  font-family: var(--font-sans);
  color: var(--fg-body);
  background: var(--cream-100);
  overflow: hidden;
  position: relative;
}

.slide--dark {
  background: var(--navy-800);
  color: var(--cream-100);
}
.slide--deeper {
  background: var(--navy-900);
  color: var(--cream-100);
}
.slide--cream {
  background: var(--cream-100);
}
.slide--paper {
  background:
    radial-gradient(circle at 20% 15%, rgba(210,174,109,0.06), transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(210,174,109,0.05), transparent 55%),
    var(--cream-100);
}

/* ---------- typography overrides for slide scale ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 22px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-700);
  margin: 0;
}
.eyebrow--onDark { color: var(--gold-500); }
.eyebrow--stone { color: var(--stone-600); }

.title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-800);
  line-height: 1.08;
  margin: 0;
}
.title--onDark { color: var(--cream-50); }

.subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--stone-700);
  line-height: 1.3;
  margin: 0;
}
.subtitle--onDark { color: var(--gold-400); }

.lede {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.45;
  color: var(--stone-800);
  font-weight: 400;
}

.body {
  font-family: var(--font-sans);
  font-size: 30px;
  line-height: 1.5;
  color: var(--stone-900);
  font-weight: 400;
}
.body--onDark { color: var(--cream-100); }
.body--sm {
  font-size: 24px;
  line-height: 1.5;
}

.gold-rule {
  height: 1px;
  background: var(--gold-600);
  border: 0;
  width: 120px;
  margin: 0;
}
.gold-rule--short { width: 60px; }
.gold-rule--full { width: 100%; }

/* ---------- chi-rho ornament ---------- */
.chi-rho {
  color: var(--gold-600);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0;
}

/* ---------- seal watermark ---------- */
.seal-watermark {
  position: absolute;
  opacity: 0.045;
  pointer-events: none;
  mix-blend-mode: luminosity;
}

/* ---------- section divider (PART slides) ---------- */
.part-divider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px;
  color: var(--cream-50);
  position: relative;
}
.part-divider .part-number {
  font-family: var(--font-display);
  font-size: 300px;
  line-height: 0.85;
  color: var(--gold-600);
  opacity: 0.35;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin: 0 0 -20px;
}
.part-divider .part-kicker {
  font-family: var(--font-sans);
  font-size: 26px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin: 0 0 32px;
}
.part-divider .part-title {
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-50);
  max-width: 1450px;
  margin: 0;
}
.part-divider .part-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--gold-300);
  max-width: 1200px;
  margin: 40px 0 0;
  line-height: 1.45;
}
.part-divider .part-rule {
  width: 160px;
  height: 2px;
  background: var(--gold-600);
  margin: 40px 0;
}

/* brush-stroke corners like the banner */
.part-divider::before,
.part-divider::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 44px;
  background:
    linear-gradient(90deg, transparent 0%, var(--gold-700) 12%, var(--gold-600) 40%, var(--gold-500) 60%, transparent 95%);
  opacity: 0.55;
  filter: blur(0.5px);
}
.part-divider::before {
  top: 100px; left: -80px;
  transform: rotate(-4deg);
  clip-path: polygon(0 45%, 6% 10%, 14% 60%, 24% 25%, 38% 70%, 52% 30%, 66% 60%, 80% 35%, 92% 55%, 100% 40%, 100% 80%, 0 90%);
}
.part-divider::after {
  bottom: 90px; right: -60px;
  transform: rotate(3deg);
  clip-path: polygon(0 50%, 10% 20%, 22% 65%, 36% 30%, 50% 70%, 64% 35%, 76% 60%, 88% 40%, 100% 55%, 100% 85%, 0 92%);
}

/* ---------- content frame ---------- */
.frame {
  width: 100%;
  height: 100%;
  padding: 100px 120px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.frame--tight {
  padding: 80px 120px 64px;
  gap: 40px;
}

/* header block */
.header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header .eyebrow-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ---------- bullets ---------- */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bullets li {
  position: relative;
  padding-left: 48px;
  font-family: var(--font-sans);
  font-size: 30px;
  line-height: 1.5;
  color: var(--stone-900);
  font-weight: 400;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 14px;
  background: var(--gold-600);
  transform: rotate(45deg);
}
.bullets--onDark li { color: var(--cream-100); }
.bullets--sm li { font-size: 26px; gap: 22px; }
.bullets--sm { gap: 22px; }

/* two-col / cards */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  flex: 1;
}
.card {
  background: var(--cream-50);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card--raised { box-shadow: var(--shadow-sm); }
.card--navy {
  background: var(--navy-700);
  border: 1px solid var(--gold-700);
  color: var(--cream-100);
}
.card--navy .card-label { color: var(--gold-500); }
.card--stone { background: var(--stone-100); border-color: var(--stone-300); }
.card--stone .card-label { color: var(--stone-700); }

.card-label {
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
  margin: 0;
}
.card-heading {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.2;
  margin: 0;
}
.card--navy .card-heading { color: var(--cream-50); }
.card-body {
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1.5;
  color: var(--stone-800);
  margin: 0;
}
.card--navy .card-body { color: var(--cream-200); }

/* ---------- quote slide ---------- */
.quote-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 240px;
  text-align: center;
  gap: 56px;
  color: var(--cream-50);
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.quote-slide .quote-mark {
  font-family: var(--font-display);
  font-size: 200px;
  line-height: 0.3;
  color: var(--gold-600);
  opacity: 0.8;
  height: 60px;
  margin-bottom: 0;
}
.quote-slide blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--cream-50);
  margin: 0;
  max-width: none;
  padding-bottom: 20px;
}
.quote-slide .attribution {
  font-family: var(--font-sans);
  font-size: 24px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}

/* pull quote inline */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  line-height: 1.3;
  color: var(--navy-800);
  border-left: 2px solid var(--gold-600);
  padding: 8px 0 8px 40px;
  margin: 0;
}
.pull-quote .attr {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-700);
  margin-top: 20px;
  font-weight: 600;
}

/* ---------- popes triptych ---------- */
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pope-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pope-card .pope-dates {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
}
.pope-card .pope-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.15;
}
.pope-card .pope-doc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--stone-700);
}
.pope-card .pope-quote {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--stone-900);
  border-top: 1px solid var(--gold-600);
  padding-top: 20px;
  margin-top: 8px;
  flex: 1;
}

/* ---------- four causes grid ---------- */
.causes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--gold-600);
  border: 1px solid var(--gold-600);
  flex: 1;
}
.cause {
  background: var(--cream-50);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cause .cause-roman {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-700);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.cause .cause-name {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.1;
}
.cause .cause-question {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--stone-700);
}
.cause .cause-answer {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 1.5;
  color: var(--stone-900);
  border-top: 1px solid var(--gold-600);
  padding-top: 16px;
  margin-top: auto;
}

/* ---------- scientist grid ---------- */
.scientist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
  flex: 1;
  min-height: 0;
}
.scientist {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}
.scientist .portrait {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 38%, var(--gold-400) 0%, var(--gold-700) 55%, var(--gold-900) 100%);
  border: 2px solid var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}
.scientist .portrait::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(251, 248, 242, 0.25);
}
.scientist .monogram {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--cream-50);
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 1;
}
.scientist .sci-name {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.2;
}
.scientist .sci-field {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-700);
  line-height: 1.3;
}
.scientist .sci-line {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--stone-800);
  margin-top: 4px;
}

/* ---------- sci-card (portraits) ---------- */
.sci-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow: hidden;
}
.sci-card .sci-portrait {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--stone-800);
  margin-bottom: 8px;
  position: relative;
}
.sci-card .sci-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04) brightness(0.96);
}
.sci-card .sci-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,26,48,0.18) 100%);
  pointer-events: none;
}
.sci-card .sci-dates {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold-700);
  font-weight: 700;
  padding: 0 22px;
}
.sci-card .sci-name-lg {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.2;
  padding: 0 22px;
}
.sci-card .sci-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--stone-700);
  padding: 0 22px;
}
.sci-card .sci-note {
  font-size: 15px;
  line-height: 1.45;
  color: var(--stone-800);
  margin-top: auto;
  padding: 0 22px;
}

/* ---------- flagellum video card ---------- */
.flagellum-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* ---------- footer chrome ---------- */
.slide-footer {
  position: absolute;
  bottom: 40px;
  left: 120px;
  right: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-600);
  font-weight: 600;
}
.slide-footer--onDark { color: var(--stone-400); }
.slide-footer .part-tag {
  color: var(--gold-700);
}
.slide-footer--onDark .part-tag { color: var(--gold-500); }

/* ---------- title slide ---------- */
.title-slide {
  height: 100%;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(210,174,109,0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--cream-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  padding: 120px 140px;
  position: relative;
  overflow: hidden;
}
.title-slide .brand {
  display: flex;
  align-items: center;
  gap: 24px;
  position: absolute;
  top: 80px;
  left: 140px;
  z-index: 2;
}
.title-slide .brand img {
  width: 68px;
  height: auto;
}
.title-slide .brand .wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.3em;
  color: var(--gold-500);
  font-weight: 500;
  line-height: 1.3;
}
.title-slide .center {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1500px;
}
.title-slide .kicker {
  font-family: var(--font-sans);
  font-size: 24px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}
.title-slide h1 {
  font-family: var(--font-display);
  font-size: 108px;
  letter-spacing: 0.04em;
  line-height: 1.02;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cream-50);
  margin: 0;
}
.title-slide .sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1.3;
  color: var(--gold-300);
  max-width: 1100px;
}
.title-slide .meta {
  font-family: var(--font-sans);
  font-size: 22px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-400);
  font-weight: 500;
  position: absolute;
  bottom: 60px;
  left: 140px;
  z-index: 2;
}

/* large seal watermark on title */
.title-slide .big-seal {
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 900px;
  opacity: 0.07;
  transform: rotate(-6deg);
}

/* ---------- split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  flex: 1;
}
.split--3-2 { grid-template-columns: 3fr 2fr; }
.split--2-3 { grid-template-columns: 2fr 3fr; }

.column-heading {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-600);
}
.column-heading--dark { color: var(--gold-500); border-color: var(--gold-700); }
.column-heading--stone { color: var(--stone-600); border-color: var(--stone-400); }

/* ---------- problem tiles (unsolved problems) ---------- */
.problems {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  flex: 1;
  min-height: 0;
}
.problem {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-top: 3px solid var(--gold-600);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.problem .p-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold-700);
  font-weight: 400;
  line-height: 1;
}
.problem .p-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.2;
}
.problem .p-body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--stone-800);
  margin-top: auto;
}

/* ---------- case for/against table ---------- */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  flex: 1;
  min-height: 0;
}
.evidence {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}
/* when using ev-image + ev-content slots, remove padding */
.evidence:has(.ev-image) {
  padding: 0;
  gap: 0;
  overflow: hidden;
}
.evidence .ev-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-200);
  overflow: hidden;
  border-bottom: 1px solid var(--cream-300);
  flex-shrink: 0;
}
.evidence--dark .ev-image {
  aspect-ratio: auto;
  height: 150px;
  border-bottom: 1px solid var(--navy-700);
  flex-shrink: 0;
}
.evidence .ev-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.evidence .ev-content {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
}
.evidence--dark .ev-content {
  padding: 18px 20px 20px;
  gap: 10px;
}
.evidence--dark .ev-title { font-size: 20px; }
.evidence--dark .ev-body { font-size: 15px; line-height: 1.4; }
.evidence--dark {
  background: var(--navy-800);
  border-color: var(--navy-700);
  color: var(--cream-100);
}
.evidence .ev-label {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
}
.evidence--dark .ev-label { color: var(--gold-500); }
.evidence .ev-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.2;
}
.evidence--dark .ev-title { color: var(--cream-50); }
.evidence .ev-body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--stone-800);
}
.evidence--dark .ev-body { color: var(--cream-200); }

/* ---------- fossil record strata graphic ---------- */
.strata {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  border: 1px solid var(--stone-400);
}
.stratum {
  padding: 16px 24px;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--stone-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stratum .age {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--stone-700);
  letter-spacing: 0.06em;
}

/* ---------- reading list ---------- */
.reading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
  flex: 1;
}
.read-item {
  padding: 20px 0;
  border-top: 1px solid var(--cream-300);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.read-item .r-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.2;
}
.read-item .r-author {
  font-family: var(--font-sans);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--stone-700);
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- numbered questions ---------- */
.questions {
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex: 1;
}
.question {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--cream-300);
}
.question:last-child { border-bottom: 0; }
.question .q-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--gold-700);
  font-weight: 400;
  line-height: 1;
}
.question .q-text {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.4;
  color: var(--navy-800);
  font-style: italic;
  font-weight: 400;
}


/* ---------- icons (slides 10, 11, 12, 13, 17) ---------- */
.axis-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--cream-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.axis-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}
.obj-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--gold-700);
  border: 1px solid currentColor;
  border-radius: 50%;
}
.card--navy .obj-icon {
  color: var(--gold-400, #c9a663);
}
.obj-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.6;
}
.p-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.p-head .p-icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  color: var(--navy-700, var(--navy-800));
}
.p-head .p-num {
  margin: 0;
}
