/*
    - Name: "service-sample.scss"
    - Description: "Add custom styles to service sample Cards"
*/
/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
.block__cards.block--view-mode-portal-item-simple .field--name-item {
  display: grid;
  grid-column: span 1;
  gap: 16px;
  justify-content: flex-start;
}

@media (min-width: 640px) {
  .block__cards.block--view-mode-portal-item-simple .field--name-item {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .block__cards.block--view-mode-portal-item-simple .field--name-item {
    grid-template-columns: repeat(3, 1fr);
  }
}
.block__cards.block--view-mode-portal-item-simple .field--name-item .field__item {
  grid-column: span 1;
  transition: var(--default-trans);
}

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

.block__cards.block--view-mode-portal-item-simple .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-portal-item-simple .show_more_portals {
    grid-column: span 2;
  }
}
@media (min-width: 992px) {
  .block__cards.block--view-mode-portal-item-simple .show_more_portals {
    grid-column: span 3;
  }
}
.block__cards.block--view-mode-portal-item-simple .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-portal-item-simple .show_more_portals:focus-visible {
  outline: 2px solid var(--black);
}

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

.block__cards.block--view-mode-portal-item-simple .show_more_portals.not-show {
  display: none;
}
/*# sourceMappingURL=portal-simple.css.map */
