/* =============================================================
   Zeus Rodriguez — Home Page
   Layers on top of /restoration/assets/style.css
   Adds: RC logo masthead mark, video grid, social embed grid,
         projects grid, published-in list, boards list.
   ============================================================= */

/* ---------- Spacing between site-bar nav and main content ---------- */
main#main { padding-top: 3.5rem; }
@media (max-width: 900px) {
  main#main { padding-top: 2rem; }
}

/* ---------- Single-sidebar layout (editorial proportions, generous side margins) ---------- */
main#main > .layout {
  grid-template-columns: 260px minmax(0, 1fr);
  max-width: 1360px;
  gap: 3rem;
  align-items: start;
  padding-left: max(2rem, 5vw);
  padding-right: max(2rem, 5vw);
}
@media (max-width: 1000px) {
  main#main > .layout {
    grid-template-columns: 1fr;
    max-width: 720px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ---------- Sidebar — sticky elevated parchment card, follows scroll ---------- */
main#main .sidebar-left {
  position: sticky;
  top: 5.5rem; /* sits just below the sticky site-bar nav */
  align-self: start;
  max-height: calc(100vh - 6.5rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-cream) 100%);
  padding: 2rem 1.5rem;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  box-shadow:
    0 1px 3px rgba(26, 47, 75, 0.06),
    0 14px 32px rgba(26, 47, 75, 0.08);
}
main#main .sidebar-left::-webkit-scrollbar { width: 6px; }
main#main .sidebar-left::-webkit-scrollbar-track { background: transparent; }
main#main .sidebar-left::-webkit-scrollbar-thumb {
  background: var(--rule);
  border-radius: 3px;
}
main#main .sidebar-left::-webkit-scrollbar-thumb:hover { background: var(--gold); }
@media (max-width: 1000px) {
  main#main .sidebar-left {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
}
main#main .sidebar-left::before {
  content: '✠';
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: var(--bg-deep);
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--rule);
}
main#main .sidebar-left .sidebar-block {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule-soft);
}
main#main .sidebar-left .sidebar-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
main#main .sidebar-left .author-card {
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule-soft);
}
main#main .sidebar-left .author-card .author-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  margin: 0 auto 0.75rem;
  display: block;
  border: 3px solid var(--bg);
  box-shadow:
    0 0 0 1px var(--gold-soft),
    0 6px 18px rgba(26, 47, 75, 0.18);
}
main#main .sidebar-left .sidebar-heading {
  color: var(--crimson);
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-pale);
  display: inline-block;
}
@media (max-width: 1000px) {
  main#main .sidebar-left {
    padding: 1.5rem 1.25rem;
    border-top-width: 2px;
  }
}

/* ---------- Facebook reel iframe — fills sidebar width with portrait ratio ---------- */
.sidebar-social-feed__body--fb {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: #000;
}
.sidebar-social-feed__body--fb iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ---------- Latest social grid (main content — X tweet + FB reel side by side) ---------- */
.latest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem auto 3rem;
  clear: both;
  max-width: 760px;
}
.latest-card {
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  padding: 1rem 1rem 0.85rem;
  box-shadow:
    0 1px 3px rgba(26, 47, 75, 0.06),
    0 10px 22px rgba(26, 47, 75, 0.10);
  display: flex;
  flex-direction: column;
}
.latest-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--rule-soft);
}
.latest-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: #fff;
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.latest-card__mark--x { background: #000; }
.latest-card__mark--fb { background: #1877F2; }
.latest-card__title {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.01em;
}
.latest-card__handle {
  font-family: var(--serif-sc);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0.1rem 0 0;
  font-weight: 600;
}
.latest-card__body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
}
.latest-card__body .twitter-tweet,
.latest-card__body .twitter-tweet-rendered {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.latest-card__body--fb {
  background: #000;
  height: 440px;
  align-items: center;
}
.latest-card__body--fb iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  border: 0;
}
.latest-card__follow {
  display: inline-block;
  margin: 1rem auto 0;
  padding: 0.6rem 1.25rem;
  background: var(--navy);
  color: var(--bg);
  font-family: var(--serif-sc);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: none;
  text-align: center;
  align-self: center;
  transition: background 0.15s ease;
}
.latest-card__follow:hover { background: var(--crimson); color: var(--bg); border-bottom: none; }
@media (max-width: 900px) {
  .latest-grid { grid-template-columns: 1fr; }
  .latest-card__body--fb { height: 500px; }
}

/* ---------- Tighter masthead with motto/ornament/tagline removed ---------- */
.site-header { padding-bottom: 2.25rem; }
.site-title { margin-bottom: 0.5rem; }

/* ---------- Masthead meta logo (RC centered between year and name) ---------- */
.masthead-meta-center {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.masthead-meta-logo {
  width: 100px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 1px 2px rgba(26, 47, 75, 0.14));
}

/* ---------- Bio article tweaks ---------- */
.bio-article h1 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0.5rem 0 1.1rem;
  text-align: center;
}
.bio-article .lede {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.2rem 0;
}
.bio-article .body h2 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--crimson);
  margin: 3rem 0 1rem;
  text-align: center;
  letter-spacing: 0.02em;
  clear: both;
}
.bio-article .body h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

