/* Стили дополнительных опций */
.postpress-section {
  padding: 2rem 0;
  background-color: #fbfbfbfb;
}

.postpress-section .card-title {
  color: #1e293b;
  height: auto;
  margin-bottom: 1.5rem;
  text-align: center;
}

.postpress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.postpress-card {
  background: #dbdada42;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.postpress-card .card-image-container {
  padding: 1rem;
  border-radius: 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
}

.postpress-card .card-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  border-radius: 8px;
}

.postpress-card .card-name {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0;
  object-position: bottom;
}

.postpress-card .card-description {
  /* padding: 0.5rem 0; */
  /* width: 100%; */
  height: auto;
  font-size: 12px;
  color: #000000;
  line-height: 1.4;
  text-align: left;
  margin: 0 15px;
  font-weight: 150;
}

.postpress-card .card-price {
  font-size: 14px;
  color: #3b82f6;
}

/* Адаптация */
@media (max-width: 768px) {
  .postpress-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
