/* =========================================================
   RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #111111;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

/* =========================================================
   HEADER / NAV
========================================================= */
.site-header {
  width: 100%;
  position: relative;
}

.header-inner {
  background-color: #000000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 30px;
  min-width: 0;
}

.left-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.left-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

.left-links a:hover {
  text-decoration: underline;
}

.site-title {
  text-align: center;
  font-family: "Allura", cursive;
  font-size: 4rem;
  white-space: nowrap;
  justify-self: center;
  min-width: 0;
}

.home-page .site-title {
  animation: slideUp 1s ease forwards;
}

.site-title a {
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.site-title a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.right-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.right-links a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-links img,
.mobile-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.right-links a:hover,
.mobile-icons a:hover {
  opacity: 0.8;
}

/* =========================================================
   MOBILE MENU
========================================================= */
.menu-toggle {
  display: none;
  width: 34px;
  height: 26px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  justify-self: start;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #FFFFFF;
}

.mobile-nav {
  display: none;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 20px 18px;
}

.mobile-nav.show {
  display: block;
}

.mobile-nav a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 0;
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.mobile-nav a:hover {
  text-decoration: underline;
  opacity: 1;
}

.mobile-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 20px;
}

.mobile-icons a {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-icons a:hover {
  transform: scale(1.1);
  opacity: 1;
}

.mobile-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-current {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 1;
  cursor: default;
  text-decoration: none;
}

.mobile-current {
  display: block;
  text-align: center;
  padding: 14px 0;
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 1;
}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   HOME PAGE GRID
========================================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding: 0 12px 12px;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #000000;
  text-decoration: none;
  color: #FFFFFF;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
  opacity: 0.25;
}

