.hero {
  padding-top: clamp(4.8rem, 9vw, 9rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}

.hero-copy h1 {
  margin-top: 0.9rem;
  max-width: 12ch;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.lead {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-lead-note {
  margin-top: 0.82rem;
  max-width: 58ch;
  color: #1f3f73;
  font-size: clamp(0.95rem, 1.6vw, 1.06rem);
  font-weight: 650;
  line-height: 1.55;
}

.credibility-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.credibility-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 63, 103, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: #294a77;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 0.82rem;
}

.credibility-tag.primary {
  background: linear-gradient(110deg, rgba(35, 80, 142, 0.14), rgba(18, 107, 120, 0.14));
  border-color: rgba(35, 80, 142, 0.34);
  color: #183f76;
}

.hero-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(36, 60, 97, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  display: grid;
  gap: 0.62rem;
}

:where(
    .hero-panel,
    .social-tile,
    .trust-badges article,
    .metrics-row,
    .metrics-row article,
    .impact-band,
    .impact-item,
    .process-card,
    .story-card,
    .lane-card
  ) {
  border-color: rgba(38, 67, 112, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(233, 242, 253, 0.44));
  box-shadow:
    0 12px 24px rgba(18, 31, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(11px) saturate(128%);
  -webkit-backdrop-filter: blur(11px) saturate(128%);
  position: relative;
  overflow: hidden;
}

:where(
    .hero-panel,
    .social-tile,
    .trust-badges article,
    .metrics-row,
    .metrics-row article,
    .impact-band,
    .impact-item,
    .process-card,
    .story-card,
    .lane-card
  )::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

:where(
    .hero-panel *,
    .social-tile *,
    .trust-badges article *,
    .metrics-row *,
    .impact-band *,
    .impact-item *,
    .process-card *,
    .story-card *,
    .lane-card *
  ) {
  position: relative;
  z-index: 1;
}

.hero-panel article {
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 72, 115, 0.14);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.82rem 0.9rem;
}

.hero-social-panel {
  gap: 0.7rem;
}

.hero-logo-lockup {
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid rgba(36, 61, 102, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(20, 35, 60, 0.12);
  overflow: hidden;
}

.hero-logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-social-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #3e5e8f;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.social-tile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(44, 72, 116, 0.18);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 66, 112, 0.35);
  box-shadow: 0 12px 20px rgba(23, 43, 75, 0.1);
}

.social-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.82rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 70, 114, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: #1f4a89;
  flex-shrink: 0;
}

.social-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-copy {
  display: grid;
  gap: 0.16rem;
}

.social-copy strong {
  color: #1a355f;
  font-size: 0.96rem;
  line-height: 1.15;
}

.social-copy small {
  color: #536583;
  font-size: 0.8rem;
}

.social-tile.instagram .social-icon {
  color: #1f4a89;
}

.social-tile.discord .social-icon {
  color: #1f4a89;
}

.hero-panel h2 {
  font-size: 1rem;
}

.hero-panel p {
  margin-top: 0.34rem;
  color: #44546a;
  font-size: 0.9rem;
}

.compact-block {
  padding-top: 2.1rem;
}

.past-projects {
  padding-top: 2.4rem;
  padding-bottom: 2.8rem;
}

.projects-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 0.9rem;
}

.project-highlight-card,
.project-proof-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 64, 106, 0.2);
  overflow: hidden;
}

.project-highlight-card img,
.project-proof-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(41, 66, 105, 0.18);
}

.project-highlight-card img {
  height: 320px;
  object-fit: contain;
  object-position: center;
  background: #f5f7fb;
}

.project-proof-card img {
  height: 260px;
  object-fit: contain;
  object-position: center;
  background: #f5f7fb;
}

.project-copy,
.project-proof-copy {
  padding: 0.96rem;
}

.project-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #355a92;
  font-weight: 720;
}

.project-copy h3,
.project-proof-copy h3 {
  margin-top: 0.34rem;
  color: #1a3b69;
  line-height: 1.24;
  letter-spacing: -0.01em;
}

.project-copy h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.project-proof-copy h3 {
  font-size: clamp(1.12rem, 1.9vw, 1.36rem);
}

.project-copy p,
.project-proof-copy p {
  margin-top: 0.42rem;
  color: #4a5f80;
  line-height: 1.56;
}

.project-cred-list {
  margin: 0.72rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.34rem;
  color: #415978;
}

.project-cred-list li {
  line-height: 1.45;
}

