/* Gallery previews use the same actual composition as each concept page. */
.portfolio-card { display: block; min-width: 0; border-radius: 5px; }
.card-canvas { background: #f4f2eb; border: 1px solid #233d3525; border-radius: 6px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.portfolio-card:hover .card-canvas { transform: translateY(-5px); box-shadow: 0 16px 40px #123d3220; }
.card-browser { display: flex; align-items: center; gap: 4px; height: 26px; padding: 0 11px; border-bottom: 1px solid #233d3515; background: #fff; }
.card-browser i { width: 4px; height: 4px; background: #7e8a7c; border-radius: 50%; }
.card-browser span { margin-left: auto; font: 7px PortfolioSans, sans-serif; letter-spacing: .08em; }
.card-preview { display: block; width: 100%; height: auto; aspect-ratio: 1280 / 900; object-fit: cover; object-position: top; }
.card-caption { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 17px 0 5px; }
.card-caption div > span { font-size: 10px; color: #52706f; }
.card-caption h3 { font-size: 20px; letter-spacing: -.03em; margin: 6px 0 0; line-height: 1.25; color: #173f45; }
.card-arrow { display: grid; place-items: center; width: 33px; height: 33px; border: 1px solid #bdccc4; border-radius: 50%; color: #173f45; flex-shrink: 0; }
.portfolio-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.portfolio-feature .section-heading > div:last-child { max-width: 470px; }
.portfolio-feature .text-link { display: inline-block; margin-top: 18px; }
.portfolio-disclosure { color: #52706f; font-size: 12px; margin: 22px 0 0; line-height: 1.65; }
@media (max-width: 750px) {
  .portfolio-feature-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .card-canvas { transition: none; }
}
