.main-project-container {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.main-project-container h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.p-meta {
  display: flex;
  flex-direction: column; 
  gap: 10px;
  margin-bottom: 40px;
}

.p-category {
  color: var(--color-grey);
  font-size: 20px;
  font-weight: 500;
}

.p-date {
  color: var(--color-dark);
}

.p-date span {
  color: var(--color-grey);
}

.p-image-container {
  position: relative; 
  width: 100%;
  margin-bottom: 60px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-img-main {
  position: relative;
  z-index: 2; 
  width: 100%;
  height: auto;
  border-radius: 8px; 
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

.p-img-shadow {
  position: absolute;
  z-index: 1; 
  top: 10px; 
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px; 
  object-fit: cover; 
  filter: blur(25px) brightness(1.1); 
  opacity: 0.7; 
  transform: scale(1.03); 
}

.p-full-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-grey);
}

.other-projects-section {
  background-color: var(--background);
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .p-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}