.post-card {
  display: flex;
  text-decoration: none;
  border: 1px solid var(--radiant-ui-components-library--color--stroke);
  border-radius: 1.4rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background-color: var(--alley-component-library--neutral--off-white);
}
.container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(20,39,78,0.1);
}

.post-card-image-wrapper {
  width: 30%;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
}

.post-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card-image {
  transform: scale(1.05);
}

.post-card-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
}

.post-card-image-placeholder::after {
    content: 'Нет изображения';
    font-family: Gilroy, Impact, sans-serif;
}
.post-card-content {
  width: 65%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card-title {
  font-size: var(--_website---h5);
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.post-card-excerpt {
  color: var(--radiant-ui-components-library--light-grey);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.post-card-read-more {
  display: inline-block;
  color: var(--combine-library--primary-600);
  font-weight: 600;
  margin-top: auto;
  transition: padding-left 0.3s ease;
  text-decoration: none;
}

.post-card:hover .post-card-read-more {
    padding-left: 5px;
}

.blog-grid {
  display: grid;
  gap: 25px;
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-card {
    flex-direction: column;
  }
  .post-card-image-wrapper {
    width: 100%;
  }
  .post-card-content {
    width: 100%;
  }
  
}
