.project-block {
  width: 100%;
}
.project-block.expanded-blurred .project-background {
  transform: scale(1.15) translateY(-15%);
  filter: saturate(0.5) blur(8px);
}
.project-cover {
  position: relative;
  width: 100vw;
  height: 50vh; /* ajustar la altura deseada */
  overflow: hidden;
  cursor: pointer;
}

.project-content{
  display: flex;
  flex-direction: row;
  min-height: 40vw;
}

.project-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-out, filter 0.5s ease-out;
  filter: saturate(1) blur(0);
}

.project-title {
  font-weight: 600;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.project-cover .project-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 7rem;
  font-family: 'Balsamiq Sans';
  text-shadow: 0 0 25px rgba(0,0,0,1);
  margin: 0;
  pointer-events: none;
}

.project-left,
.project-right {
  flex: 1 1 50%;
  transition: flex 0.3s ease;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.project-left {
  padding: 1rem;
}

.project-right {
  padding: 2rem;
}

.project-description {
  color: #000000;
  font-size: 4cqmax;
  margin: 0;
  padding: 0 15%;
}

.container{
  container-type: size;
  height: 100%;
  /* margin: 0% 15%; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.details-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.details-panel.expanded {
  max-height: 70vw;
  opacity: 1;
}

.project-details {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-video {
  width: 90%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
}

.platforms {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 15%;
  justify-content: space-evenly;
}

.platform-icon {
  height: 12cqmax;
}