* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
li {
  list-style: none;
}
a {
  color: black;
  text-decoration: none;
}
.navbar {
  margin: 0 auto;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  max-width: 1440px;
}
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1440px;
  padding-top: 75px;
}
.nav-branding {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
}
.nav-link {
  font-family: "abadi", sans-serif;
  font-weight: 200;
  font-style: normal;
  transition: 0.5s ease;
}
.nav-link:hover {
  color: rgb(209, 209, 209);
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #6a7e76;
}
#active {
  font-family: "abadi", sans-serif;
  text-decoration: underline;
  color: rgb(0, 0, 0);
}
.logo-size {
  max-height: 185px;
  max-width: 260px;
  margin-top: 130px;
}
.footer {
  background-color: #6a7e76;
  color: white;
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "abadi", sans-serif;
  font-weight: 200;
}

.linkedin-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -3px;
}

.linkedin-icon {
  transition: transform 0.3s ease;
}

.linkedin-icon:hover {
  transform: scale(1.1);
}
.gallery {
  display: grid;
  gap: 10px;
  padding: 100px 180px;
}

.gallery-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.gallery-row.three img {
  width: 250px;
  height: 200px;
}

.gallery-row.two img {
  width: calc((250px * 3 + 20px) / 2);
  height: 220px;
}

.gallery-row img {
  aspect-ratio: 5/2;
  cursor: pointer;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.7s ease;
}

.gallery-row img:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.lightbox img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox .nav {
  color: white;
  font-size: 3rem;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s ease;
}

.lightbox .nav:hover {
  opacity: 0.7;
}

.close-btn {
  position: absolute;
  top: -30px;
  right: 5px;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  padding: 5px 12px;
  cursor: pointer;
}

.linkedin-icon {
  width: 50px;
  height: 50px;
}

.linkedin-link {
  display: inline-block;
  margin-bottom: 10px;
}

@media (max-width: 1150px) {
  .gallery {
    margin-top: 30px;
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gallery-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .gallery-row img {
    width: 80vw;
    height: 90vw;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .gallery-row.two img,
  .gallery-row.three img {
    width: 90vw;
    height: 90vw;
    aspect-ratio: 1 / 1;
  }

  .lightbox img {
    max-width: 90vw;
    max-height: 70vh;
  }

  .lightbox-content {
    flex-direction: column;
    gap: 20px;
  }

  .lightbox .nav {
    font-size: 2rem;
  }

  .close-btn {
    top: 10px;
    right: 10px;
    position: fixed;
  }
}
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 101;
  }

  .logo-size {
    margin-top: 30px;
    max-height: 170px;
    max-width: 250px;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 50px;
    right: 30px;
    z-index: 102;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    transition: 0.3s ease;
    z-index: 100;
    padding-top: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 16px 0;
  }
  .logo-size {
    position: relative;
    z-index: 103;
  }
  .nav-menu {
    z-index: 100;
  }
}
.gallery-graphic-design {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  width: 90vw;
  max-width: 800px;
  height: auto;
  margin: 100px auto;
  padding-top: 60px;
}

.grid-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  text-decoration: none;
}

.grid-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.grid-box:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-box:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 18px;
  text-align: center;
  font-family: "abadi", sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .gallery-graphic-design {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
    margin: 20px auto;
    padding: 30px;
    margin-top: 50px;
  }

  .text {
    font-size: 16px;
  }
}
.about-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  box-sizing: border-box;
  margin-top: 50px;
}

.green-strip {
  position: relative;
  background-color: #dae9da;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 265px;
}

.about-photo {
  width: 350px;
  height: 350px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  z-index: 2;
}

.label {
  position: absolute;
  color: black;
  font-weight: 300;
  padding: 4px 8px;
  z-index: 3;
}

.top-left {
  top: 0;
  left: 280px;
  transform: translateY(-50%);
  font-size: 40px;
}

.bottom-right {
  bottom: 0;
  right: 250px;
  transform: translateY(50%);
  font-size: 140px;
}
#meetyour {
  font-family: "abadi", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#designer {
  font-family: "absolute-beauty", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.about-paragraph {
  max-width: 775px;
  margin: 60px auto;
  margin-top: -10px;
  padding: 0 20px;
  font-family: "abadi", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.8;
  text-align: justify;
  color: #000;
}
.work-together {
  margin: 60px 0;
}

.work-green-strip {
  background-color: #dae9da;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: -20px;
}

