:root {
  /* Design token scan: Velkommen til; Nyt pa bloggen; sans-serif. */
  --coral: #FF6A5C;
  --teal: #056571;
  --page-gray: #EEEEEE;
  --panel-gray: #F5F5F5;
  --white: #FFFFFF;
  --footer-dark: #1A1A1A;
  --footer-mid: #222222;
  --heading: #333333;
  --body: #666666;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  background: var(--page-gray);
  color: var(--body);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

a:hover,
a:focus {
  color: var(--teal);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-wrap {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.header-social {
  background: rgba(26, 26, 26, 0.9);
  color: var(--white);
  font-size: 12px;
}

.header-social-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.social-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a,
.footer-social a {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 2px 10px;
}

.header-main {
  background: var(--white);
}

.header-layout {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--heading);
  font-size: 28px;
  font-weight: 600;
  white-space: nowrap;
}

.brand:hover,
.brand:focus {
  color: var(--coral);
}

.main-nav .pure-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
}

.main-nav .pure-menu-link {
  color: var(--body);
  padding: 30px 12px;
  font-size: 16px;
  line-height: 18px;
}

.main-nav .pure-menu-link:hover,
.main-nav .pure-menu-link:focus {
  background: transparent;
  color: var(--coral);
}

.main-nav .pure-menu-children {
  background: var(--white);
  border: 0;
  box-shadow: var(--shadow);
}

.site-main {
  background: var(--white);
}

.hero-band {
  min-height: 450px;
  background-color: var(--panel-gray);
  background-image: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)), url("/assets/images/img_301355f78a40.png");
  background-position: center;
  background-size: cover;
}

.intro-band {
  background: var(--panel-gray);
  padding: 58px 0 62px;
}

.intro-copy {
  max-width: 760px;
  text-align: center;
}

.section-band,
.page-shell {
  padding: 54px 0 64px;
}

.page-shell {
  background: var(--white);
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 18px;
}

h1 {
  font-size: 40px;
  line-height: 50px;
}

h2 {
  font-size: 34px;
  line-height: 44px;
}

h3 {
  font-size: 28px;
  line-height: 38px;
}

h4 {
  font-size: 24px;
  line-height: 34px;
}

h5,
h6 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.section-heading h2,
.archive-header h1 {
  color: var(--coral);
}

p {
  margin: 0 0 18px;
}

.lead {
  color: var(--body);
  font-size: 17px;
  line-height: 29px;
}

.content-grid {
  margin-left: -18px;
  margin-right: -18px;
}

.content-grid > [class*="pure-u"] {
  padding-left: 18px;
  padding-right: 18px;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.wide-article {
  max-width: 960px;
}

.article-header {
  margin-bottom: 28px;
}

.article-header.centered,
.archive-header {
  text-align: center;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #777777;
  font-size: 13px;
  margin: 4px 0 18px;
}

.centered .article-meta {
  justify-content: center;
}

.breadcrumbs {
  margin-bottom: 30px;
  color: #777777;
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: #aaaaaa;
}

.image-block,
.main-image {
  margin: 0 0 24px;
  background: var(--white);
}

.image-block img,
.main-image img {
  width: 100%;
  border-radius: 0;
}

figcaption {
  color: #777777;
  font-size: 12px;
  line-height: 20px;
  margin-top: 8px;
}

.home-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.home-content > h1,
.home-content > h2,
.home-content > h3,
.home-content > h4,
.home-content > h5,
.home-content > h6,
.home-content > p {
  grid-column: 1 / -1;
}

.listing-content,
.category-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.listing-content > h1,
.listing-content > h2,
.listing-content > h3,
.listing-content > h4,
.listing-content > h5,
.listing-content > h6,
.listing-content > p,
.listing-content > ul,
.listing-content > ol,
.listing-content > blockquote,
.category-grid > h1,
.category-grid > h2,
.category-grid > h3,
.category-grid > h4,
.category-grid > h5,
.category-grid > h6,
.category-grid > p,
.category-grid > ul,
.category-grid > ol,
.category-grid > blockquote {
  grid-column: 1 / -1;
}

.content-card,
.listing-content .image-block,
.home-content .image-block {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-body {
  padding: 22px 24px 26px;
}

.card-body h2,
.listing-content h2,
.home-content h2,
.listing-content h3,
.home-content h3 {
  font-size: 22px;
  line-height: 31px;
  font-weight: 600;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #777777;
  font-size: 12px;
  line-height: 20px;
  margin: -8px 0 12px;
}

.card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.read-more,
.pure-button.cta-button {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  border-radius: 0.3em;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.12);
}

.read-more:hover,
.read-more:focus,
.pure-button.cta-button:hover,
.pure-button.cta-button:focus {
  background: var(--teal);
  color: var(--white);
}

.content-list {
  margin: 0 0 22px;
  padding-left: 24px;
}

blockquote {
  margin: 28px 0;
  padding: 20px 28px;
  border-left: 4px solid var(--coral);
  background: var(--panel-gray);
  color: var(--heading);
  font-size: 17px;
  line-height: 29px;
}

blockquote cite {
  display: block;
  color: var(--body);
  font-size: 13px;
  margin-top: 12px;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 24px;
  max-width: 100%;
}

.pure-table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}

