/* Project Archive Styling */
.project-archive-wrapper {
  padding: 40px 0 80px;
  background: #fff;
}

/* Top Section Gradient */
.project-archive-wrapper {
  position: relative;
  padding: 40px 0 80px;
  background: #fff;
}

.archive-gradient-wrapper {
  background-color: transparent;
  background-image: linear-gradient(
    180deg,
    rgba(255, 185, 35, 0.7) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  opacity: 0.6;
  height: 100px;
}

.archive-gradient-overlay {
  background-image: url("https://the7.io/business-advisors/wp-content/uploads/sites/72/2022/10/blob-scene-wide-simple.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  pointer-events: none;
  z-index: 1;
  position: absolute;
}

/* Ensure content stays above gradient */
.breadcrumb-wrapper,
.projects-list-section {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.breadcrumb-wrapper {
  margin-bottom: 40px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #64748b;
}

.breadcrumb a {
  color: #0d263b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffb923;
}

.breadcrumb .separator {
  color: #64748b;
}

.breadcrumb .current {
  color: #ffb923;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Project Row */
.project-row {
  display: flex;
  gap: 60px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.project-row:last-child {
  margin-bottom: 40px;
}

/* Project Image */
.project-image {
  flex: 0 0 50%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Project Content */
.project-content {
  flex: 1;
  padding-top: 20px;
}

.project-title {
  font-size: 32px;
  font-weight: 700;
  color: #0d263b;
  margin: 0 0 16px;
  line-height: 1.2;
}

.project-category {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 20px;
}

.project-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
}

.case-details-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ffb923;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.case-details-btn:hover {
  background: #e6a520;
  color: white;
  transform: translateY(-2px);
}

/* Hover Effects */
.project-row:hover .project-image img {
  transform: scale(1.05);
}

/* Pagination */
.navigation.pagination {
  margin-top: 40px;
  text-align: center;
}

.nav-links {
  display: inline-flex;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8fafc;
  color: #0d263b;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-numbers.current {
  background: #ffb923;
  color: white;
}

.page-numbers:hover:not(.current) {
  background: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-row {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .project-row {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
  }

  .project-image {
    flex: none;
    width: 100%;
  }

  .project-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .project-title {
    font-size: 24px;
  }

  .project-category {
    font-size: 16px;
  }
}