.work-title {
  font-size: 36px;
  font-family: "abadi", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.work-email {
  font-size: 18px;
  font-family: "abadi", sans-serif;
  font-weight: 300;
  margin-bottom: 20px;
}

.work-button {
  background-color: #e76f51;
  color: white;
  font-family: "abadi", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.work-button:hover {
  background-color: #d3664b;
}

.intro-strip {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 80px 40px;
}

.home-green-strip {
  position: absolute;
  background-color: #dae9da;
  width: 100%;
  height: 300px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  z-index: 2;
}

.intro-text {
  flex: 1;
  padding-left: 60px;
}

.intro-text h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: "abadi", sans-serif;
}

.intro-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: "abadi", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.about-button {
  padding: 12px 24px;
  background-color: #e76f51;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-family: "abadi", sans-serif;
  font-weight: 300;
  font-style: normal;
  transition: background-color 0.3s ease;
}

.about-button:hover {
  background-color: #d3664b;
}

.image-wrapper {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  margin-top: -10px;
}

.intro-image {
  width: 450px;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .intro-strip {
    padding: 60px 20px;
  }
  .home-green-strip {
    position: absolute;
    background-color: #dae9da;
    width: 100%;
    height: 400px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    margin-top: 130px;
  }

  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-wrapper {
    order: -1;
    margin-bottom: 20px;
  }

  .intro-image {
    padding: 0;
    width: 320px;
    height: 350px;
  }

  .intro-text {
    padding: 0;
    width: 100%;
    max-width: 450px;
  }

  .intro-text h2 {
    font-size: 28px;
  }

  .intro-text p {
    font-size: 16px;
  }

  .about-button {
    margin-top: -10px;
    display: inline-block;
  }
  .featured {
    font-family: "abadi", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 70px;
    letter-spacing: 5px;
    color: #dae9da;
    margin-top: 70px;
  }

  .projects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    font-family: "absolute-beauty", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 120px;
    color: #000;
    pointer-events: none;
    margin-top: -10px;
  }
  .selected {
    font-family: "abadi", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 90px;
    letter-spacing: 5px;
    color: #dae9da;
  }

  .photography {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    font-family: "absolute-beauty", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 120px;
    color: #000;
    pointer-events: none;
    margin-top: 2px;
  }
  #featured-mobile {
    font-size: 50px;
  }
  #projects-mobile {
    font-size: 100px;
  }
  #selected-mobile {
    font-size: 50px;
  }
  #photography-mobile {
    font-size: 80px;
  }
}

.section-title {
  position: relative;
  text-align: center;
  margin: 100px 0;
  margin-top: -40px;
}

.featured {
  font-family: "abadi", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 90px;
  letter-spacing: 5px;
  color: #dae9da;
}

.projects {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-family: "absolute-beauty", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 120px;
  color: #000;
  pointer-events: none;
  margin-top: -10px;
}
.section-title {
  position: relative;
  text-align: center;
  margin: 100px 0;
  margin-top: -40px;
}

.featured {
  font-family: "abadi", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 90px;
  letter-spacing: 5px;
  color: #dae9da;
}

.projects {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-family: "absolute-beauty", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 120px;
  color: #000;
  pointer-events: none;
  margin-top: -10px;
}

.selected {
  font-family: "abadi", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 90px;
  letter-spacing: 5px;
  color: #dae9da;
}

.photography {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-family: "absolute-beauty", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 120px;
  color: #000;
  pointer-events: none;
  margin-top: 2px;
}
.section-title {
  position: relative;
  text-align: center;
  margin: 100px 0;
  margin-top: -40px;
}

.featured {
  font-family: "abadi", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 90px;
  letter-spacing: 5px;
  color: #dae9da;
}

.projects {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-family: "absolute-beauty", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 120px;
  color: #000;
  pointer-events: none;
  margin-top: -10px;
}

.section-title {
  position: relative;
  text-align: center;
  margin: 100px 0;
  margin-top: -40px;
}

.featured {
  font-family: "abadi", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 90px;
  letter-spacing: 5px;
  color: #dae9da;
}

.projects {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-family: "absolute-beauty", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 120px;
  color: #000;
  pointer-events: none;
  margin-top: -10px;
}

.selected {
  font-family: "abadi", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 90px;
  letter-spacing: 5px;
  color: #dae9da;
}

