

/* Start:/local/templates/aspro-allcorp2/components/bitrix/news.list/presentation/style.css?17870613272725*/
:root {
	--utinet-blue: #0284c7;
	--utinet-bg-card: #77777712;
	--utinet-border: #e2e8f0;
	--utinet-text-main: #333333;
  }
  
  .utinet-presentations {
	padding: 40px 0;
	background-color: #ffffff;
  }
  
  .presentations-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* По умолчанию (на больших экранах) 4 в ряд */
	gap: 20px;
  }
  
  /* Ноутбуки и планшеты в альбомной ориентации — 3 в ряд */
  @media (max-width: 1200px) {
	.presentations-grid {
	  grid-template-columns: repeat(3, 1fr);
	}
  }
  
  /* Планшеты — 2 в ряд */
  @media (max-width: 880px) {
	.presentations-grid {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 16px;
	}
  }
  
  /* Мобильные устройства — 1 в ряд */
  @media (max-width: 560px) {
	.presentations-grid {
	  grid-template-columns: 1fr;
	  gap: 12px;
	}
  }
  
  /* Карточка */
  .pres-card {
	text-decoration: none;
	/* background: var(--utinet-bg-card); */
	border: 1px solid #77777729;
	border-radius: 0px;
	padding: 20px;
	display: block;
	position: relative;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	will-change: transform;
  }
  
  .pres-card:hover {
	/* background: #ffffff; */
	border-color: rgb(65 65 65 / 0);
	  /* box-shadow: 10px 10px rgb(85 85 85 / 21%); */
	  box-shadow: 0 0 23px 0 rgba(0, 0, 0, .1);
  }
  
  .card-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	min-height: 170px;
  }
  
  .card-head {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: flex-end;
	width: 100%;
  }
  
  /* Иконка скачивания */
  .action-icon {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--utinet-blue);
	background: transparent;
	transition: background-color 0.25s ease, color 0.25s ease;
  }
  
  .pres-card:hover .action-icon {
	background: var(--utinet-blue);
	color: #ffffff;
  }
  
  /* Главная иконка в центре */
  .card-img-wrap {
	width: 90px;
	/* height: 52px; */
	margin-top: 10px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--utinet-blue);
  }
  .card-img-wrap img{
	width: 100%;
  }
  .card-img-wrap svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
  }
  
  /* Заголовок */
  .card-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--utinet-text-main);
	margin: 0;
	line-height: 1.35;
	transition: color 0.2s ease;
  }
  
  .pres-card:hover .card-title {
	color: var(--utinet-blue);
  }
/* End */
/* /local/templates/aspro-allcorp2/components/bitrix/news.list/presentation/style.css?17870613272725 */
