/* ===================================
   Custom Upcoming Projects Page Styles
   =================================== */

/* ==== Upcoming Badge ==== */
.cause .thumb {
  position: relative;
}

.cause .thumb .upcoming-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.cause .thumb .upcoming-badge span {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--base-color) 0%, var(--hover-color) 100%);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* ==== Upcoming Project Info ==== */
.cause .upcoming-project-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(157, 153, 139, 0.2);
}

.cause .upcoming-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 500;
}

.cause .upcoming-info-item i {
  color: var(--base-color);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.cause .upcoming-info-item strong {
  color: var(--secondary-color);
  font-weight: 700;
}

/* ==== Empty State ==== */
.empty-state {
  padding: 80px 20px;
}

.empty-state__icon {
  margin-bottom: 30px;
}

.empty-state__icon i {
  font-size: 80px;
  color: var(--base-color);
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.empty-state p {
  font-size: 16px;
  color: #949d9c;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.empty-state__cta {
  margin-top: 30px;
}

/* ==== Enhanced CTA Buttons for Upcoming Projects ==== */
.cause .cause__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.cause .cause__cta a {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ==== Responsive ==== */
@media (min-width: 768px) {
  .cause .cause__cta {
    flex-direction: row;
  }
  
  .cause .cause__cta a {
    width: auto;
    flex: 1;
  }
  
  .cause .upcoming-project-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .empty-state {
    padding: 60px 20px;
  }
  
  .empty-state__icon i {
    font-size: 60px;
  }
  
  .empty-state h3 {
    font-size: 24px;
  }
  
  .cause .thumb .upcoming-badge span {
    padding: 6px 16px;
    font-size: 11px;
  }
}
