

/*
=========================================================
QUICK LINKS CSS
=========================================================
 * Innehåller styling av snabblänksmeny
 *
 * Copyright (C) Limepark AB.
 * https://limepark.se/licensvillkor
=========================================================*/


/*
---------------------------------------------------------
SNABBLÄNKSMENY
---------------------------------------------------------*/

.lp-quick-links {
  display: grid;
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;

  gap: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
}

.lp-quick-links li {
  display: flex;
  flex-direction: column;
}

.lp-quick-links a {
  /*ckground: #477e62; justera till AAA contrast */
  background: #355f49;
  border-radius: 6px;
  color: #fff;
  display: block;
  font-family: 'stolzl-medium',arial,helvetica,sans-serif;
  font-size: 2.2rem;
  padding: 4rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;

  flex: 1 1 auto;
}

.lp-quick-links a:hover {
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 7%);
  text-decoration: underline;
  transform: scale(1.02);
}

.lp-quick-links .lp-icon {
  color: #fff;
  display: block;
  font-size: 5rem;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
