

/* Start:/local/templates/main/components/bitrix/news.list/blog/style.css?17625615871602*/
.blog-list {
  padding: 0;
}

.blog-list__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .blog-list__items {
    gap: 24px;
  }
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  min-height: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-card__content {
  flex: 1;
  padding: 32px;
  display: flex;
  align-items: center;
  min-height: 200px;
}

.blog-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

.blog-card__title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card__title a:hover {
  color: #0066cc;
}

.blog-card__image {
  display: block;
  width: 400px;
  min-width: 400px;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    align-items: stretch;
  }
  
  .blog-card__content {
    padding: 24px;
    min-height: auto;
  }
  
  .blog-card__title {
    font-size: 20px;
  }
  
  .blog-card__image {
    width: 100%;
    min-width: 100%;
    height: 240px;
    order: -1;
  }
}

.blog-list__pager {
  margin-top: 48px;
  text-align: center;
}


/* End */
/* /local/templates/main/components/bitrix/news.list/blog/style.css?17625615871602 */
