/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
.block-featured-projects {
  position: relative;
}
.block-featured-projects .swiper-wrapper {
  position: relative;
}
.block-featured-projects .nav-swiper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  right: 10%;
  top: -5rem;
}
.block-featured-projects .nav-swiper > div {
  background: var(--wp--preset--color--light-grey);
  color: #fff;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-featured-projects .nav-swiper > div svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .block-featured-projects .nav-swiper > div svg {
    width: 15px;
    height: 15px;
  }
}
.block-featured-projects .swiper {
  width: 100%;
  height: 100%;
}
.block-featured-projects .project-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--wp--preset--color--light-grey);
}
.block-featured-projects .project-details {
  padding: 2rem;
  font-size: var(--wp--preset--font-size--medium);
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: left;
}
.block-featured-projects .project-title {
  font-weight: 400;
}
.block-featured-projects .project-facts-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: var(--wp--preset--font-size--small);
  border-bottom: 1px solid var(--wp--preset--color--primary);
  padding: 0.5rem 0;
}
.block-featured-projects .project-facts-row .div {
  width: 50%;
}
.block-featured-projects .project-facts-row .project-fact-value {
  text-align: right;
}
.block-featured-projects .project-link {
  color: #fff;
  font-size: var(--wp--preset--font-size--small);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 2rem;
  position: relative;
}
.block-featured-projects .project-link:hover {
  color: var(--wp--preset--color--primary);
}
.block-featured-projects .project-link::after {
  margin-left: 0.5rem;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 1rem;
  content: "+";
}
.block-featured-projects .swiper-slide {
  display: flex;
  height: auto;
}
.block-featured-projects .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}