.pure-table th,
.pure-table td {
  overflow-wrap: anywhere;
  word-break: normal;
}

.embed-block {
  margin: 0 0 24px;
}

.gallery-grid {
  margin-left: -12px;
  margin-right: -12px;
}

.gallery-grid .image-block {
  padding: 12px;
  margin: 0;
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 12px;
  background: var(--panel-gray);
}

.toc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc a {
  padding: 5px 10px;
  background: var(--white);
}

.source-links {
  padding: 0 0 48px;
}

.source-links-inner {
  border-top: 1px solid #e5e5e5;
  padding-top: 28px;
}

.source-links h2 {
  color: var(--coral);
  font-size: 22px;
  line-height: 31px;
  margin-bottom: 14px;
}

.source-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.source-links a {
  display: inline-block;
  background: var(--panel-gray);
  color: var(--body);
  border: 1px solid #dddddd;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 18px;
}

.source-links a:hover,
.source-links a:focus {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.sidebar {
  background: var(--panel-gray);
  padding: 28px;
}

.sidebar-widget + .sidebar-widget {
  margin-top: 32px;
}

.sidebar h2 {
  font-size: 22px;
  line-height: 31px;
  margin-bottom: 14px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  background: var(--white);
  color: var(--body);
  padding: 5px 10px;
  border: 1px solid #dddddd;
}

.tag-cloud a:hover,
.tag-cloud a:focus {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
}

.sidebar-menu,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li,
.footer-list li {
  margin-bottom: 9px;
}

.cta-strip {
  background: var(--coral);
  color: var(--white);
  padding: 38px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-inner h2 {
  color: var(--white);
  margin: 0;
}

.cta-strip .cta-button {
  background: var(--white);
  color: var(--coral);
  border: 2px solid var(--teal);
}

.site-footer {
  background: var(--footer-dark);
  border-top: 1px solid var(--footer-mid);
  color: #d7d7d7;
}

.footer-top {
  background: var(--footer-dark);
  padding: 52px 0 44px;
}

.footer-grid {
  margin-left: -18px;
  margin-right: -18px;
}

.footer-column {
  padding: 0 18px 24px;
}

.footer-column h2 {
  color: var(--white);
  font-size: 22px;
  line-height: 31px;
}

.footer-column a {
  color: #f4f4f4;
}

.footer-column a:hover,
.footer-column a:focus {
  color: var(--coral);
}

.footer-bottom {
  background: var(--footer-mid);
  font-size: 12px;
}

.footer-bottom-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

pre {
  overflow-x: auto;
  background: var(--panel-gray);
  padding: 18px;
}

.section-rule {
  border: 0;
  border-top: 1px solid #dddddd;
  margin: 30px 0;
}

@media (max-width: 900px) {
  .header-layout,
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-layout {
    padding: 18px 0;
  }

  .main-nav .pure-menu-list {
    justify-content: flex-start;
  }

  .main-nav .pure-menu-link {
    padding: 9px 10px;
  }

  .hero-band {
    min-height: 320px;
  }

  .home-content,
  .listing-content,
  .category-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-wrap {
    width: min(100% - 22px, 1140px);
  }

  .header-social-inner,
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
  }

  h1 {
    font-size: 32px;
    line-height: 41px;
  }

  h2 {
    font-size: 27px;
    line-height: 36px;
  }

  .home-content,
  .listing-content,
  .category-grid,
  .card-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-band,
  .page-shell {
    padding: 38px 0 46px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .sidebar,
  .cta-strip {
    display: none;
  }

  .site-main,
  body.site-body {
    background: var(--white);
    color: #000000;
  }
}
