@charset "UTF-8";

* {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: #f6f6f6;
}

body {
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  position: relative;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
}

a {
  text-decoration: underline;
  color: #0486be;
  transition: 0.3s ease-out color;
}

a:hover {
  color: #0486be;
  text-decoration: underline;
}

.container {
  position: relative;
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}

.page-content .container {
  background-color: #fff;
}

.container-col-holder {
  display: flex;
  flex-direction: row;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .container-col-holder {
    flex-direction: column;
  }
}

.col {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .col--primary {
    width: calc(100% - 310px);
    padding-right: 5px;
    padding-left: 5px;
  }
  
  .col--secondary {
    width: 310px;
    min-width: 310px;
    max-width: 310px;
    padding: 0 10px 10px 0;
  }
  
  .col--secondary > * {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}

.page-header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 890;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-bottom: 1px solid #e8e8e8;
  margin: 0;
  padding: 0;
}

.page-header__section--secondary {
  display: none;
  background: linear-gradient(to bottom, #f8f9fa 0%, #f0f0f0 100%);
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .page-header__section--secondary {
    display: block;
  }
}

.nav--top-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  min-height: 36px;
}

.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.nav--secondary .nav__list {
  justify-content: flex-start;
}

.nav--tertiary {
  margin-left: auto;
}

.nav--tertiary .nav__list {
  justify-content: flex-end;
}

.nav__list-item {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav__list-item:not(:last-child)::after {
  content: '•';
  color: #ccc;
  margin: 0 8px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  height: 100%;
  vertical-align: middle;
}

.nav__list-link {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  color: #555;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 100%;
  line-height: 1;
}

.nav__list-link:hover {
  color: #1a472a;
}

.nav__list-label {
  display: inline-block;
  vertical-align: middle;
}

.primary-nav {
  padding: 0;
  background-color: #fff;
  margin: 0;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 30px;
  min-height: 60px;
}

.identity {
  flex-shrink: 0;
}

.identity__link {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.identity__link:hover {
  opacity: 0.9;
}

.identity__image {
  display: block;
  line-height: 1;
}

.brand-logo {
  width: 280px;
  height: 45px;
  display: block;
  vertical-align: top;
}

.primary-nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 20px;
}

.primary-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  justify-content: flex-start;
}

.primary-nav__list-item {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.primary-nav__list-link {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  border-radius: 4px;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  height: 100%;
  line-height: 1.2;
}

.primary-nav__list-text {
  display: inline-block;
  vertical-align: middle;
}

.primary-nav__list-link:hover {
  color: #1a472a;
  background-color: #f5f5f5;
}

.primary-nav__list-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #1a472a;
  transition: width 0.3s ease;
}

.primary-nav__list-link:hover::after {
  width: calc(100% - 32px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  height: 100%;
}

.search-button {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  height: 40px;
  width: 40px;
}

.search-button:hover {
  background-color: #f5f5f5;
  color: #1a472a;
}

@media screen and (max-width: 1024px) {
  .primary-nav__list {
    gap: 0;
  }
  
  .primary-nav__list-link {
    padding: 10px 12px;
    font-size: 14px;
  }
}

.mobile-menu-toggle {
  display: none !important;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media screen and (max-width: 767px) {
  .page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .page-header__section--secondary {
    display: none;
  }
  
  .header-main {
    flex-wrap: nowrap;
    gap: 15px;
    padding: 10px 15px;
    min-height: 50px;
    align-items: center;
  }
  
  .identity {
    flex: 0 0 auto;
  }
  
  .brand-logo {
    width: 200px;
    height: 40px;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    margin-left: auto;
    order: 2;
  }
  
  .primary-nav__wrapper {
    order: 3;
  }
  
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
  
  .primary-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 70px 20px 20px 20px;
    max-height: 100vh;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    gap: 0;
    width: 280px;
    max-width: 85vw;
  }
  
  .primary-nav__wrapper.active {
    transform: translateX(0);
  }
  
  .page-header {
    position: relative;
    z-index: 1000;
  }
  
  .primary-nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-bottom: 20px;
  }
  
  .primary-nav__list-item {
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
  }
  
  .primary-nav__list-item:last-child {
    border-bottom: none;
  }
  
  .primary-nav__list-link {
    width: 100%;
    padding: 15px 0;
    justify-content: flex-start;
    border-radius: 0;
  }
  
  .primary-nav__list-link::after {
    display: none;
  }
  
  .header-actions {
    width: 100%;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid #e8e8e8;
  }
  
  .container {
    padding: 0 15px;
  }
}

.page-main-content {
  margin-top: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .page-main-content {
    margin-top: 0;
    padding: 0;
  }
  
  .page-content {
    padding: 0;
    margin: 0;
  }
  
  .page-content .container {
    padding: 0;
    margin: 0;
  }
  
  .col--primary {
    padding: 0;
  }
  
  #un-content {
    padding: 0 15px;
  }
}

.page-main-footer {
  background-color: #f5f5f5;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.footer__disclaimer {
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.footer__copyright {
  text-align: center;
  padding: 20px 15px;
  color: #999;
  font-size: 14px;
}

.widget {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #e0e0e0;
}

.sidebar-cta {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.sidebar-cta__image {
  width: 100%;
  overflow: hidden;
}

.sidebar-cta__img {
  width: 100%;
  height: auto;
  display: block;
}

.sidebar-cta__content {
  padding: 20px;
}

.sidebar-cta__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #1a1a1a;
  line-height: 1.3;
}

.sidebar-cta__description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px 0;
}

.sidebar-cta__button {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background-color: #2E7D32;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-cta__button:hover {
  background-color: #1B5E20;
  color: #fff;
}

.header-list__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #2E7D32;
}

.articles-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.articles-list__item {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.articles-list__item:last-child {
  border-bottom: none;
}

.ankeiler__link {
  display: block;
  text-decoration: none;
  color: #333;
}

.ankeiler__link:hover {
  color: #0486be;
}

.ankeiler__timestamp {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}

.ankeiler--simple__title {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

