.featured-industry-work {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .featured-industry-work {
    padding: 40px 0;
  }
}
.featured-industry-work .industry-work-projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .featured-industry-work .industry-work-projects {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    grid-auto-rows: max-content;
  }
}
.featured-industry-work .project-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  break-inside: avoid;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.featured-industry-work .project-item:has(.project-link-overlay):hover .project-image img {
  transform: scale(1.05);
}
.featured-industry-work .project-item:has(.project-link-overlay):hover .project-heading,
.featured-industry-work .project-item:has(.project-link-overlay):hover .project-subheading {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .featured-industry-work .project-item.aspect-tall {
    grid-row: span 2;
  }
}
@media (min-width: 768px) {
  .featured-industry-work .project-item.aspect-short {
    grid-row: span 1;
  }
}
.featured-industry-work .project-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-decoration: none;
  color: transparent;
}
.featured-industry-work .project-link-overlay:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}
.featured-industry-work .project-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
}
.featured-industry-work .project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
@media (max-width: 450px) {
  .featured-industry-work .project-image img {
    object-position: top;
  }
}
.featured-industry-work .project-item.aspect-tall .project-image {
  aspect-ratio: 3/4;
  max-height: 620px;
}
.featured-industry-work .project-item.aspect-short .project-image {
  aspect-ratio: 4/3;
}
.featured-industry-work .project-content {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .featured-industry-work .project-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.featured-industry-work .project-subheading {
  color: #B0B8BF;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  font-family: "articulat-cf", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.3px;
}
.featured-industry-work .project-heading {
  font-size: 28px;
  font-weight: 300;
  color: #082B34;
  margin: 0;
  line-height: 1.3;
  font-family: "ivypresto-headline", serif;
}
@media (max-width: 768px) {
  .featured-industry-work .project-heading {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .featured-industry-work .industry-work-projects {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .featured-industry-work .project-item {
    gap: 16px;
  }
  .featured-industry-work .project-item.aspect-tall, .featured-industry-work .project-item.aspect-short {
    grid-row: span 1;
  }
  .featured-industry-work .project-subheading {
    font-size: 14px;
  }
  .featured-industry-work .project-heading {
    font-size: clamp(18px, 5vw, 24px);
  }
}