.impact-band {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 65, 108, 0.2);
  background: linear-gradient(142deg, rgba(255, 255, 255, 0.72), rgba(225, 237, 252, 0.44));
  box-shadow:
    0 22px 40px rgba(20, 32, 56, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.impact-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(44, 72, 116, 0.24);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  padding: 0.9rem;
}

.impact-item strong {
  color: #163b71;
  font-size: clamp(1.45rem, 2.9vw, 2rem);
  letter-spacing: -0.02em;
}

.impact-item p {
  margin-top: 0.32rem;
  color: #385886;
  font-size: 0.9rem;
}

.trust-section {
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

.trust-head h2 {
  max-width: 16.5ch;
}

.trust-head p {
  max-width: 70ch;
}

.trust-badges {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-badges article {
  border-radius: var(--radius-md);
  border: 1px solid rgba(40, 67, 109, 0.16);
  background: rgba(255, 255, 255, 0.79);
  box-shadow: var(--shadow-soft);
  padding: 0.92rem;
}

.trust-badges span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #365b91;
  font-weight: 700;
}

.trust-badges p {
  margin-top: 0.35rem;
  color: #243f67;
  font-size: 0.93rem;
}

.logo-marquee-shell {
  margin-top: 1.1rem;
}

.logo-marquee {
  border: 1px solid rgba(41, 66, 105, 0.26);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.76), rgba(228, 239, 252, 0.42));
  box-shadow:
    0 20px 34px rgba(20, 33, 53, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(15px) saturate(138%);
  -webkit-backdrop-filter: blur(15px) saturate(138%);
  padding: 0.7rem;
  overflow: hidden;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3.6rem;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(245, 249, 253, 1), rgba(245, 249, 253, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(241, 246, 252, 1), rgba(241, 246, 252, 0));
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-treadmill 26s linear infinite;
}

.logo-group {
  display: flex;
  gap: 0.76rem;
  padding-right: 0.76rem;
}

.org-logo {
  min-width: 220px;
  min-height: 82px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 70, 110, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(227, 239, 252, 0.38));
  box-shadow:
    0 14px 24px rgba(24, 40, 65, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px) saturate(132%);
  -webkit-backdrop-filter: blur(12px) saturate(132%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.95rem;
}

.org-logo img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.org-logo.wake-county img {
  max-height: 44px;
}

.org-logo.tie img {
  max-height: 42px;
}

.org-logo.mit img {
  max-height: 42px;
}

.org-logo.isef img {
  max-height: 52px;
  border-radius: 0.5rem;
}

.org-logo.ces img {
  max-height: 40px;
}

.metrics-row {
  border: 1px solid rgba(41, 67, 108, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.metrics-row article {
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 71, 111, 0.14);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.78rem;
}

.metrics-row span {
  display: block;
  font-size: 0.71rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #3f5f90;
  font-weight: 700;
}

.metrics-row p {
  margin-top: 0.26rem;
  font-size: 0.94rem;
  color: #1a3158;
}

.process {
  padding-top: 2.5rem;
  padding-bottom: 2.9rem;
}

.process-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.process-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(40, 68, 109, 0.2);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.68), rgba(229, 239, 251, 0.38));
  box-shadow:
    0 22px 36px rgba(17, 30, 50, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 1rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 85, 150, 0.42);
  box-shadow:
    0 24px 40px rgba(17, 31, 53, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.process-card > p:first-child {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #3a5f96;
  font-weight: 700;
}

.process-card h3 {
  margin-top: 0.4rem;
  color: #1b3b68;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.process-card > p:last-child {
  margin-top: 0.44rem;
  color: #47607f;
}

.photo-glass {
  padding-top: 3rem;
  padding-bottom: 2.7rem;
}

.photo-glass .section-head h2 {
  max-width: 16ch;
}

.photo-glass::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 7%;
  width: min(40vw, 440px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle at 38% 38%, rgba(76, 131, 196, 0.2), rgba(76, 131, 196, 0));
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

.glass-controls {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.16rem;
  padding: 0 0.86rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(43, 74, 119, 0.24);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.56), rgba(228, 239, 251, 0.32));
  color: #294b78;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow:
    0 10px 24px rgba(22, 42, 73, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}

.glass-pill i {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #4bd188;
  box-shadow: 0 0 0 rgba(75, 209, 136, 0.5);
  animation: live-pulse 1.8s ease-out infinite;
}

.glass-pill.is-live {
  color: #1f5d3c;
  border-color: rgba(43, 134, 85, 0.33);
}

