/* INTERIOR PROJECTS SECTION
-------------------------------------------- */
.interior-projects {
  position: relative;
  padding: 80px 0 60px 0;
  background-color: #f1f1f1;
  width: 100%;
  overflow: visible;
}
@media (max-width: 991px) {
  .interior-projects {
    padding: 60px 0 40px 0;
  }
}
@media (max-width: 767px) {
  .interior-projects {
    padding: 40px 0 30px 0;
  }
}

.interior-projects .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 42px;
  overflow: visible;
}
@media (max-width: 1024px) {
  .interior-projects .container {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .interior-projects .container {
    padding: 0 24px;
  }
}

.projects__block-slogan {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .projects__block-slogan {
    margin-bottom: 40px;
  }
}

.projects__line {
  width: 100%;
  height: 3px;
  background-color: #000000;
  margin: 0 0 20px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .projects__line {
    margin-bottom: 15px;
  }
}

.projects__slogan {
  text-align: left;
}

.projects__section-title {
  font-family: "Poppins", "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 20px;
  margin: 0;
  text-transform: none;
  text-align: left;
}
@media (max-width: 767px) {
  .projects__section-title {
    font-size: 16px;
  }
}

.projects__header {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .projects__header {
    margin-bottom: 30px;
  }
}

.projects__header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .projects__header-inner {
    gap: 20px;
  }
}

.projects__title {
  font-family: "Poppins", "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 600;
  color: #000;
  margin: 0;
  line-height: 80px;
  letter-spacing: -0.05em;
  flex: 1;
}
@media (max-width: 1200px) {
  .projects__title {
    font-size: 60px;
    line-height: 66px;
  }
}
@media (max-width: 991px) {
  .projects__title {
    font-size: 48px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .projects__title {
    font-size: 36px;
    line-height: 40px;
  }
}

.projects__navigation {
  display: none;
}

.projects__nav-arrow--cta {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.projects__nav-arrow--cta .arrow-line {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 7.5px);
  width: 15px;
  height: 2px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  z-index: 1;
}
.projects__nav-arrow--cta .arrow-head {
  position: absolute;
  width: 9px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
  z-index: 1;
}
.projects__nav-arrow--cta .arrow-head--top {
  right: 2px;
  top: 6px;
  border-radius: 10px 10px 2px 10px;
  transform: rotate(45deg);
}
.projects__nav-arrow--cta .arrow-head--bottom {
  right: 2px;
  bottom: 6px;
  border-radius: 10px 2px 10px 10px;
  transform: rotate(-45deg);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  overflow: visible;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .projects__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .projects__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.projects__item {
  position: relative;
  overflow: visible;
  z-index: 1;
}
.projects__item.projects__item--tall .projects__image {
  aspect-ratio: 3/4;
}
@media (max-width: 767px) {
  .projects__item.projects__item--tall .projects__image {
    aspect-ratio: 4/3;
  }
}
.projects__item:hover {
  z-index: 10;
}

.projects__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.projects__link:hover {
  transform: translateY(-8px);
}
.projects__link:hover .projects__img {
  transform: none;
}

.projects__image {
  position: relative;
  aspect-ratio: 3/3.5;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .projects__image {
    aspect-ratio: 4/3;
    margin-bottom: 12px;
  }
}

.projects__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: none;
}

.projects__item-content {
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.projects__item-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.03em;
  line-height: 32px;
  margin: 0 0 6px;
}
@media (max-width: 1200px) {
  .projects__item-title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .projects__item-title {
    font-size: 20px;
    line-height: 28px;
  }
}

.projects__item-description {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #828487;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 20px;
}

.projects__cta {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 991px) {
  .projects__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 40px;
  }
}

.projects__cta-decor {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  width: 100%;
}

.projects__cta-line {
  flex: 1;
  height: 1px;
  background-color: #d6dbdc;
  position: relative;
  overflow: hidden;
}

.projects__cta-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d6dbdc;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.projects__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 32px;
}
@media (max-width: 767px) {
  .projects__cta-link {
    font-size: 20px;
    line-height: 28px;
    gap: 16px;
  }
}

.projects__cta-link-text {
  display: block;
}

.projects__cta-btn {
  width: 46px;
  height: 46px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .projects__cta-btn {
    width: 40px;
    height: 40px;
  }
}

.projects__cta-link:hover .projects__cta-btn {
  transform: translateY(-1px);
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1);
}

.projects__cta-link:hover .arrow-line {
  left: -6px;
  width: 23px;
}

.projects__cta-link:hover .arrow-head--top {
  right: 2px;
  top: 7px;
  width: 7px;
  height: 2px;
}

.projects__cta-link:hover .arrow-head--bottom {
  right: 2px;
  bottom: 7px;
  width: 7px;
  height: 2px;
}

.projects__cta:hover .projects__cta-line::after {
  transform: translateX(100%);
}