.list-post-type {
  padding: 2rem 0;
}
.list-post-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.list-post-type-title {
  color: #000;
  font-weight: 400;
  font-size: 2rem;
  margin: 0;
}
.list-post-type-title b {
  color: #BB0825;
}
.list-post-type-grid {
  display: grid;
  gap: 1.9rem;
}
.list-post-type-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.list-post-type-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.list-post-type-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.list-post-type-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.post-type-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.post-type-card-image {
  width: 100%;
  height: 15.25rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.post-type-card-no-image {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.post-type-card-content {
  padding: 1.3rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.post-type-card-content hr {
  margin: 0;
}
.post-type-card-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
  text-transform: capitalize;
}
.post-type-card-subtitle {
  font-size: 0.75rem;
  color: #898989;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}
.post-type-card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0rem 0 1rem 0;
}
.post-type-card-specs .spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
.post-type-card-specs .spec-item .spec-label {
  font-size: 0.75rem;
  color: #898989;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}
.post-type-card-specs .spec-item .spec-value {
  font-size: 0.75rem;
  color: #000;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}
.post-type-card-price-wrapper {
  margin: 1rem 0;
  margin-bottom:0.6rem;
}
.post-type-card-precio {
  font-size: 1.25rem;
  font-weight: 600;
  color: #BB0825;
  margin: 0;
  line-height: 1.2;
}
.post-type-card-price-monthly {
  display: none;
  font-size: 0.875rem;
  color: #666;
  margin: 0.25rem 0 0;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .list-post-type-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .list-post-type-grid {
    gap: 1.5rem;
  }
  .list-post-type-grid-2, .list-post-type-grid-3, .list-post-type-grid-4, .list-post-type-grid-5 {
    grid-template-columns: repeat(1, 1fr);
  }
  .list-post-type-title {
    font-size: 1.5rem;
  }
  .list-post-type-button {
    width: 100%;
    justify-content: center;
  }
  .post-type-card-image {
    height: 220px;
  }
  .post-type-card-content {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  .post-type-card-title {
    font-size: 1.25rem;
  }
  .post-type-card-subtitle {
    font-size: 0.9rem;
  }
  .post-type-card-specs {
    gap: 0.75rem;
  }
  .post-type-card-specs .spec-item .spec-label {
    font-size: 0.8rem;
  }
  .post-type-card-specs .spec-item .spec-value {
    font-size: 0.9rem;
  }
  .post-type-card-precio {
    font-size: 1.75rem;
  }
  .post-type-card-price-monthly {
    font-size: 0.8rem;
  }
  .post-type-card-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .list-post-type-grid-4, .list-post-type-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}/*# sourceMappingURL=list-post-type-style.css.map */