@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* Custom color variables */
:root {
	--color-key: #466b8d;
	--color-gradient: #698eb0;
	--color-link: #466b8d;
	--color-menulink: #fff;
	--color-title: #3d3d3d;

	--metric-logo-photo-margin: 0px;
	--metric-logo-font-size: 36px;
	--metric-logo-line-height: 41px;
}

/* Custom CSS for site below this line */
/* Typografi */
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #f8f8f8;
}

h1, h2, h3 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Länkar och accentfärg */
a {
  color: #2984D1;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

/* Dölj brödsmulor (Du är här »...) */
.site-breadcrumbs {
  display: none;
}

.site-content-wrapper {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Innehållsyta */
.site-content-wrapper > img,
.site-content-wrapper img:first-child {
  margin-top: 0;
}

.site-content-wrapper {
  background: #fff;
}




.content, main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Bilder med mjuka hörn */
img {
  border-radius: 10px;
}

/* Knappar */
.btn, input[type="submit"], button {
  background-color: #b8860b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn:hover, input[type="submit"]:hover, button:hover {
  opacity: 0.85;
}

/* Footer */
footer {
  color: #888;
  font-size: 0.85rem;
  padding: 2rem 1rem;
}