.photography {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  font-family: "absolute-beauty", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 120px;
  color: #000;
  pointer-events: none;
  margin-top: 2px;
}

.home-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 90vw;
  max-width: 1000px;
  margin: 100px auto;
  padding-top: 60px;
  margin-top: -50px;
  flex-wrap: wrap;
}

.home-gallery-item {
  position: relative;
  width: 100%;
  max-width: 300px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.home-gallery-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  text-decoration: none;
}

.home-gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.home-gallery-item:hover .home-gallery-box img {
  transform: scale(1.05);
}

.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-gallery-item:hover .home-overlay {
  opacity: 1;
}

.home-text {
  color: white;
  font-size: 18px;
  text-align: center;
  font-family: "abadi", sans-serif;
  font-weight: 300;
}

.gallery-title {
  text-align: center;
  font-family: "Abadi", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #000;
  margin-top: 10px;
}

.portfolio-button {
  display: flex;
  justify-content: center;
  margin-top: -70px;
  margin-bottom: 100px;
}

.view-portfolio-btn {
  padding: 12px 24px;
  background-color: #e76f51;
  color: #fff;
  font-family: "Abadi", sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-weight: 300;
}

.view-portfolio-btn:hover {
  background-color: #d3664b;
}

@media screen and (max-width: 768px) {
  .home-gallery-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }

  .home-text {
    font-size: 16px;
  }

  .gallery-title {
    font-size: 16px;
  }
}
.photography-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.view-photography-btn {
  padding: 12px 24px;
  background-color: #e76f51;
  color: #fff;
  font-family: "Abadi", sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-weight: 300;
}

.view-photography-btn:hover {
  background-color: #d3664b;
}
#space {
  margin-top: -68px;
}
.title-strip {
  background-color: #dae9da;
  padding: 50px 20px;
  text-align: center;
  color: #000;
  margin-top: 100px;
}

.title-strip-heading {
  font-family: "abadi", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 30px;
}
.title-strip-sub-heading {
  font-family: "abadi", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  margin-bottom: 30px;
}

.title-strip-info {
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: left;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-family: "abadi", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.title-strip-info p {
  margin-bottom: 15px;
}

.title-strip-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.button {
  padding: 10px 14px;
  background-color: #e76f51;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-family: "abadi", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
}

.button:hover {
  background-color: #d3664b;
}
.sosb-gallery-container {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 80px;
  box-sizing: border-box;
}

.sosb-gallery-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sosb-gallery-large img {
  width: 100%;
  height: 750px;
  object-fit: cover;
  margin-bottom: 30px;
}

.sosb-gallery-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.sosb-gallery-grid-2x2 img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sosb-gallery-bottom-row {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  align-items: stretch;
}

.sosb-bottom-left,
.sosb-bottom-right {
  display: flex;
  align-items: stretch;
}

.sosb-bottom-left {
  flex: 2;
  height: 600px;
}

.sosb-bottom-right {
  flex: 1;
  height: 600px;
}

.sosb-bottom-left img,
.sosb-bottom-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .sosb-gallery-container {
    padding: 0 30px;
    margin: 60px auto;
  }

  .sosb-gallery-large img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .sosb-gallery-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .sosb-gallery-grid-2x2 img {
    aspect-ratio: auto;
    height: auto;
  }

  .sosb-gallery-bottom-row {
    flex-direction: column;
  }

  .sosb-bottom-left,
  .sosb-bottom-right {
    height: auto;
  }

  .sosb-bottom-left img,
  .sosb-bottom-right img {
    height: auto;
    object-fit: contain;
  }
}

.yir-gallery-large img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  margin-bottom: 30px;
}
.uc-vertical-stack {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.uc-vertical-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.uc-square-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.about-title {
  max-width: 1440px;
}
@media (max-width: 1300px) {
  .green-strip {
    flex-direction: column;
    padding: 60px 0;
    max-height: none;
    height: 400px;
    position: relative;
  }

  .about-title {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-photo {
    width: 320px;
    height: 320px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    z-index: 2;
  }

  .label {
    position: absolute;
    color: black;
    font-weight: 300;
    padding: 4px 8px;
    z-index: 3;
  }

  .top-left {
    top: -60px;
    left: 26%;
    transform: none;
    font-size: 20px;
  }

  .bottom-right {
    bottom: -102px;
    right: 23%;
    transform: none;
    font-size: 45px;
  }

  #meetyour {
    font-family: "abadi", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
  }

  #designer {
    font-family: "absolute-beauty", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 110px;
  }
}
.iconbook-gallery {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.iconbook-gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  width: 100%;
}