.feature-left {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.top-small-1 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.top-small-2 {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.top-small-3 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.top-small-4 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

.bottom-small-1 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.bottom-small-2 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.bottom-small-3 {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}

.bottom-small-4 {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}

.feature-right {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(120, 120, 120, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
  padding: 20px;
}

.overlay-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.overlay-content p {
  font-size: 1rem;
  line-height: 1.4;
}

.portfolio-item:hover .overlay {
  opacity: 0.9;
}

/* =========================================================
   SHARED PAGE LAYOUT
========================================================= */
.project-page,
.about-page {
  width: 100%;
  padding: 20px 12px 32px;
}

.project-topbar {
  max-width: 1400px;
  margin: 0 auto 18px;
}

.back-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.back-link:hover {
  text-decoration: underline;
}

.project-intro,
.about-content {
  max-width: 800px;
  margin: 0 auto 28px;
  text-align: center;
}

.project-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.8;
}

.project-name {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.project-meta {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 16px;
  opacity: 0.85;
}

.project-text {
  max-width: 680px;
  margin: 0 auto 16px;
  font-size: 1rem;
  line-height: 1.65;
}

.media-section {
  max-width: 1400px;
  margin: 0 auto 26px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 12px;
}

/* =========================================================
   SHARED MEDIA GRIDS
========================================================= */
.graphics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.graphics-grid .media-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.graphics-grid.ten-grid {
  grid-template-columns: repeat(5, 1fr);
}

.photo-section {
  display: grid;
  gap: 12px;
}

.photo-vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.photo-vertical-grid .media-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-horizontal-grid .media-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.video-card {
  background: #000000;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* =========================================================
   SHARED CARDS / LIGHTBOX
========================================================= */
.media-card {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: #000000;
  cursor: pointer;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.media-card:hover img {
  transform: scale(1.02);
  opacity: 0.9;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 30px;
  z-index: 9999;
}

.lightbox.show {
  display: flex;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: transparent;
  border: 0;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
}

/* =========================================================
   SOFTBALL
========================================================= */
.softball-graphics-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
}

.portrait-graphic img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wide-graphic img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sg1 {
  grid-column: 2 / 4;
}

.sg2 {
  grid-column: 4 / 6;
}

.sg3 {
  grid-column: 6 / 8;
}

.sg4 {
  grid-column: 8 / 10;
}

.sg5 {
  grid-column: 1 / 6;
}

.sg6 {
  grid-column: 6 / 11;
}

.sg7 {
  grid-column: 1 / 3;
}

.sg8 {
  grid-column: 3 / 5;
}

.sg9 {
  grid-column: 5 / 7;
}

.sg10 {
  grid-column: 7 / 9;
}

.sg11 {
  grid-column: 9 / 11;
}

.softball-graphics-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.sg1 {
  grid-column: 1 / 4;
}

.sg2 {
  grid-column: 4 / 7;
}

.sg3 {
  grid-column: 7 / 10;
}

.sg4 {
  grid-column: 10 / 13;
}

.sg5 {
  grid-column: 1 / 7;
}

.sg6 {
  grid-column: 7 / 13;
}

.sg7 {
  grid-column: 1 / 4;
}

.sg8 {
  grid-column: 4 / 7;
}

.sg9 {
  grid-column: 7 / 10;
}

.sg10 {
  grid-column: 10 / 13;
}

.portrait-graphic img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wide-graphic img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 600px) {
  .softball-page .photo-section,
  .softball-page .photo-vertical-grid,
  .softball-page .photo-horizontal-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FOOTBALL
========================================================= */
.football-graphics-grid,
.gameday-photo-grid,
.fall-photo-grid,
.media-day-grid,
.recruiting-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.portrait-graphic img,
.portrait-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.wide-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.recruiting-card img {
  width: 100%;
  height: auto;
  display: block;
}

.fg1 {
  grid-column: 1 / 4;
}

.fg2 {
  grid-column: 4 / 7;
}

.fg3 {
  grid-column: 7 / 10;
}

.fg4 {
  grid-column: 10 / 13;
}

.fg5 {
  grid-column: 1 / 5;
}

.fg6 {
  grid-column: 5 / 9;
}

.fg7 {
  grid-column: 9 / 13;
}

.gd1 {
  grid-column: 1 / 4;
}

.gd2 {
  grid-column: 4 / 7;
}

.gd3 {
  grid-column: 7 / 10;
}

.gd4 {
  grid-column: 10 / 13;
}

.gd5 {
  grid-column: 1 / 5;
}

.gd6 {
  grid-column: 5 / 9;
}

.gd7 {
  grid-column: 9 / 13;
}

.f1 {
  grid-column: 1 / 4;
}

.f2 {
  grid-column: 4 / 7;
}

.f3 {
  grid-column: 7 / 10;
}

.f4 {
  grid-column: 10 / 13;
}

.f5 {
  grid-column: 1 / 5;
}

.f6 {
  grid-column: 5 / 9;
}

.f7 {
  grid-column: 9 / 13;
}

.md1 {
  grid-column: 1 / 4;
}

.md2 {
  grid-column: 4 / 7;
}

.md3 {
  grid-column: 7 / 10;
}

.md4 {
  grid-column: 10 / 13;
}

.md5 {
  grid-column: 1 / 7;
}

.md6 {
  grid-column: 7 / 13;
}

.r1 {
  grid-column: 1 / 5;
}

.r2 {
  grid-column: 5 / 9;
}

.r3 {
  grid-column: 9 / 13;
}

.r4 {
  grid-column: 1 / 7;
}

.r5 {
  grid-column: 7 / 13;
}

.crop-fix img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.shift-right img {
  object-position: 65% center;
}

/* =========================================================
   MALLARDS
========================================================= */
.mallards-page .video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

/* =========================================================
   SODBUSTERS
========================================================= */
.sodbusters-graphics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.sodbusters-graphics-grid .media-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.sbg-square {
  grid-column: 1 / -1;
}

.sbg-square img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sodbusters-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.sodbusters-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.sodbusters-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.sodbusters-page .sb-video-card video {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* =========================================================
   FREELANCE / FIVE-COLUMN LAYOUT
========================================================= */
.five-col-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.five-col-grid .media-card {
  aspect-ratio: 4 / 5;
}

.wide-row {
  margin-top: 12px;
}

.wide-row .media-card {
  width: 100%;
  aspect-ratio: 8 / 5;
}

/* =========================================================
   FREELANCE / FOUR-COLUMN IMAGE GRID
========================================================= */
.four-col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.four-col-grid .media-card {
  aspect-ratio: 2550 / 3300;
}

.four-col-grid .media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   FREELANCE / IDENTITY GRID
========================================================= */
.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.identity-grid .media-card {
  aspect-ratio: 16 / 9;
}

.identity-grid .media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   FREELANCE / BAREFOOT GRID
========================================================= */
.barefoot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.barefoot-vertical {
  aspect-ratio: 4 / 5;
}

.barefoot-horizontal {
  aspect-ratio: 3 / 2;
}

.barefoot-grid .media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   FREELANCE / YOUTUBE VIDEO GRID
========================================================= */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.youtube-card {
  background: #000000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.youtube-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   ABOUT PAGE
========================================================= */
.about-simple {
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px 12px 30px;
}

.about-heading {
  max-width: 1400px;
  margin: 0 auto 42px;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 52px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image-wrap {
  width: 100%;
}

.about-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.about-copy {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #FFFFFF;
}

.about-copy p + p {
  margin-top: 34px;
}

/* =========================================================
   PDF EMBED
========================================================= */
.pdf-fullscreen {
  width: 100%;
  height: 100vh;
}

.pdf-fullscreen iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================
   CONTACT CTA
========================================================= */
.contact-cta {
  width: 100%;
  padding: 30px 20px 40px;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.contact-left {
  justify-self: end;
  text-align: right;
}

.contact-right {
  justify-self: start;
  text-align: left;
}

.contact-left,
.contact-right {
  font-size: 1.1rem;
  opacity: 0.7;
  white-space: nowrap;
}

.contact-button {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.contact-button:hover {
  background: #FFFFFF;
  color: #000000;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .graphics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .graphics-grid.ten-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-vertical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-horizontal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .football-graphics-grid,
  .gameday-photo-grid,
  .fall-photo-grid,
  .media-day-grid,
  .recruiting-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fg1,
  .fg2,
  .fg3,
  .fg4,
  .fg5,
  .fg6,
  .fg7,
  .gd1,
  .gd2,
  .gd3,
  .gd4,
  .gd5,
  .gd6,
  .gd7,
  .f1,
  .f2,
  .f3,
  .f4,
  .f5,
  .f6,
  .f7,
  .md1,
  .md2,
  .md3,
  .md4,
  .md5,
  .md6,
  .r1,
  .r2,
  .r3,
  .r4,
  .r5 {
    grid-column: auto;
  }

  .sodbusters-graphics-grid,
  .sodbusters-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .four-col-grid,
  .identity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .barefoot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .about-heading {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 380px 1fr;
    gap: 36px;
  }
}

@media (max-width: 1150px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px 10px;
  }

  .feature-left,
  .feature-right {
    grid-column: span 2;
    grid-row: auto;
  }

  .top-small-1,
  .top-small-2,
  .top-small-3,
  .top-small-4,
  .bottom-small-1,
  .bottom-small-2,
  .bottom-small-3,
  .bottom-small-4 {
    grid-column: auto;
    grid-row: auto;
  }

  .project-name {
    font-size: 2.1rem;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    column-gap: 12px;
    padding: 18px 20px;
  }

  .desktop-links,
  .desktop-icons {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-title {
    font-size: 3rem;
    justify-self: center;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .four-col-grid,
  .identity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .barefoot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .youtube-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .about-heading {
    font-size: 1.9rem;
    margin-bottom: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-copy {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .sodbusters-graphics-grid,
  .sodbusters-photo-grid {
    grid-template-columns: 1fr;
  }

  .contact-row {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .contact-left,
  .contact-right {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .header-inner {
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    padding: 16px 16px;
  }

  .menu-toggle {
    display: flex;
    justify-self: start;
  }

  .desktop-links,
  .desktop-icons {
    display: none;
  }

  .site-title {
    font-size: 2.2rem;
    justify-self: center;
    grid-column: 2 / 3;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .feature-left,
  .feature-right {
    grid-column: span 2;
  }

  .graphics-grid,
  .graphics-grid.ten-grid,
  .photo-vertical-grid,
  .photo-horizontal-grid,
  .video-grid,
  .four-col-grid,
  .identity-grid,
  .barefoot-grid,
  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .football-graphics-grid,
  .gameday-photo-grid,
  .fall-photo-grid,
  .media-day-grid,
  .recruiting-photo-grid {
    grid-template-columns: 1fr;
  }

  .mobile-nav a {
    font-size: 1.25rem;
    padding: 14px 0;
  }

  .mobile-icons {
    gap: 28px;
    margin-top: 20px;
  }

  .mobile-icons a {
    width: 52px;
    height: 52px;
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 2.2rem;
  }

  .contact-cta {
    padding: 24px 18px 32px;
  }

  .contact-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .softball-page .softball-graphics-grid {
    grid-template-columns: 1fr;
  }

  .softball-page .sg1,
  .softball-page .sg2,
  .softball-page .sg3,
  .softball-page .sg4,
  .softball-page .sg5,
  .softball-page .sg6,
  .softball-page .sg7,
  .softball-page .sg8,
  .softball-page .sg9,
  .softball-page .sg10 {
    grid-column: auto;
  }
}
@media (max-width: 700px) {
  .contact-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  /* Hide side text on mobile */
  .contact-left,
  .contact-right {
    display: none;
  }

  /* Keep button centered and sized nicely */
  .contact-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}