.photo-glass-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(172px, auto);
  gap: 0.82rem;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 69, 109, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(235, 245, 255, 0.14));
  box-shadow:
    0 26px 44px rgba(18, 31, 54, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 80, 144, 0.5);
  box-shadow:
    0 28px 44px rgba(18, 30, 53, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(9, 18, 35, 0), rgba(9, 18, 35, 0.62));
  pointer-events: none;
  z-index: 1;
}

.photo-card img,
.photo-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-card-large {
  grid-column: 1 / span 7;
  grid-row: span 2;
  min-height: 424px;
}

.photo-card-large img {
  object-position: center 42%;
}

.photo-card-duo {
  grid-column: 8 / span 5;
  min-height: 206px;
}

.photo-card-duo img {
  object-position: center 30%;
}

.photo-card-ces {
  grid-column: 8 / span 5;
  min-height: 206px;
}

.photo-card-ces img {
  object-position: center;
}

.photo-card-news {
  grid-column: 1 / span 5;
  min-height: 236px;
}

.photo-card-news img {
  object-position: center top;
}

.photo-card-video {
  grid-column: 6 / -1;
  min-height: 236px;
}

.photo-status {
  position: absolute;
  top: 0.78rem;
  left: 0.78rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 1.85rem;
  padding: 0 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(249, 252, 255, 0.22);
  color: #f5f9ff;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.photo-overlay {
  position: absolute;
  left: 0.82rem;
  right: 0.82rem;
  bottom: 0.82rem;
  z-index: 2;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(13, 25, 45, 0.42);
  box-shadow: 0 16px 32px rgba(8, 14, 29, 0.24);
  backdrop-filter: blur(13px) saturate(128%);
  -webkit-backdrop-filter: blur(13px) saturate(128%);
  padding: 0.8rem 0.88rem;
}

.photo-overlay p {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(227, 238, 255, 0.88);
  font-weight: 700;
}

.photo-overlay h3 {
  margin-top: 0.35rem;
  color: #f5f9ff;
  line-height: 1.24;
  letter-spacing: -0.01em;
  font-size: clamp(0.95rem, 2vw, 1.22rem);
}

.stories {
  padding-top: 3rem;
}

.stories-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.story-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 64, 105, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.story-card:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 64, 106, 0.26);
  box-shadow: 0 14px 26px rgba(29, 45, 67, 0.12);
}

.story-head {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.story-avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(38, 65, 106, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(228, 238, 249, 0.86));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1c467f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.avatar-student {
  color: #2f5f93;
}

.avatar-founder {
  color: #7c3c3c;
}

.avatar-mentor {
  color: #2f6356;
}

.story-head h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.story-head p {
  margin-top: 0.14rem;
  font-size: 0.82rem;
  color: #57687f;
}

.story-quote {
  margin-top: 0.85rem;
  color: #2f4768;
  font-size: 0.94rem;
  line-height: 1.55;
}

.story-tags {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.story-tags span {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(43, 68, 108, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #35537f;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.58rem;
}

.home-lanes {
  padding-top: 3rem;
}

.lanes-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.lane-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(39, 65, 104, 0.16);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
}

.lane-card h3 {
  font-size: 1.06rem;
}

.lane-card p {
  margin-top: 0.48rem;
  color: #4d5c70;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(75, 209, 136, 0.48);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(75, 209, 136, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(75, 209, 136, 0);
  }
}

@keyframes logo-treadmill {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .trust-badges,
  .projects-grid,
  .impact-band,
  .process-grid,
  .stories-grid,
  .lanes-grid,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .photo-glass-grid {
    grid-template-columns: 1fr;
  }

  .photo-card-large,
  .photo-card-duo,
  .photo-card-ces,
  .photo-card-news,
  .photo-card-video {
    grid-column: auto;
    grid-row: auto;
    min-height: 274px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .logo-track {
    animation-duration: 20s;
  }

  .org-logo {
    min-width: 178px;
  }
}

@media (max-width: 680px) {
  .glass-controls {
    margin-top: 0.95rem;
  }

  .glass-pill {
    font-size: 0.66rem;
    min-height: 2rem;
    padding: 0 0.74rem;
  }

  .photo-card-large,
  .photo-card-duo,
  .photo-card-ces,
  .photo-card-news,
  .photo-card-video {
    min-height: 244px;
  }

  .photo-overlay {
    left: 0.68rem;
    right: 0.68rem;
    bottom: 0.68rem;
    padding: 0.72rem 0.76rem;
  }

  .photo-overlay h3 {
    font-size: 0.95rem;
  }
}