.iconbook-gallery-featured {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.iconbook-gallery-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iconbook-gallery-thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 768px) {
  .iconbook-gallery-grid {
    gap: 30px;
  }

  .iconbook-gallery-column {
    gap: 24px;
  }
}
.critique-title-strip {
  background-color: #dae9da;
  padding: 50px 20px;
  text-align: center;
  color: #000;
  margin-top: 100px;
}
.type-designer-title-strip {
  background-color: #dae9da;
  padding: 50px 20px;
  text-align: center;
  color: #000;
  margin-top: 100px;
}
.typecampaign-gallery {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.typecampaign-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  width: 100%;
}

.typecampaign-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.typecampaign-image.short {
  height: 250px;
}

.typecampaign-row-pair {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 884px;
}

.typecampaign-half {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  .typecampaign-row-pair {
    flex-direction: row;
  }

  .typecampaign-half {
    width: 50%;
  }

  .typecampaign-image.short {
    height: 300px;
  }
}
.critique-gallery-column {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
}

.critique-column-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  .critique-gallery-column {
    padding: 0 20px;
    gap: 24px;
    margin: 50px auto;
  }
}
.futureframe-gallery-container {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.futureframe-gallery-large {
  width: 100%;
}

.futureframe-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  .futureframe-gallery-container {
    padding: 0 20px;
    margin: 50px auto;
  }
}
.keystone-gallery-container {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.keystone-gallery-large img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 40px;
}

.keystone-gallery-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}

.keystone-one-third,
.keystone-two-thirds {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .keystone-gallery-container {
    padding: 0 20px;
    margin: 50px auto;
  }

  .keystone-gallery-row {
    grid-template-columns: 1fr;
  }

  .keystone-one-third,
  .keystone-two-thirds {
    height: auto;
  }
}
.underrepresented-gallery-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.underrepresented-poster img {
  width: 100%;
  height: auto;
  max-height: 2400px;
  object-fit: cover;
  display: block;
}

.underrepresented-support img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .underrepresented-gallery-container {
    padding: 0 20px;
    margin: 50px auto;
    gap: 30px;
  }

  .underrepresented-poster img {
    max-height: 1400px;
  }
}
.yearreview-gallery-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.yearreview-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  .yearreview-gallery-container {
    padding: 0 20px;
    margin: 50px auto;
    gap: 30px;
  }
}
.artifactnews-gallery-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.artifactnews-hero img,
.artifactnews-secondary img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.artifactnews-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.artifactnews-grid-2x2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .artifactnews-gallery-container {
    padding: 0 20px;
    margin: 50px auto;
    gap: 30px;
  }

  .artifactnews-grid-2x2 {
    grid-template-columns: 1fr;
  }
}
.charred-gallery-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.charred-gallery-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.charred-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.charred-grid-2x2 img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.charred-final-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.charred-row-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.charred-row-three img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.charred-row-wide img {
  width: 100%;
  height: 900px;
  object-fit: cover;
}
.charred-row-wide-2 img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .charred-gallery-container {
    padding: 0 20px;
  }

  .charred-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .charred-row-three {
    grid-template-columns: 1fr;
  }

  .charred-row-three img,
  .charred-row-wide img {
    height: auto;
  }
  .charred-row-wide-2 img {
    height: auto;
  }
}
.missioncentral-gallery {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.missioncentral-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.missioncentral-large img {
  height: 800px;
  margin-bottom: 40px;
}

.missioncentral-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.missioncentral-row-two img {
  height: 600px;
}

.missioncentral-large-700 img {
  height: 820px;
  margin-bottom: 40px;
}

.missioncentral-vertical-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.missioncentral-vertical-pair img {
  height: 750px;
  object-fit: cover;
}

.missioncentral-square-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.missioncentral-square-pair img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .missioncentral-gallery {
    padding: 0 20px;
    margin: 60px auto;
  }

  .missioncentral-row-two,
  .missioncentral-vertical-pair,
  .missioncentral-square-pair {
    grid-template-columns: 1fr;
  }

  .missioncentral-large img,
  .missioncentral-large-700 img,
  .missioncentral-row-two img,
  .missioncentral-vertical-pair img,
  .missioncentral-square-pair img {
    width: 100%;
    height: auto;
  }
}
