/* ===== Projects Showcase Page ===== */

.projects-page {
  padding-top: 72px;
  min-height: 100vh;
  background: #ededed;
}

/* Section Header */
.projects-showcase-section {
  padding: 80px 0 100px;
}

.showcase-header {
  margin-bottom: 60px;
}

.showcase-accent-line {
  width: 50px;
  height: 4px;
  background: #c0392b;
  margin-bottom: 20px;
}

.showcase-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: #1a1a2e;
  line-height: 1.25;
}

/* Project Showcase Card */
.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 60px;
  background: #ededed;
  align-items: stretch;
}

.showcase-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d5d5d5;
}

.showcase-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-card-info {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.showcase-card-location {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  font-weight: 400;
}

.showcase-card-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  width: fit-content;
}

.showcase-card-badge.executed {
  background: #e8f5e9;
  color: #2e7d32;
}

.showcase-card-badge.ongoing {
  background: #fff3e0;
  color: #e65100;
}

.showcase-card-divider {
  width: 60px;
  height: 3px;
  background: #c0392b;
  margin-bottom: 24px;
}

.showcase-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 28px;
}

.showcase-card-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #1a1a2e;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.showcase-card-link:hover {
  color: #c0392b;
}

/* Responsive */
@media (max-width: 900px) {
  .showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-card-image {
    aspect-ratio: 16 / 9;
  }

  .showcase-card-info {
    padding: 28px 24px 36px;
  }
}

@media (max-width: 480px) {
  .projects-showcase-section {
    padding: 48px 0 60px;
  }

  .showcase-header {
    margin-bottom: 36px;
  }

  .showcase-card {
    margin-bottom: 40px;
  }

  .showcase-card-name {
    font-size: 1.15rem;
  }

  .showcase-card-info {
    padding: 20px 16px 28px;
  }
}
