

/* Start:/local/components/mm/blog.feed/templates/.default/style.css?17828097462050*/
.mm-blog-feed {
  max-width: 1200px;
  margin: 36px auto 56px;
  padding: 0 16px;
  box-sizing: border-box;
}

.mm-blog-feed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

.mm-blog-feed__head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2937;
}

.mm-blog-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mm-blog-feed-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
  transition: transform .15s, box-shadow .15s;
}

.mm-blog-feed-card:hover {
  transform: translateY(-3px);
  color: #1f2937;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
}

.mm-blog-feed-card:hover * {
  text-decoration: none;
}

.mm-blog-feed-card__image {
  aspect-ratio: 16 / 9;
  background: #f2f3f5;
}

.mm-blog-feed-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mm-blog-feed-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.mm-blog-feed-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 20px;
  color: #6b7280;
  font-size: 12px;
}

.mm-blog-feed-card__meta span {
  display: inline-flex;
  align-items: center;
}

.mm-blog-feed-card__title {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.mm-blog-feed-card__text {
  display: -webkit-box;
  overflow: hidden;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 900px) {
  .mm-blog-feed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mm-blog-feed {
    margin: 28px auto 44px;
    padding: 0 12px;
  }

  .mm-blog-feed__head h2 {
    font-size: 24px;
  }

  .mm-blog-feed__grid {
    grid-template-columns: 1fr;
  }
}

/* End */


/* Start:/local/components/mm/it.success.stories/templates/.default/style.css?17852159784585*/
.it-success-stories {
	--it-orange: #ed6b06;
	--it-green: #95bd00;
	--it-dark: #20282d;
	--it-muted: rgba(32, 40, 45, .68);
	--it-line: rgba(32, 40, 45, .12);
	box-sizing: border-box;
	width: 100%;
	max-width: 1360px;
	margin: 34px auto 10px;
	padding: 0;
	color: var(--it-dark);
	font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.it-success-stories *,
.it-success-stories *::before,
.it-success-stories *::after {
	box-sizing: border-box;
}

.it-success-stories__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 18px;
}

.it-success-stories__title {
	margin: 0;
	color: var(--it-dark);
	font-size: 28px;
	font-weight: 900;
	line-height: 1.12;
}

.it-success-stories__subtitle {
	max-width: 620px;
	margin: 8px 0 0;
	color: var(--it-muted);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.it-success-stories__controls {
	display: inline-flex;
	gap: 10px;
	flex: 0 0 auto;
}

.it-success-stories__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--it-line);
	border-radius: 50%;
	background: #fff;
	color: var(--it-dark);
	cursor: pointer;
	font-size: 26px;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 10px 24px rgba(47, 54, 58, .08);
	transition: transform .16s ease, border-color .16s ease, color .16s ease;
}

.it-success-stories__arrow:hover {
	transform: translateY(-2px);
	border-color: rgba(237, 107, 6, .5);
	color: var(--it-orange);
}

.it-success-stories__viewport {
	overflow: hidden;
}

.it-success-stories__track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding: 4px 2px 18px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.it-success-stories__track::-webkit-scrollbar {
	display: none;
}

.it-success-story {
	display: flex;
	flex: 0 0 calc((100% - 36px) / 3);
	min-width: 0;
	min-height: 146px;
	flex-direction: row;
	align-items: stretch;
	overflow: hidden;
	border: 1px solid var(--it-line);
	border-radius: 8px;
	background: #fff;
	color: var(--it-dark) !important;
	text-decoration: none !important;
	box-shadow: 0 12px 30px rgba(32, 40, 45, .08);
	scroll-snap-align: start;
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.it-success-story:hover {
	transform: translateY(-4px);
	border-color: rgba(149, 189, 0, .48);
	box-shadow: 0 18px 42px rgba(32, 40, 45, .14);
	text-decoration: none !important;
}

.it-success-story:hover * {
	text-decoration: none !important;
}

.it-success-story__image {
	display: block;
	flex: 0 0 142px;
	min-height: 146px;
	background: linear-gradient(135deg, rgba(237, 107, 6, .18), rgba(149, 189, 0, .22));
	overflow: hidden;
}

.it-success-story__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.it-success-story__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding: 16px 18px 15px;
}

.it-success-story__label {
	align-self: flex-start;
	margin-bottom: 8px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: var(--it-green);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
}

.it-success-story__title {
	color: var(--it-dark);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.25;
}

.it-success-story__text {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 8px;
	color: var(--it-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.42;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.it-success-story__more {
	margin-top: auto;
	padding-top: 10px;
	color: var(--it-green);
	font-size: 12px;
	font-weight: 900;
}

.it-success-stories__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 0;
}

.it-success-stories__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(32, 40, 45, .22);
	cursor: pointer;
	transition: width .16s ease, background .16s ease;
}

.it-success-stories__dot.is-active {
	width: 24px;
	border-radius: 999px;
	background: var(--it-green);
}

@media (max-width: 900px) {
	.it-success-story {
		flex-basis: calc((100% - 18px) / 2);
	}
}

@media (max-width: 620px) {
	.it-success-stories {
		margin: 36px auto 8px;
	}

	.it-success-stories__head {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.it-success-stories__title {
		font-size: 26px;
	}

	.it-success-stories__subtitle {
		font-size: 14px;
	}

	.it-success-story {
		flex-basis: 100%;
	}

	.it-success-story__image {
		flex-basis: 118px;
	}
}

/* End */
/* /local/components/mm/blog.feed/templates/.default/style.css?17828097462050 */
/* /local/components/mm/it.success.stories/templates/.default/style.css?17852159784585 */
