html {
    height: 100%;
    box-sizing: border-box;	/* Box-size on border for footer */
}

body {
    position: relative;
    padding-bottom: 6rem;		/* Makes some padding for the footer */
    min-height: 100%;
}

article {
    padding: 1em;
}

[uk-totop] {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #00007B;
    height: 30px;
    width: 30px;
    border-radius: 25px;
    text-align: center;
}

#siteheader {
    height: 100px;
}

#head_navigation {
    position: sticky;
    top: 0px;
    height: 80px;
    z-index: 10;
}

.picturefloat {
    float: left;
}

body > footer {
    position: absolute;
    bottom: 0px;
    height: 100px;
    width: 100%;
    background: #000011;
    color: #ffffff;
    text-align: center;
}
body > footer a {
    color: #ffffff;
}

#news .uk-slideshow-items  {
    background: url("../content/Spotlight.jpg") no-repeat scroll center top #000;
    background-size: cover;
    display: block;
}

#news .uk-slidenav-previous {
    color: black;
}

#news .uk-slidenav-next {
    color:black;
}


.story-highlight {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #3a8f4a;
    padding: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }

  .story-inner {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f3b2f;
  }

  /* --- Header mit Cover --- */
  .story-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .story-cover {
    width: 180px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
  }

  .story-header-text {
    flex: 1;
  }

  .story-title {
    color: #2f7a3a;
    font-size: 2rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .story-title .subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #3f5f4a;
    transform: rotate(-1.5deg);
    background: #e9f8ec;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    margin-top: 0.3rem;
  }

  .story-tagline {
    font-size: 1.1rem;
    margin-top: 0.6rem;
    color: #2b4c3a;
  }

  .story-meta {
    background: #f3fbf5;
    border-left: 4px solid #3a8f4a;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .story-blurb p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

  .story-audio {
    margin: 1.5rem 0;
  }

  .audio-label {
    font-weight: 600;
    margin-bottom: 0.4rem;
  }

  audio {
    width: 100%;
    border-radius: 8px;
  }

  .story-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0 1rem;
  }

  .story-note {
    font-size: 0.9rem;
    color: #476554;
    font-style: italic;
    margin-top: 0.5rem;
  }

  @media (max-width: 700px) {
    .story-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .story-cover {
      width: 60%;
      max-width: 240px;
      transform: rotate(-1deg);
    }

    .story-header-text {
      text-align: center;
    }

    .story-links {
      flex-direction: column;
      align-items: center;
    }
  }