.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 20px; */
  /* height: 785px; */
}
.project-card {
  position: relative;
  display: block;
  padding: 30px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a1a1a;
  min-height: 400px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.projects-container a:nth-child(2) {
  margin-top: -220px;
}

.projects-container a:nth-child(3) {
  margin-top: -220px;
}

.project-card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: transform 0.4s ease-out;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: top;
}
.project-card:hover .project-card-background {
  transform: scale(1.05);
}
.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    90deg,
    rgba(26, 6, 48, 0.9) 0%,
    rgba(26, 6, 48, 0.5) 70%,
    rgba(26, 6, 48, 0.2) 100%
  ); */
  z-index: 2;
}
.project-card-content {
  position: relative;
  z-index: 3;
}
.project-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 20px 0;
  max-width: 80%;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e0e0e0;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
}
.status-message {
  text-align: center;
  font-size: 1.2rem;
  padding: 40px;
}

div#projects-more a {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  vertical-align: middle;
  color: var(--color-background);
  background-color: var(--color-text);
  padding: 8px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 40px;
}

div#projects-more {
  padding: 40px 0 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
