

/* Start:/local/templates/pink/components/bitrix/news/articles/bitrix/news.list/.default/style.css?17853326941294*/
/* Список статей */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 60px;
}

/* Карточка статьи — горизонтальный флекс */
.article-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 0.25rem 0.25rem 0.25rem 0;
}

/* Блок с изображением слева */
.article-image {
  flex-shrink: 0;
  width: 400px;
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  background: #e9edf4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.02);
}

/* Текстовый блок справа */
.article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.5rem 0.5rem 0;
  min-width: 0; /* предотвращает переполнение */
}

.article-title {
  margin-bottom: 0.1rem;
}

.article-description {
  max-width: 100%;
}

@media screen and (max-width: 800px) {
	.article-card {
		flex-direction: column;
	}

	.article-image {
		width: 100%;
	}
}
/* End */
/* /local/templates/pink/components/bitrix/news/articles/bitrix/news.list/.default/style.css?17853326941294 */
