/*
    - Name: "service-sample.scss"
    - Description: "Add custom styles to service sample Cards"
*/
/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
.block__cards.block--view-mode-service h3 {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.block__cards.block--view-mode-service .field--name-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 24px;
}

@media (min-width: 480px) {
  .block__cards.block--view-mode-service .field--name-item {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .block__cards.block--view-mode-service .field--name-item {
    grid-template-columns: repeat(4, 1fr);
  }
}
.block__cards.block--view-mode-service .paragraph p {
  margin-bottom: 0;
}

.block__cards.block--view-mode-service .paragraph a {
  font-size: 0;
}

.block__cards.block--view-mode-service .show_more_portals {
  all: unset;
  display: flex;
  flex: 0 1 100%;
  grid-column: span 1;
  gap: var(--spacing-xs);
  margin-left: auto;
  color: var(--accent-dark);
  cursor: pointer;
}

@media (min-width: 640px) {
  .block__cards.block--view-mode-service .show_more_portals {
    grid-column: span 2;
  }
}
@media (min-width: 992px) {
  .block__cards.block--view-mode-service .show_more_portals {
    grid-column: span 3;
  }
}
.block__cards.block--view-mode-service .show_more_portals::after {
  content: "\e908";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "icomoon";
  font-size: 1.5rem;
  line-height: 1;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.block__cards.block--view-mode-service .show_more_portals:focus-visible {
  outline: 2px solid var(--black);
}

.block__cards.block--view-mode-service .show_more_portals:hover span {
  text-decoration: underline;
}

.block__cards.block--view-mode-service .show_more_portals.not-show {
  display: none;
}

.block__cards.block--view-mode-service .show_more_portals {
  grid-column: span 1;
}

@media (min-width: 480px) {
  .block__cards.block--view-mode-service .show_more_portals {
    grid-column: span 2;
  }
}
@media (min-width: 992px) {
  .block__cards.block--view-mode-service .show_more_portals {
    grid-column: span 4;
  }
}
.block__cards.block--view-mode-service .field--name-item > .field__item {
  grid-column: span 1;
  overflow: hidden;
  transition: var(--default-trans);
}

.block__cards.block--view-mode-service .field--name-item > .field__item.not-show {
  height: 0;
  opacity: 0;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.paragraph__item-card__service {
  position: relative;
  height: 100%;
}
/*# sourceMappingURL=service-sample.css.map */
