/* =====================================================
   VINCITORE DESIGN -- PRINT PROJECT PAGE STYLES
   ===================================================== */

/* Top section: text left, portrait right */
.pp-body {
  padding: 5rem 0 4rem;
  background: var(--white);
  border-top: 1px solid var(--light-grey);
}

.pp-top-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

/* ── TEXT COLUMN (left) ────────────────────────────── */
.pp-text-col {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.pp-text-block { display: flex; flex-direction: column; gap: .85rem; }

.pp-section-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: .25rem;
}

.pp-lead {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
}

.pp-text-block p {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ── PORTRAIT COLUMN (right) ───────────────────────── */
.pp-portrait-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

/* Portrait image wrapper -- vertical / portrait orientation */
.pp-portrait-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-grey);
  aspect-ratio: 2 / 3;           /* portrait (vertical) shape */
}

.pp-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s var(--ease);
}
.pp-portrait-wrap:hover img { transform: scale(1.02); }

/* Fallback placeholder shown when no image is loaded */
.pp-portrait-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-grey);
  color: var(--text-muted);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.7;
}

/* Quote block below portrait */
.pp-quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 0 1rem 1.25rem;
}

.pp-quote p {
  font-size: .95rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: .75rem;
}

.pp-quote-author {
  font-size: .68rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ── IMAGE GALLERY -- 2 ROWS OF 3 ─────────────────── */
.pp-gallery {
  padding: 4rem 0 6rem;
  background: #f7f4ec;           /* warm off-white/gold tint — matches other project pages */
  border-top: 1px solid rgba(201,168,76,.15);
}

.pp-gallery-heading {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.pp-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.pp-image-row:last-child { margin-bottom: 0; }

.pp-figure {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pp-img-wrap {
  aspect-ratio: 4 / 3;
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-grey);
}

.pp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.pp-figure:hover .pp-img-wrap img { transform: scale(1.03); }

.pp-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-grey);
  color: var(--text-muted);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}

.pp-figure figcaption {
  font-size: .68rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  margin-top: .5rem;
  padding-left: .1rem;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .pp-top-layout {
    grid-template-columns: 1fr 280px;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .pp-top-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pp-text-col {
    /* Text moves below the portrait image on mobile */
    order: 2;
  }
  .pp-portrait-col {
    position: static;
    order: 1;                    /* portrait + quote appear first */
    flex-direction: column;      /* stack portrait above quote vertically */
    align-items: center;
    gap: 1.5rem;
  }
  .pp-portrait-wrap {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 2 / 3;
  }
  .pp-image-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .pp-image-row { grid-template-columns: 1fr; }
  .pp-portrait-col { flex-direction: column; }
  .pp-portrait-wrap { width: 100%; max-width: 320px; }
}


/* =====================================================
   WVU SCHOLARSHIP CALLOUT — about.html
   ===================================================== */
.wvu-callout {
  margin-top: .5rem;
}

.wvu-callout-inner {
  background: var(--gold-subtle);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Text column — grows to fill available space */
.wvu-text {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.wvu-eyebrow {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.wvu-quote {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.wvu-university {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.wvu-sub {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* Logo — small, right-aligned */
.wvu-logo-wrap {
  flex-shrink: 0;
}
.wvu-logo {
  width: 64px;
  height: auto;
  display: block;
  opacity: .9;
  transition: opacity .2s;
}
.wvu-callout:hover .wvu-logo { opacity: 1; }