/* Embedded Krona HTML viewer */
.krona-frame {
  width: 100%;
  height: 760px;
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.4rem;
  background: white;
}

.krona-frame-wrapper {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/* User guide overview WebP cards */
.overview-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
  margin-bottom: 1.75rem;
}

.overview-start-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 15.8rem;
  padding: 0.95rem 0.85rem 0.85rem;
  border: 1px solid rgba(11, 61, 102, 0.12);
  border-radius: 0.9rem;
  background: var(--md-default-bg-color);
  box-shadow: 0 0.28rem 0.8rem rgba(11, 61, 102, 0.045);
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.overview-start-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 128, 128, 0.22);
  box-shadow: 0 0.45rem 1rem rgba(11, 61, 102, 0.075);
  text-decoration: none;
}

.overview-start-card:focus-visible {
  outline: 3px solid rgba(0, 128, 128, 0.28);
  outline-offset: 3px;
}

.overview-start-icon {
  width: 4.9rem;
  height: 4.9rem;
  object-fit: contain;
  margin-bottom: 0.62rem;
  display: block;
  border: none;
  box-shadow: none;
  background: transparent;
}

.overview-start-card h3 {
  margin: 0.05rem 0 0.38rem;
  color: var(--md-primary-fg-color);
  font-size: 0.86rem;
  line-height: 1.22;
}

.overview-start-card p {
  margin: 0;
  color: var(--md-default-fg-color--light);
  font-size: 0.66rem;
  line-height: 1.43;
}

.overview-start-links {
  margin-top: auto;
  padding-top: 0.65rem;
  font-weight: 600;
  font-size: 0.66rem;
  line-height: 1.3;
}

.overview-start-links span {
  color: var(--md-accent-fg-color);
}

@media screen and (max-width: 76.25em) {
  .overview-start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-start-icon {
    width: 4.7rem;
    height: 4.7rem;
  }
}

@media screen and (max-width: 44em) {
  .overview-start-grid {
    grid-template-columns: 1fr;
  }

  .overview-start-card {
    min-height: auto;
  }

  .overview-start-icon {
    width: 4.4rem;
    height: 4.4rem;
  }
}