@charset "UTF-8";
.mz-usecase-sidebar {
  flex-shrink: 0;
  width: 17.5rem;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 6rem;
  max-height: calc(100vh - 7rem);
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1149px) {
  .mz-usecase-sidebar {
    position: fixed;
    top: 0;
    left: -17.5rem;
    width: 17.5rem;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    overflow: hidden;
    z-index: 1000004;
    transition: left 0.3s ease;
  }
  .mz-usecase-sidebar.is-open {
    left: 0;
  }
}
.mz-usecase-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: rgba(1, 0, 54, 0.8);
}
.mz-usecase-sidebar__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}
.mz-usecase-sidebar__clear {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 0.75rem;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.mz-usecase-sidebar__clear:hover {
  background: rgba(255, 255, 255, 0.3);
}
.mz-usecase-sidebar__divider {
  height: 1px;
  background: #ededf0;
}
.mz-usecase-sidebar__section {
  padding: 1rem 1.5rem;
}
.mz-usecase-sidebar__section.is-collapsed .mz-usecase-sidebar__items,
.mz-usecase-sidebar__section.is-collapsed .mz-usecase-sidebar__pills {
  display: none;
}
.mz-usecase-sidebar__section.is-collapsed .mz-usecase-sidebar__section-hd {
  padding-bottom: 0;
}
.mz-usecase-sidebar__section.is-collapsed .mz-usecase-sidebar__toggle::after {
  opacity: 1;
}
.mz-usecase-sidebar__section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  cursor: pointer;
}
.mz-usecase-sidebar__section-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mz-usecase-sidebar__section-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  color: #212121;
}
.mz-usecase-sidebar__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.625rem;
  background: #010036;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: normal;
  color: #fff;
}
.mz-usecase-sidebar__toggle {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(1, 0, 54, 0.35);
  background: none;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}
.mz-usecase-sidebar__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.125rem;
  background: rgba(1, 0, 54, 0.6);
  border-radius: 1px;
}
.mz-usecase-sidebar__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.125rem;
  height: 0.625rem;
  background: rgba(1, 0, 54, 0.6);
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.2s;
}
.mz-usecase-sidebar__toggle:hover {
  border-color: rgba(1, 0, 54, 0.6);
}
.mz-usecase-sidebar__items {
  display: flex;
  flex-direction: column;
}
.mz-usecase-sidebar__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.25rem;
  border-radius: 0.375rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.mz-usecase-sidebar__item:hover {
  background: rgba(1, 0, 54, 0.04);
}
.mz-usecase-sidebar__item > span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  color: #4d4d52;
}
.mz-usecase-sidebar__item.is-checked > span {
  font-weight: 500;
  color: #010036;
}
.mz-usecase-sidebar__checkbox {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.25rem;
  background: #f5f5f7;
  border: 1px solid #d1d1d6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mz-usecase-sidebar__checkbox img {
  display: none;
}
.is-checked .mz-usecase-sidebar__checkbox {
  background: #010036;
  border-color: #010036;
}
.is-checked .mz-usecase-sidebar__checkbox img {
  display: block;
}
.mz-usecase-sidebar__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mz-usecase-sidebar__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.875rem;
  border-radius: 1.875rem;
  border: 1px solid rgba(1, 0, 54, 0.1);
  background: rgba(1, 0, 54, 0.05);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
  color: rgba(1, 0, 54, 0.8);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.mz-usecase-sidebar__pill:hover:not(.is-active) {
  background: rgba(1, 0, 54, 0.1);
}
.mz-usecase-sidebar__pill.is-active {
  background: rgba(1, 0, 54, 0.8);
  border-color: transparent;
  color: #fff;
}
.mz-usecase-sidebar__scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(1, 0, 54, 0.2) transparent;
}
.mz-usecase-sidebar__scroll::-webkit-scrollbar {
  width: 0.375rem;
}
.mz-usecase-sidebar__scroll::-webkit-scrollbar-track {
  background: transparent;
}
.mz-usecase-sidebar__scroll::-webkit-scrollbar-thumb {
  background-color: rgba(1, 0, 54, 0.2);
  border-radius: 0.1875rem;
}
.mz-usecase-sidebar__scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(1, 0, 54, 0.35);
}
.mz-usecase-sidebar__apply {
  flex-shrink: 0;
  padding: 1rem 1.5rem 1.5rem;
  background: #fff;
  box-shadow: 0 -2px 0.5rem rgba(0, 0, 0, 0.06);
}
.mz-usecase-sidebar__apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.5625rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  border: 1.5px solid #fff;
  background: #34335e;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}
