/* Upcoming projects — matches Recent Projects card layout on the homepage */
.akshay-upcoming-section {
  --akshay-navy: #1b2a41;
  --akshay-green: #6aae2e;
  padding-top: 0;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
}

.akshay-upcoming-section .akshay-section-headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.akshay-upcoming-section .akshay-section-label {
  font-family: "EB Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--akshay-navy);
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.2;
}

.akshay-upcoming-section .akshay-section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--akshay-navy);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

.akshay-project-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.akshay-project-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.akshay-project-row--two .akshay-project-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.akshay-project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 60vh;
  padding: 30px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.akshay-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 42, 65, 0.15) 0%,
    rgba(27, 42, 65, 0.75) 100%
  );
  border-radius: 20px;
  z-index: 0;
}

.akshay-project-card > * {
  position: relative;
  z-index: 1;
}

.akshay-project-card .akshay-project-status {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: var(--akshay-green);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

.akshay-project-card .akshay-project-location {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.akshay-project-card .akshay-project-title {
  font-family: "EB Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.akshay-project-card .akshay-project-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 520px;
}

.akshay-portfolio-upcoming {
  padding-top: 60px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .akshay-upcoming-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }

  .akshay-upcoming-section .akshay-section-label {
    font-size: 32px;
  }

  .akshay-upcoming-section .akshay-section-subtitle {
    font-size: 22px;
  }

  .akshay-project-row--two .akshay-project-card {
    flex: 1 1 100%;
    min-height: 45vh;
  }

  .akshay-project-card .akshay-project-title {
    font-size: 26px;
  }
}