/* ---------- Video grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 3rem;
  clear: both;
  width: 100%;
}
.video-card {
  background: var(--bg-cream);
  padding: 7px 7px 10px;
  margin: 0; /* kill default <figure> 40px horizontal margin */
  position: relative;
  border: 2px solid var(--navy);
  box-shadow:
    inset 0 0 0 1px var(--gold),
    0 2px 4px rgba(0, 0, 0, 0.14),
    0 10px 22px rgba(26, 47, 75, 0.22),
    0 20px 34px rgba(26, 47, 75, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px var(--gold),
    0 4px 8px rgba(0, 0, 0, 0.16),
    0 16px 32px rgba(26, 47, 75, 0.28),
    0 28px 48px rgba(26, 47, 75, 0.14);
}
.video-card figcaption { margin: 0; padding: 0; }
.video-card + .video-card { border-left: 2px solid var(--navy); }
.video-card::before { content: none; }
.video-card__frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #000;
  text-decoration: none;
  border-bottom: none;
  cursor: pointer;
}
/* Bulletproof 16:9 aspect ratio — works in every browser */
.video-card__frame::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.video-card__frame > picture,
.video-card__frame > .video-card__play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-card__frame picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.video-card__frame:hover picture img { transform: scale(1.03); }
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
  color: #fff;
  font-size: 3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  pointer-events: none;
  transition: background 0.2s ease;
}
.video-card:hover .video-card__play { background: linear-gradient(180deg, rgba(123, 24, 24, 0.25), rgba(123, 24, 24, 0.55)); }
.bio-article .body .video-card .video-card__title {
  font-family: var(--serif-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0.35rem 0.5rem 0.25rem;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.bio-article .body .video-card .video-card__desc {
  font-family: var(--serif-body);
  font-size: 0.7rem;
  line-height: 1.35;
  color: var(--ink-muted);
  margin: 0 0.6rem 0.1rem;
  text-align: center;
  font-style: italic;
}
.bio-article .body .video-card .video-card__source {
  font-family: var(--serif-sc);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0.5rem 0 0.2rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ---------- Social CTA cards (reliable, no broken embeds) ---------- */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.social-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-left-width: 4px;
  box-shadow: 0 2px 8px rgba(26, 47, 75, 0.06);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-left-color 0.18s ease;
}
.social-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 47, 75, 0.14);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.social-cta--x { border-left-color: #000; }
.social-cta--x:hover { border-left-color: var(--crimson); }
.social-cta--fb { border-left-color: #1877F2; }
.social-cta--fb:hover { border-left-color: var(--crimson); }
.social-cta__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  color: #fff;
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.social-cta--x .social-cta__mark { background: #000; }
.social-cta--fb .social-cta__mark { background: #1877F2; }
.social-cta__body { min-width: 0; }
.social-cta__label {
  font-family: var(--serif-sc);
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.1rem;
}
.social-cta__handle {
  font-family: var(--serif-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.35rem;
  letter-spacing: 0.01em;
}
.social-cta__desc {
  font-family: var(--serif-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.social-cta__arrow {
  font-size: 1.6rem;
  color: var(--gold);
  font-family: var(--serif-display);
  transition: transform 0.18s ease, color 0.18s ease;
}
.social-cta:hover .social-cta__arrow {
  transform: translateX(4px);
  color: var(--crimson);
}
@media (max-width: 900px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* Legacy social-card kept for reference, now unused */
.social-card {
  background: var(--bg-elevated);
  padding: 1.25rem 1rem 1rem;
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 3px rgba(26, 47, 75, 0.06),
    0 8px 20px rgba(26, 47, 75, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 540px;
}
.social-card__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}
.social-card__mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--serif-display);
  flex-shrink: 0;
}
.social-card__mark--x { background: #000; }
.social-card__mark--fb { background: #1877F2; }
.social-card__title {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.01em;
}
.social-card__handle {
  font-family: var(--serif-sc);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0.05rem 0 0;
  font-weight: 600;
}
.social-card__body {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.social-card__body iframe,
.social-card__body .twitter-timeline,
.social-card__body .fb-page {
  width: 100% !important;
  max-width: 100% !important;
}
/* Facebook reel iframe is portrait-oriented — center it */
.social-card__body--fb-reel {
  background: #000;
  align-items: center;
}
.social-card__body--fb-reel iframe {
  height: 100%;
  min-height: 460px;
}
.social-card__follow {
  display: inline-block;
  margin: 0.85rem auto 0;
  padding: 0.65rem 1.25rem;
  background: var(--navy);
  color: var(--bg);
  font-family: var(--serif-sc);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: none;
  text-align: center;
  align-self: center;
  transition: background 0.15s ease;
}
.social-card__follow:hover { background: var(--crimson); color: var(--bg); border-bottom: none; }
@media (max-width: 900px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* ---------- Projects grid ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
.project-card {
  display: block;
  background: var(--bg-elevated);
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  box-shadow: 0 1px 3px rgba(26, 47, 75, 0.05);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.15s ease, border-left-color 0.15s ease, box-shadow 0.15s ease;
  border-bottom: 1px solid var(--rule);
}
.project-card:hover {
  transform: translateY(-2px);
  border-left-color: var(--crimson);
  border-bottom-color: var(--rule);
  box-shadow: 0 6px 18px rgba(26, 47, 75, 0.10);
  color: var(--ink);
}
.project-card__name {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.15rem;
  letter-spacing: 0.01em;
}
.project-card__role {
  font-family: var(--serif-sc);
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.45rem;
  font-weight: 600;
}
.project-card__desc {
  font-family: var(--serif-body);
  font-size: 1.04rem;
  line-height: 1.58;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 700px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* ---------- Press grid ---------- */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  margin: 2rem 0 3rem;
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  box-shadow: 0 1px 3px rgba(26, 47, 75, 0.05);
  clear: both;
}
.press-column__heading {
  font-family: var(--serif-sc);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
  margin: 0 0 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--rule);
}
.press-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.press-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.press-list li:last-child { border-bottom: none; }
.press-list a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  border-bottom: none;
  transition: transform 0.15s ease;
}
.press-list a:hover {
  color: var(--crimson);
  border-bottom: none;
  transform: translateX(3px);
}
.press-list a:hover .press-title { color: var(--crimson); }
.press-source {
  display: block;
  font-family: var(--serif-sc);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.press-title {
  display: block;
  font-family: var(--serif-display);
  font-size: 1.18rem;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.15s ease;
}
@media (max-width: 700px) {
  .press-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.25rem 1rem; }
}

/* ---------- Author role — stacked clean lines, no weird wrap ---------- */
.author-role {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
  text-wrap: balance;
}
.author-role span { display: block; white-space: nowrap; }

/* ---------- Email reveal anchor (anti-bot) ---------- */
.email-reveal,
.email-reveal:link,
.email-reveal:visited,
.email-reveal:active {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: var(--navy);
  color: #FBF6EC !important; /* cream — force against any inherited link color */
  font-family: var(--serif-sc);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  box-shadow: 0 2px 6px rgba(26, 47, 75, 0.14);
}
.email-reveal:hover,
.email-reveal:focus {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #FBF6EC !important;
  transform: translateY(-1px);
}
.email-reveal__label { color: inherit; }
.email-reveal__icon {
  color: #E6C86B; /* pale gold — clear against both navy and crimson */
  font-size: 1.15rem;
  line-height: 1;
}
.email-reveal:hover .email-reveal__icon { color: #FBF6EC; }
.email-reveal[data-revealed="1"] {
  text-transform: none;
  letter-spacing: 0.01em;
  font-family: var(--mono);
  font-size: 0.95rem;
}

/* ---------- Sidebar heading — allow natural wrap so nothing gets cut off ---------- */
.sidebar-heading { white-space: normal; overflow: visible; text-overflow: clip; text-wrap: balance; line-height: 1.2; }

/* ---------- Sidebar additions ---------- */
.sidebar-published {
  font-family: var(--serif-body);
  font-size: 1.02rem;
  line-height: 1.6;
}
.sidebar-published li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--rule-soft);
  list-style: none;
}
.sidebar-published li:last-child { border-bottom: none; }
.sidebar-published a {
  color: var(--ink);
  border-bottom: none;
}
.sidebar-published a:hover { color: var(--crimson); }

.sidebar-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.sidebar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-cream);
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--navy);
  font-family: var(--serif-sc);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border-bottom: 1px solid var(--rule);
}
.sidebar-social a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* ---------- Portrait centered at top (no float — so grids span full width) ----------
   NOTE: Restoration's shared CSS floats .about-portrait right and gives it a
   heavy wooden frame. We must explicitly kill the float AND reset border /
   border-image / shape-outside — otherwise following elements (paragraphs,
   h2, and the video-grid) get squeezed into the leftover space beside the
   float and render at ~30% of the main-content width. */
/* Portrait floats right with the Restoration's dark wooden picture frame
   (border-image, inset gold, drop shadow). We only override size + margin;
   frame treatment inherits from restoration/assets/style.css .about-portrait. */
.bio-article .about-portrait {
  float: right;
  shape-outside: margin-box;
  display: block;
  width: 36%;
  max-width: 320px;
  margin: 0.25rem 0 1.75rem 2.25rem;
}
@media (max-width: 700px) {
  .bio-article .about-portrait {
    float: none;
    shape-outside: none;
    width: 78%;
    margin: 0 auto 1.5rem;
  }
}

/* ---------- Bio body paragraph spacing ---------- */
.bio-article .body p {
  margin: 0 0 1.15rem;
  font-size: 1.12rem;
  line-height: 1.72;
  color: var(--ink);
}
.bio-article .body p strong { font-weight: 600; color: var(--navy); }
.bio-article .body p a { color: var(--crimson); border-bottom-color: var(--gold); }
.bio-article .body p a:hover { color: var(--gold); border-bottom-color: var(--crimson); }

/* ---------- Fleuron divider ---------- */
.fleuron {
  text-align: center;
  margin: 3rem auto;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 1rem;
  opacity: 0.85;
}