.mz-usecase-sidebar__apply-btn:hover {
  opacity: 0.88;
}

.mz-breadcrumb {
  position: relative;
  z-index: 2;
  top: 0.625rem;
}

.mz-usecase-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000003;
}
.mz-usecase-filter-overlay.is-open {
  display: block;
}

.mz-usecase-filter-trigger {
  display: none;
}
@media only screen and (max-width: 1149px) {
  .mz-usecase-filter-trigger {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2.5rem;
    background: #fff;
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: 0.125rem 0 0.5rem rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000005;
    transition: left 0.3s ease, background 0.2s;
  }
  .mz-usecase-filter-trigger::after {
    content: "»";
    font-size: 1.125rem;
    font-weight: 700;
    color: rgba(1, 0, 54, 0.6);
    line-height: 1;
  }
  .mz-usecase-filter-trigger.is-open {
    left: 17.5rem;
  }
  .mz-usecase-filter-trigger.is-open::after {
    content: "«";
  }
}

.mz-usecase-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mz-usecase-card > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  border: 1px solid rgba(1, 0, 54, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 18, 43, 0.04);
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s;
}
.mz-usecase-card > a:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 18, 43, 0.12);
  transform: translateY(-2px);
}
.mz-usecase-card__header {
  position: relative;
  height: 13.75rem;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(151.432deg, rgb(0, 18, 43) 0%, rgb(0, 98, 232) 71.43%);
}
.mz-usecase-card__header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mz-usecase-card__company {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}
.mz-usecase-card__logo {
  max-height: 2rem;
  max-width: 11rem;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.mz-usecase-card__company-name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(1, 0, 54, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mz-usecase-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.5rem;
  flex: 1;
}
.mz-usecase-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(1, 0, 54, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mz-usecase-card__title small {
  font-size: 0.8em;
  font-weight: 400;
}
.mz-usecase-card__title em,
.mz-usecase-card__title i {
  font-style: italic;
}
.mz-usecase-card__title sup,
.mz-usecase-card__title sub {
  font-size: 0.75em;
  line-height: 0;
}
.mz-usecase-card__title sup {
  vertical-align: super;
}
.mz-usecase-card__title sub {
  vertical-align: sub;
}
.mz-usecase-card__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 480px) {
  .mz-usecase-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.mz-usecase-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.mz-usecase-card__meta-item span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(1, 0, 54, 0.4);
  white-space: nowrap;
}
.mz-usecase-card__meta-icon {
  flex-shrink: 0;
}
.mz-usecase-card__tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mz-usecase-card__tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mz-usecase-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  background: rgba(1, 0, 54, 0.4);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  white-space: nowrap;
}
.mz-usecase-card__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: auto;
}
.mz-usecase-card__link span {
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  color: rgba(1, 0, 54, 0.8);
  white-space: nowrap;
}
.mz-usecase-card__link-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.mz-usecase-steps {
  position: relative;
  background: rgba(1, 0, 54, 0.07);
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
@media only screen and (max-width: 1279px) {
  .mz-usecase-steps {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-steps {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-usecase-steps {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.mz-usecase-steps__inner {
  position: relative;
}
.mz-usecase-steps__inner_wrapper {
  max-width: 75rem;
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .mz-usecase-steps__inner_wrapper {
    gap: 2rem;
  }
}
.mz-usecase-steps__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.mz-usecase-steps__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.875rem;
  color: rgba(1, 0, 54, 0.8);
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-steps__title {
    font-size: 1.375rem;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 767px) {
  .mz-usecase-steps__title {
    font-size: 1.125rem;
  }
}
.mz-usecase-steps__divider {
  width: 5rem;
  height: 0.25rem;
  border-radius: 0.125rem;
  background: linear-gradient(177.14deg, #ff2d00 0%, #ff8400 70.72%);
}
.mz-usecase-steps__subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(1, 0, 54, 0.8);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .mz-usecase-steps__subtitle {
    font-size: 0.875rem;
  }
}
.mz-usecase-steps__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .mz-usecase-steps__cards {
    grid-template-columns: 1fr;
  }
}
.mz-usecase-steps__card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 0.25rem 0.625rem rgba(153, 77, 13, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .mz-usecase-steps__card {
    padding: 1.75rem 1.5rem;
  }
}
.mz-usecase-steps__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.625rem;
  color: rgba(1, 0, 54, 0.8);
  text-align: center;
}
.mz-usecase-steps__card-desc {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3125rem;
  color: rgba(1, 0, 54, 0.4);
  text-align: center;
}
.mz-usecase-steps__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  background: linear-gradient(173deg, #ff2d00 0%, #ff8400 70.7%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.125rem;
  text-decoration: none;
  width: 100%;
  margin-top: auto;
  transition: opacity 0.2s;
}
.mz-usecase-steps__btn:hover {
  opacity: 0.88;
}
.mz-usecase-steps__btn-arrow {
  width: 0.625rem;
  height: 0.78125rem;
  flex-shrink: 0;
  transform: rotate(90deg);
}

.mz-usecase-hero {
  position: relative;
  overflow: hidden;
  margin-top: -2.3125rem;
}
@media only screen and (max-width: 767px) {
  .mz-usecase-hero {
    margin-top: -2.8125rem;
  }
}
.mz-usecase-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.mz-usecase-hero__bg-img {
  position: absolute;
  left: 0;
  top: -7.05%;
  width: 100%;
  height: 106.84%;
  object-fit: cover;
  pointer-events: none;
}
.mz-usecase-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.mz-usecase-hero__inner.mz-container {
  padding-left: 10rem;
  padding-right: 10rem;
}
@media only screen and (max-width: 1279px) {
  .mz-usecase-hero__inner.mz-container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-hero__inner.mz-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-usecase-hero__inner.mz-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media only screen and (max-width: 1279px) {
  .mz-usecase-hero__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-hero__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-usecase-hero__inner {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }
}
.mz-usecase-hero__title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}
.mz-usecase-hero__title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: -0.03125rem;
  color: rgba(1, 0, 54, 0.8);
  text-align: center;
}
@media only screen and (max-width: 1279px) {
  .mz-usecase-hero__title {
    font-size: 2.75rem;
    line-height: 3.5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-hero__title {
    font-size: 2.25rem;
    line-height: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-usecase-hero__title {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
.mz-usecase-hero__accent {
  width: 5rem;
  height: 0.25rem;
  border-radius: 0.125rem;
  background: rgba(1, 0, 54, 0.8);
  flex-shrink: 0;
}
.mz-usecase-hero__description {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.625rem;
  color: rgba(1, 0, 54, 0.8);
  text-align: center;
}
.mz-usecase-hero__cta {
  position: relative;
  display: flex;
  align-items: center;
  width: 28.5rem;
}
@media only screen and (max-width: 767px) {
  .mz-usecase-hero__cta {
    width: 100%;
    max-width: 28.5rem;
  }
}
.mz-usecase-hero__cta-sparkle {
  position: absolute;
  left: -0.9375rem;
  top: -0.4375rem;
  width: 2.1875rem;
  height: 1.0625rem;
  transform: rotate(-40.23deg);
  z-index: 3;
  pointer-events: none;
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-hero__cta-sparkle {
    display: none;
  }
}
.mz-usecase-hero__cta-icon {
  position: relative;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  background: #fff;
  border: 1px solid rgba(1, 0, 54, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.mz-usecase-hero__cta-icon img {
  width: 2.254rem;
  height: 2.959rem;
  transform: rotate(-13.55deg);
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-hero__cta-icon {
    display: none;
  }
}
.mz-usecase-hero__cta-button-wrap {
  position: absolute;
  left: 3.53125rem;
  width: 25rem;
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-hero__cta-button-wrap {
    position: relative;
    left: auto;
    width: 100%;
  }
}
.mz-usecase-hero__cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5rem;
  padding: 1.1875rem 5.125rem;
  border-radius: 5.625rem;
  border: 1.5px solid #fff;
  background: #34335e;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.mz-usecase-hero__cta-button:hover {
  opacity: 0.88;
}
@media only screen and (max-width: 1279px) {
  .mz-usecase-hero__cta-button {
    font-size: 1rem;
    height: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-usecase-hero__cta-button {
    height: 4rem;
    font-size: 0.9375rem;
    padding: 1rem 2rem;
  }
}

.mz-usecase-filter__select-wrap {
  position: relative;
  flex-shrink: 0;
  width: 15rem;
}
@media only screen and (max-width: 767px) {
  .mz-usecase-filter__select-wrap {
    width: 100%;
  }
}
.mz-usecase-filter__select {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(1, 0, 54, 0.1);
  border-radius: 0.375rem;
  padding: 0.25rem 2.25rem 0.25rem 0.875rem;
  height: 1.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(1, 0, 54, 0.4);
  background: #fff;
  cursor: pointer;
}
.mz-usecase-filter__select:focus {
  outline: none;
  border-color: rgba(1, 0, 54, 0.3);
}
.mz-usecase-filter__chevron {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: auto;
  pointer-events: none;
}

.mz-usecase-hero__title-group.mz-motion-onload {
  opacity: 0;
  animation: mz-usecase-hero-in 0.8s ease forwards;
}
@media only screen and (max-width: 991px) {
  .mz-usecase-hero__title-group.mz-motion-onload {
    opacity: 1;
    animation: none;
  }
}

@keyframes mz-usecase-hero-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mz-usecase-content {
  background: #f9f9fa;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-content {
    padding-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-usecase-content {
    padding-bottom: 2rem;
  }
}
.mz-usecase-content__wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  padding-top: 3rem;
  max-width: 77.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1279px) {
  .mz-usecase-content__wrap {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-content__wrap {
    flex-direction: column;
    padding-top: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-usecase-content__wrap {
    padding-top: 2rem;
  }
}
.mz-usecase-content__main {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media only screen and (max-width: 1149px) {
  .mz-usecase-content__main {
    padding: 0 0.9375rem;
  }
}
.mz-usecase-content__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}
.mz-usecase-content__count {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(1, 0, 54, 0.6);
}
.mz-usecase-content__count-num {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #212121;
}
.mz-usecase-content__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.mz-usecase-content__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(1, 0, 54, 0.15);
  border-radius: 1rem;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(1, 0, 54, 0.8);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.mz-usecase-content__chip:hover {
  border-color: #f24f16;
  color: #f24f16;
}
.mz-usecase-content__chip-x {
  font-size: 0.875rem;
  line-height: 1;
  color: rgba(1, 0, 54, 0.4);
  transition: color 0.2s;
}
.mz-usecase-content__chip:hover .mz-usecase-content__chip-x {
  color: #f24f16;
}
.mz-usecase-content__chip-clear {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(1, 0, 54, 0.5);
  text-decoration: none;
  margin-left: 0.25rem;
}
.mz-usecase-content__chip-clear:hover {
  color: #f24f16;
  text-decoration: underline;
}

.mz-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media only screen and (max-width: 1023px) {
  .mz-usecase-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.mz-usecase-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 77.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 19.5rem;
  padding-top: 1.5rem;
}
@media only screen and (max-width: 1279px) {
  .mz-usecase-pagination {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1149px) {
  .mz-usecase-pagination {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .mz-usecase-pagination {
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .mz-usecase-pagination {
    gap: 0.5rem;
  }
}
.mz-usecase-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.mz-usecase-pagination__arrow:hover {
  opacity: 0.6;
}
.mz-usecase-pagination__arrow img {
  display: block;
}
.mz-usecase-pagination__arrow--prev img {
  transform: rotate(180deg);
}
.mz-usecase-pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 1.125rem;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  color: rgba(1, 0, 54, 0.8);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mz-usecase-pagination__page:hover:not(.is-active) {
  background: rgba(1, 0, 54, 0.08);
}
.mz-usecase-pagination__page.is-active {
  background: rgba(1, 0, 54, 0.4);
  color: #fff;
  cursor: default;
}
.mz-usecase-pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  color: rgba(1, 0, 54, 0.8);
  letter-spacing: -0.3rem;
}

.mz-detail-hero {
  position: relative;
  overflow: hidden;
  margin-top: -2.3125rem;
}
@media only screen and (max-width: 767px) {
  .mz-detail-hero {
    margin-top: -2.8125rem;
  }
}
.mz-detail-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mz-detail-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.mz-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 1023px) {
  .mz-detail-hero__inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-detail-hero__inner {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }
}
.mz-detail-hero__left {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media only screen and (max-width: 1023px) {
  .mz-detail-hero__left {
    align-items: center;
    text-align: center;
  }
}
.mz-detail-hero__logo-box {
  flex-shrink: 0;
  width: fit-content;
  max-width: 12rem;
  height: auto;
  max-height: 9rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.75rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .mz-detail-hero__logo-box {
    max-width: 9rem;
    max-height: 7rem;
  }
}
.mz-detail-hero__logo {
  width: auto;
  height: auto;
  max-width: 10.5rem;
  max-height: 7.75rem;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .mz-detail-hero__logo {
    max-width: 7.5rem;
    max-height: 5.75rem;
  }
}
.mz-detail-hero__company-name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: normal;
  color: #32315c;
}
@media only screen and (max-width: 1023px) {
  .mz-detail-hero__company-name {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-detail-hero__company-name {
    font-size: 1rem;
  }
}
.mz-detail-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.625rem;
  color: #212121;
}
.mz-detail-hero__title small {
  font-size: 0.7em;
  font-weight: 400;
}
.mz-detail-hero__title em,
.mz-detail-hero__title i {
  font-style: italic;
}
.mz-detail-hero__title sup,
.mz-detail-hero__title sub {
  font-size: 0.7em;
  line-height: 0;
}
.mz-detail-hero__title sup {
  vertical-align: super;
}
.mz-detail-hero__title sub {
  vertical-align: sub;
}
@media only screen and (max-width: 1279px) {
  .mz-detail-hero__title {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
@media only screen and (max-width: 1023px) {
  .mz-detail-hero__title {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-detail-hero__title {
    font-size: 1.125rem;
    line-height: 1.8rem;
  }
}
.mz-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
}
@media only screen and (max-width: 1023px) {
  .mz-detail-hero__meta {
    max-width: 90%;
    justify-content: center;
  }
}
.mz-detail-hero__meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}
.mz-detail-hero__meta-label {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: normal;
  color: #32315c;
}
.mz-detail-hero__meta-value {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: normal;
  color: #212121;
}
.mz-detail-hero__challenge-tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
  padding-top: 0.125rem;
}
@media only screen and (max-width: 1023px) {
  .mz-detail-hero__challenge-tags {
    justify-content: center;
  }
}
.mz-detail-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.06);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1rem;
  color: #212121;
  white-space: nowrap;
}
.mz-detail-hero__photo-col {
  flex-shrink: 0;
  width: 34.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media only screen and (max-width: 1279px) {
  .mz-detail-hero__photo-col {
    width: 22rem;
  }
}
@media only screen and (max-width: 1023px) {
  .mz-detail-hero__photo-col {
    width: 100%;
    max-width: 27.3rem;
  }
}
.mz-detail-hero__photo-caption {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(1, 0, 54, 0.6);
  text-align: center;
}
.mz-detail-hero__photo-card {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 436/245;
  border: 0.5rem solid #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.4rem 1.175rem -0.2rem rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.mz-detail-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mz-detail-hero__left.mz-motion-onload,
.mz-detail-hero__photo-col.mz-motion-onload {
  opacity: 0;
  animation: mz-detail-hero-in 0.8s ease forwards;
}

.mz-detail-hero__photo-col.mz-motion-onload {
  animation-name: mz-detail-hero-photo-in;
  animation-delay: 0.15s;
  transform-origin: center;
}

@media only screen and (max-width: 991px) {
  .mz-detail-hero__left.mz-motion-onload,
  .mz-detail-hero__photo-col.mz-motion-onload {
    opacity: 1;
    animation: none;
  }
}
@keyframes mz-detail-hero-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mz-detail-hero-photo-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mz-detail-hero__left,
  .mz-detail-hero__photo-col,
  .mz-detail-chapter__heading,
  .mz-detail-chapter__section,
  .mz-detail-chapter__image-wrap,
  .mz-detail-toc,
  .mz-detail-related__title,
  .mz-detail-related__slider-wrap,
  .mz-usecase-hero__title-group,
  .mz-usecase-content__header,
  .mz-usecase-card,
  .mz-usecase-sidebar,
  .mz-usecase-steps__heading,
  .mz-usecase-steps__card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
.mz-detail-article {
  background: #fefcfb;
}

.mz-detail-article__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3.5rem 6.25rem 6.5rem;
}
@media only screen and (max-width: 1279px) {
  .mz-detail-article__inner {
    padding: 4rem 5rem 6.5rem;
  }
}
@media only screen and (max-width: 1149px) {
  .mz-detail-article__inner {
    padding: 3rem 2.5rem 6.5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .mz-detail-article__inner {
    flex-direction: column;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-detail-article__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.mz-detail-article__content {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
.mz-detail-article__content-header {
  display: none;
}
@media only screen and (max-width: 1149px) {
  .mz-detail-article__content-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

html {
  scroll-behavior: smooth;
}

[id^=toc-anchor-] {
  scroll-margin-top: 5rem;
}

.article-marker {
  display: inline;
  position: relative;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 60%;
  transition: background-size 2s ease-in-out;
}
.article-marker.yellow {
  background-image: linear-gradient(90deg, #ffe132, #ffe132);
}
.article-marker.green {
  background-image: linear-gradient(90deg, rgba(77, 182, 172, 0.6), rgba(77, 182, 172, 0.6));
}
.article-marker.marker_animetion {
  background-size: 100% 60%;
}

.mz-detail-toc {
  background: #faf9f7;
  border: 1px solid #ede8e3;
  border-radius: 0.75rem;
  padding: 1.75rem 2rem;
}
.mz-detail-toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
}
.mz-detail-toc__title-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.mz-detail-toc__accent {
  flex-shrink: 0;
  width: 0.25rem;
  height: 1.375rem;
  border-radius: 0.125rem;
  background: #32315c;
}
.mz-detail-toc__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
  color: #212121;
}
.mz-detail-toc__toggle {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mz-detail-toc__toggle::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid rgba(1, 0, 54, 0.5);
  border-bottom: 2px solid rgba(1, 0, 54, 0.5);
  transform: rotate(45deg) translateY(-0.125rem);
  transition: transform 0.25s;
}
.mz-detail-toc__divider {
  height: 1px;
  background: #e5e0db;
}
.mz-detail-toc.is-collapsed .mz-detail-toc__header {
  padding-bottom: 0;
}
.mz-detail-toc.is-collapsed .mz-detail-toc__divider {
  display: none;
}
.mz-detail-toc.is-collapsed .mz-detail-toc__list {
  display: none;
}
.mz-detail-toc.is-collapsed .mz-detail-toc__toggle::after {
  transform: rotate(-45deg) translateX(0.125rem);
}
.mz-detail-toc__list {
  display: flex;
  flex-direction: column;
}
.mz-detail-toc__item {
  display: flex;
  flex-direction: column;
  padding-top: 0.875rem;
}
.mz-detail-toc__item-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.mz-detail-toc__badge {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  background: #32315c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: normal;
}
.mz-detail-toc__heading {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: #333338;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
.mz-detail-toc__heading:hover {
  color: #32315c;
  opacity: 0.7;
}
.mz-detail-toc__subs {
  display: flex;
  flex-direction: column;
  padding-left: 2.25rem;
}
.mz-detail-toc__sub {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
.mz-detail-toc__sub:hover {
  opacity: 0.7;
}
.mz-detail-toc__sub:hover .mz-detail-toc__sub-text {
  color: #32315c;
}
.mz-detail-toc__sub-dash {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: #99948f;
  line-height: normal;
}
.mz-detail-toc__sub-text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #66666b;
  line-height: normal;
}

.mz-detail-chapter {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mz-detail-chapter__heading {
  background: linear-gradient(to right, rgba(175, 199, 255, 0.5), rgba(201, 181, 255, 0.5));
  padding: 1rem;
  border-radius: 0.5rem;
}
.mz-detail-chapter__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.125rem;
  color: #212121;
}
@media only screen and (max-width: 1023px) {
  .mz-detail-chapter__title {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-detail-chapter__title {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
.mz-detail-chapter__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mz-detail-chapter__h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  color: #212121;
}
@media only screen and (max-width: 767px) {
  .mz-detail-chapter__h3 {
    font-size: 1rem;
  }
}
.mz-detail-chapter__body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #404045;
}
.mz-detail-chapter__image-wrap {
  max-width: 100%;
  margin-inline: auto;
}
.mz-detail-chapter__image-wrap--sm {
  width: 100%;
  max-width: 30rem;
}
.mz-detail-chapter__image-wrap--md {
  width: 100%;
  max-width: 40rem;
}
.mz-detail-chapter__image-wrap--lg {
  width: 100%;
  max-width: 100%;
}
.mz-detail-chapter__image-wrap--sm .mz-detail-chapter__img-wrap,
.mz-detail-chapter__image-wrap--sm .mz-detail-chapter__img, .mz-detail-chapter__image-wrap--md .mz-detail-chapter__img-wrap,
.mz-detail-chapter__image-wrap--md .mz-detail-chapter__img, .mz-detail-chapter__image-wrap--lg .mz-detail-chapter__img-wrap,
.mz-detail-chapter__image-wrap--lg .mz-detail-chapter__img {
  width: 100%;
}
.mz-detail-chapter__figure {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mz-detail-chapter__video {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding: 0.625rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
}
.mz-detail-chapter__video > iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 0.125rem;
}
.mz-detail-chapter__img-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  border: 0.625rem solid #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
}
.mz-detail-chapter__img-wrap > a {
  display: block;
  font-size: 0;
  line-height: 0;
}
.mz-detail-chapter__img {
  max-width: 100%;
  height: auto;
  display: block;
}
.mz-detail-chapter__img-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0.375rem;
  padding: 0.375rem 0.625rem;
  box-shadow: 0 0.0625rem 0.375rem rgba(0, 0, 0, 0.1);
}
.mz-detail-chapter__img-badge img {
  height: 1.5rem;
  width: auto;
  max-width: 6rem;
  object-fit: contain;
  display: block;
}
.mz-detail-chapter__caption {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #808085;
  text-align: center;
}

.mz-detail-quote {
  padding: 1rem 0 1.25rem;
}
.mz-detail-quote__body {
  background: #ffe6cb;
  border: 1px solid #ff8400;
  border-radius: 1rem;
  padding: 1.875rem 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .mz-detail-quote__body {
    padding: 1.25rem 1.5rem;
  }
}
.mz-detail-quote__icon {
  width: 2.296875rem;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.mz-detail-quote__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  color: #34335e;
}
.mz-detail-quote__attribution {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
  color: #34335e;
}

.mz-detail-article__content a {
  color: #404045;
  text-decoration: none;
  transition: color 0.2s;
}
.mz-detail-article__content a:hover {
  color: #f24f16;
}
.mz-detail-article__content .mz-detail-chapter__section a {
  color: #f24f16;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.mz-detail-article__content .mz-detail-chapter__section a strong,
.mz-detail-article__content .mz-detail-chapter__section a b {
  color: inherit;
}
.mz-detail-article__content .mz-detail-chapter__section a:hover {
  color: #ce4313;
  text-decoration-color: #ce4313;
}
.mz-detail-article__content strong, .mz-detail-article__content b {
  font-weight: 700;
  color: #212121;
}
.mz-detail-article__content em, .mz-detail-article__content i {
  font-style: italic;
  color: #404045;
}
.mz-detail-article__content ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mz-detail-article__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #404045;
}
.mz-detail-article__content ul li::before {
  content: "";
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.6875rem;
  border-radius: 50%;
  background: rgba(1, 0, 54, 0.8);
}
.mz-detail-article__content ol {
  list-style: none;
  padding-left: 0;
  counter-reset: mz-ol;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mz-detail-article__content ol li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #404045;
  counter-increment: mz-ol;
}
.mz-detail-article__content ol li::before {
  content: counter(mz-ol);
  flex-shrink: 0;
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(1, 0, 54, 0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: center;
  margin-top: 0.15rem;
}
.mz-detail-article__content ul ul, .mz-detail-article__content ol ol, .mz-detail-article__content ul ol, .mz-detail-article__content ol ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
}

.mz-detail-related {
  background: #f6f6ff;
}

.mz-detail-related__inner {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3.5rem 7.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 1279px) {
  .mz-detail-related__inner {
    padding: 3rem 5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .mz-detail-related__inner {
    padding: 2.5rem 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-detail-related__inner {
    padding: 2rem 1.25rem;
  }
}

.mz-detail-related__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  color: #212121;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .mz-detail-related__title {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .mz-detail-related__title {
    font-size: 1.125rem;
  }
}

.mz-detail-related__slider-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mz-detail-related__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  background: linear-gradient(173deg, #ff2d00 0%, #ff8400 70.7%);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.125rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.mz-detail-related__all:hover {
  opacity: 0.88;
}
.mz-detail-related__all-icon {
  width: 0.625rem;
  height: 0.78125rem;
  flex-shrink: 0;
  transform: rotate(90deg);
}

.mz-detail-related__controls-dots {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .mz-detail-related__controls-dots {
    display: none;
  }
}

.mz-related-dot {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 0.6875rem;
  background: #ededf0;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.625rem;
  font-weight: 500;
  color: #73737a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mz-related-dot.is-active {
  background: #1c0067;
  color: #fff;
}

#related-slider .splide__track {
  overflow: hidden;
}

.mz-detail-related__controls {
  display: flex;
  align-items: center;
  width: 100%;
}

.mz-detail-related__controls-spacer {
  flex: 1 0 0;
  min-width: 0;
}

.mz-detail-related__controls-arrows {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.mz-detail-related__btn-prev,
.mz-detail-related__btn-next {
  background: none;
  border: none;
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.mz-detail-related__btn-prev:hover:not(:disabled),
.mz-detail-related__btn-next:hover:not(:disabled) {
  opacity: 0.75;
}
.mz-detail-related__btn-prev:disabled,
.mz-detail-related__btn-next:disabled {
  opacity: 0.3;
  cursor: default;
  filter: grayscale(1);
}
.mz-detail-related__btn-prev::after,
.mz-detail-related__btn-next::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  background: url("./images/carousel-next.svg") no-repeat center/contain;
}

.mz-detail-related__btn-prev::after {
  transform: rotate(180deg);
}

/*# sourceMappingURL=template-case.css.map */
