/* Proyectos Entregados Grid */
.pc-entregados-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
  margin: 22px auto 10px;
}

/* Card Container - Matching Main Catalog */
.pc-entregado-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform;
  opacity: 0;
  transform: translateY(-100px);
  cursor: default;
}

.pc-entregado-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pc-entregado-card.pc-revealed {
  opacity: 1;
  transform: translateY(0);
  animation: dropFromTop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes dropFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image Section - Matching Main Catalog */
.pc-entregado-media {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
}

/* Content Section - Matching Main Catalog */
.pc-entregado-content {
  padding: 16px 16px 18px;
  background: #fff;
  position: relative;
  z-index: 1;
}

/* Logo - Matching Main Catalog */
.pc-entregado-logo {
  display: flex;
  justify-content: center;
  margin: 0px 0 10px;
}

.pc-entregado-logo img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

/* Separator Line - Orange */
.pc-entregado-separator {
  width: 100%;
  height: 1px;
  background: #f7941d5e;
  margin: 0 0 12px 0;
}

/* District Title - Matching Main Catalog */
.pc-entregado-title {
  margin: 0 0 12px 0;
  font-size: 15px;
  font-weight: 700;
  color: #0b2a45;
  font-family: "PolySans", sans-serif;
  text-align: center;
}

/* Address - Matching Main Catalog */
.pc-entregado-address {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #0b2a45;
  font-family: "PolySans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .pc-entregados-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .pc-entregado-media {
    height: 350px;
  }

  .pc-entregado-logo img {
    max-width: 100px;
    max-height: 50px;
  }

  .pc-entregado-title {
    font-size: 14px;
  }

  .pc-entregado-address {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .pc-entregados-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pc-entregado-media {
    height: 300px;
  }

  .pc-entregado-content {
    padding: 14px;
  }

  .pc-entregado-logo img {
    max-width: 90px;
    max-height: 45px;
  }
}
