/*
Theme Name: dafa
Author: Wolfgang Schellnast
Author URI: https://www.wolfgangschellnast.com
Description: Responsive Theme
Version: 1.0
*/
:root {
  --c-ar: #d3a46e;
  --c-fi: #9484ce;
  --c-so: #66896c;
  --c-ur: #4e4e4e;
  --c-we: #01ff57;
  --c-co: #f98a6c;
  --c-ss: #e7a291;
  --c-va: #b5b8db;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Fira Sans";
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #3c3c3c;
}

strong {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Altone-Regular";
  font-weight: normal;
}

h1 {
  font-size: 4rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  line-height: 3rem;
}

h4 {
  font-size: 1.5rem;
  letter-spacing: 0.034rem;
}

h6,
h3 {
  font-family: "Fira Sans";
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
  margin: 0 0 1.9rem;
}

a {
  text-decoration: none;
}

p {
  font-size: 1rem;
  line-height: 1.6rem;
}

p a {
  color: rgba(0, 0, 0, 0.85);
  text-decoration: underline;
}

p a:hover {
  color: #8c8c8c;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.logo-main {
  width: 260px;
  height: auto;
}

.h100 {
  height: 100%;
}

.text-big {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 95px;
  display: block;
}

/* Main Layout */

.wrapper {
  width: 100%;
  height: 100%;
}

.inner {
  max-width: 1440px;
  padding: 0px 135px;
  margin: 0 auto;
}

.wrapper.main .inner {
  padding: 60px 135px 120px;
}

.wrapper.top {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  height: 140px;
  background-color: #fff;
  transition: height 300ms ease-in-out;
}

.wrapper.main {
  margin-top: 140px;
  background-color: rgba(230, 228, 226, 0.3);
  transition: all 300ms ease-in-out;
}

.wrapper.bottom {
  height: 292px;
  background-color: #fff;
}

body.page-id-34 .wrapper.main {
  min-height: 60vh;
}

/* Scroll Animation */
.scrolled .wrapper.main {
  margin-top: 70px;
}

.scrolled .wrapper.top {
  height: 70px;
}

/* Menu */
.menu-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul#primary-menu,
ul#menu-side {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  justify-content: space-between;
  gap: 40px;
}

ul#primary-menu {
  height: 100%;
  padding-left: 70px;
}

ul#primary-menu > li {
  display: flex;
  align-items: center;

  white-space: nowrap;

  /* Border Animation Fix */
  padding: 0 5px;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  /* End Fix */
}

.menu li a {
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
}

ul#primary-menu > li:hover > a {
  font-weight: 500;
  color: #8c8c8c;
  transition: all 300ms ease-in-out;
}

ul#primary-menu > li.current-menu-item > a,
ul#primary-menu > li.current-menu-item > a:hover,
ul#primary-menu > li.current_page_parent > a,
ul#primary-menu ul.sub-menu li.current-menu-item > a {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  transition: all 300ms ease-in-out;
}

/* Primary Menu - Submenu */
ul#primary-menu .menu-item-has-children {
  position: relative;
}

ul#primary-menu ul.sub-menu {
  display: none;
  list-style: none;
}

ul#primary-menu ul.sub-menu a {
  white-space: nowrap;
}

ul#primary-menu .menu-item-has-children:hover ul.sub-menu {
  display: block;
}

ul#primary-menu ul.sub-menu {
  position: absolute;
  top: 85%;
  padding: 20px 70px 20px 30px;
  background-color: #fff;
  border-radius: 3px;
  left: -30px;
  box-shadow: 0px 0px 10px #0000001a;
}

ul#primary-menu ul.sub-menu li {
  line-height: 2.5rem;
  font-weight: normal;
}

ul#primary-menu ul.sub-menu li:hover a {
  font-weight: 500;
  color: #8c8c8c;
}

ul#primary-menu ul.sub-menu:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  top: 0;
  left: 45px;
  box-shadow: -5px -5px 10px -3px #0000001a;
}

ul#primary-menu li.menu-item-has-children > a:after {
  content: url("img/icons/arrow-down.svg");
  height: 1rem;
  width: auto;
  display: inline-block;
  margin-left: 7px;
  transition: all 300ms ease-in-out;
}

ul#primary-menu li.menu-item-has-children:hover > a:after {
  transform: rotate(180deg);
}

/* Menu Border Animation */
ul#primary-menu > li.current-menu-item,
ul#primary-menu > li.current-menu-item:hover,
ul#primary-menu > li.current_page_parent,
ul#primary-menu > li.current_page_parent:hover {
  border-bottom: 5px solid rgba(38, 38, 38, 0.9);
  transition: all 300ms ease-in-out;
}

ul#primary-menu li {
  transition: all 300ms ease-in-out;
}
ul#primary-menu > li:hover {
  border-bottom: 5px solid #8c8c8c;
}

/* Disable link if has_sub-menu */
ul#primary-menu > li.menu-item-has-children > a:hover {
  cursor: default;
}

/* Menu Item Width Fix */
.menu li a::before {
  display: block;
  font-weight: 500;

  content: attr(title);
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu-toggle .menu-open {
  height: 20px;
  width: 29px;
}

.menu-open {
  display: block;
}

.menu-close {
  display: none;
}

.menu-active .menu-open {
  display: none;
}

.menu-active .menu-close {
  display: block;
}

/* Mobile Menu */

#menu-overlay {
  position: fixed;
  z-index: 20;
  top: 70px;
  left: 0;
  opacity: 0;

  height: 0px;
  width: 100%;

  transition: opacity 300ms ease-in-out;
}

ul#primary-menu-mobile {
  padding: 0 20px;
  list-style-type: none;
  display: none;
  font-family: "Altone-Regular";
}

#menu-overlay.active ul#primary-menu-mobile {
  display: block;
}

ul#primary-menu-mobile > li {
  font-size: 1.75rem;
  line-height: 5rem;
  border-bottom: 1px solid rgba(38, 38, 38, 0.9);
}

ul#primary-menu-mobile > li:last-child {
  border-bottom: none;
}

ul#primary-menu-mobile ul.sub-menu {
  list-style: none;
  padding: 0 0 1rem;
  display: none;
}

ul#primary-menu-mobile ul.sub-menu li {
  font-size: 1rem;
  line-height: 3rem;
  border-bottom: none;
}

ul#primary-menu-mobile ul.sub-menu.active {
  display: block;
}

ul#primary-menu-mobile li.menu-item-has-children > a:after {
  content: url("img/icons/arrow-down.svg");
  display: inline-block;
  position: absolute;
  right: 30px;
}

/* Search Form */

#search-form {
  display: flex;
  align-items: center;
  height: 0;
  min-height: 0;
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  transition: min-height 300ms ease-in-out;
}

#search-form.active {
  min-height: 120px;
  border-top: 1px solid #8c8c8c8c;
}

@media (min-width: 768px) {
  #search-width-fix {
    position: absolute;
    left: 0;
    margin-top: -1px;
    height: 0;
    min-height: 0;
    width: 100%;
    background-color: #fff;
    transition: min-height 300ms ease-in-out;
  }

  #search-form.active #search-width-fix {
    border-top: 1px solid #8c8c8c8c;
    min-height: 120px;
    z-index: -1;
  }
}

form#searchform {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

form#searchform div.search-container {
  width: 100%;
  display: flex;
}

form#searchform input[type="text"] {
  border-width: 0;
  border-color: #8c8c8c;
  width: 90%;
  font-size: 1.5rem;
  margin-left: 1rem;
}

form#searchform input[type="text"]:focus-visible {
  outline: none;
}

form#searchform input[type="text"]::placeholder {
  color: #8c8c8c;
}

form#searchform .menu-close {
  display: block;
}

a.s-toggle svg .icon-search,
a.s-toggle svg.menu-close path {
  fill: #3c3c3c;
}

a.s-toggle:hover {
  cursor: pointer;
}

a.s-toggle:hover svg .icon-search,
a.s-toggle:hover svg.menu-close path {
  fill: #8c8c8c;
}

/* Search Page - Results */
.search-results h3,
.search h3 {
  font-family: "Altone-Regular";
  line-height: 2.313rem;
}

.search-cat ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-cat ul a {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.134rem;
  color: #262626;
}

.search-results h3 a {
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.85);
}

ul.search-results {
  list-style-type: none;
}

ul.search-results > li:before {
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  margin-left: -40px;
  height: 22px;
  width: 22px;
  margin-top: 6px;
}

ul.search-results > li {
  margin-bottom: 60px;
}

ul.search-results p {
  margin-top: 7px;
}

ul.search-results p strong {
  color: rgba(252, 51, 31, 0.9);
}

/* PAGES */

/* Home */
#header-first {
  background-image: url("img/home-header.jpg");
  background-size: cover;
  position: relative;
  height: 500px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#header-first h1 {
  font-size: 3.438rem;
  line-height: 5rem;
  letter-spacing: 0.08rem;
  color: #fff;
}

.grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  row-gap: 150px;
}

.grid-home p {
  padding-bottom: 60px;
  margin: 0;
}

.button-container {
  display: flex;
  align-items: center;
}

.button-round {
  padding: 16px 40px;
  border-radius: 1.781rem;
  background-color: rgba(38, 38, 38, 0.9);
  color: #fff;
  display: inline-flex;
  text-decoration: none;
  transition: background-color 300ms ease-in-out;
}

.button-round:hover {
  background-color: #8c8c8c;
}

.def-link {
  color: rgba(252, 51, 31, 0.9);
  margin-left: 35px;
  display: flex;
  align-items: center;
  transition: all 300ms ease-in-out;
}

.def-link svg {
  height: 1rem;
  width: auto;
  margin-right: 0.9rem;
}

.def-link:hover {
  color: #8c8c8c;
  cursor: pointer;
}

.def-link .svg-arrow {
  fill: rgba(252, 51, 31, 0.9);
  transition: all 300ms ease-in-out;
}

.def-link:hover .svg-arrow {
  fill: #8c8c8c;
}

.def-link.back-link {
  margin-left: 0;
  font-size: 0.75rem;
}

.def-link.back-link svg {
  height: 0.75rem;
  margin-right: 0.5rem;
}

.page-template-page-home h2 {
  margin-top: 1.7rem;
  line-height: 2.5rem;
  display: inline-block;
}

.page-template-page-home .line {
  display: block;
  width: 145px;
  height: 9px;
}

/* Aktuell */

.grid-aktuell {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  row-gap: 90px;
}

a.link-item {
  display: block;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}

a.link-item:hover {
  opacity: 0.75;
}

.card-top {
  background-color: #ccc;
  min-height: 287px;
  padding: 50px 30px;
  border-radius: 3px;
  margin-bottom: 15px;
}

.card-top h2 {
  margin: 0 0 20px;
  line-height: 3rem;
  color: #fff;
  word-break: break-word;
  /* EDIT FONTSIZE */
  /* Final - Flora versprochen */
  font-size: 2.2rem;
  letter-spacing: 0.2px;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.card-top .sub {
  font-size: 1.375rem;
  color: #fff;
}

.grid-aktuell .cat,
.grid-aktuell a .cat {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.134rem;
  color: #3c3c3c;
}

.grid-aktuell p,
.grid-aktuell a p {
  margin-top: 0.413rem;
  margin-bottom: 0.625rem;
  word-break: break-word;
  color: #3c3c3c;
}

.date {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.031rem;
  color: rgba(38, 38, 38, 0.6);
  font-weight: 500;
}

.cat-filter {
  /* margin-top: 60px; Update Headline Startseite 2026*/
  margin-top: 0px;
  margin-bottom: 70px;
}

.cat-filter ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}

.cat-filter ul a {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: rgba(38, 38, 38, 0.9);
  font-size: 14px;
  letter-spacing: 0.5px;
  padding-bottom: 5px;
  border-bottom: 4px solid transparent;
  transition: all 300ms ease-in-out;
}

.fade_out_overlay {
  position: absolute;
  right: 20px;
  z-index: 5;
  display: none;
}

@media (max-width: 949px) {
  .fade_out_overlay {
    display: block;
  }
}

/* Aktuell - single post */
#header-single {
  background-color: #ccc;
  color: #fff;
  width: 100%;
  padding: 65px 20px;
  display: flex;
  flex-flow: column;
  align-items: center;
}

#header-single h1 {
  margin: 3.75rem 0;
  color: #fff;
  max-width: 1200px;
}

#header-single .cat {
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

#header-single .sub {
  font-size: 1.875rem;
  letter-spacing: 0.043rem;
  text-align: center;
}

.single .wrapper.main .inner.content {
  padding: 30px 17.5% 30px;
}

.inner.content .header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-top: 60px;
}

.header-info .social svg {
  width: 43px;
  height: 43px;
}

.header-info .social a {
  display: inline-block;
}

.header-info .social a svg .svg-icon {
  fill: #6e6e6e;
  transition: all 300ms ease-in-out;
}

.header-info .social a:hover svg .svg-icon {
  fill: #8c8c8c;
}

/* Services - Children Pages */
.page-child h1 {
  font-size: 4rem;
  margin-top: 4rem;
  text-align: center;
}

.page-child .wrapper.main .inner.content {
  padding: 60px 135px 30px;
}

.page-child .inner.grid-container h6,
h3 {
  margin-top: 90px;
}

.page-child .inner.grid-container p {
  margin-bottom: 0;
}

.services-inner {
  padding: 0px 15%;
}

.separator-line {
  width: 100%;
  height: 10px;
}

a.read-more {
  display: block;
  text-align: center;
  color: rgba(252, 51, 31, 0.9);
  font-size: 0.875rem;
  margin-top: 30px;
}

a.read-more svg .arrow-down {
  fill: rgba(252, 51, 31, 0.9);
}

a.read-more svg {
  margin-left: 3px;
}

a.read-more.active svg {
  transform: rotate(180deg);
}

a.read-more:hover {
  cursor: pointer;
  color: #8c8c8c;
}

a.read-more:hover svg .arrow-down {
  fill: #8c8c8c;
}

a.read-more .rm-open {
  display: none;
}

a.read-more.active .rm-open {
  display: inline-block;
}

a.read-more.active .rm-close {
  display: none;
}

div.read-more {
  display: none;
}

div.read-more.active {
  display: block;
}

.grid-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  row-gap: 30px;
}

.grid-links a {
  color: rgba(252, 51, 31, 0.9);
  border-bottom: 2px solid rgba(252, 51, 31, 0.9);
  font-weight: 500;
}

.grid-links a:hover {
  color: #8c8c8c;
  border-bottom: 2px solid #8c8c8c;
}

.grid-links p {
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(38, 38, 38, 0.9);
  margin-bottom: 0;
}

.grid-downloads {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.grid-downloads > div {
  background-color: #fff;
  min-height: 230px;
  padding: 30px;
  text-align: center;
}

a.dl {
  border-radius: 50%;
  background-color: rgba(38, 38, 38, 0.1);
  display: inline-flex;
  height: 4.5rem;
  width: 4.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

a.dl:hover {
  background-color: #f7f7f7;
}

a.dl svg {
  fill: rgba(252, 51, 31, 0.9);
  height: 29px;
  width: 29px;
}

a.dl-text {
  color: rgba(38, 38, 38, 0.9);
}

a.dl-text:hover {
  color: #8c8c8c;
}

.dl-text-add {
  display: block;
  font-size: 0.875rem;
  margin-top: 1rem;
  font-weight: 300;
}

/* Services - Page: WeDo */
a.link-wedo {
  display: block;
  text-align: center;
  padding: 17px 40px;
  border-radius: 28.5px;
  background-color: #01ff57;
  color: rgba(0, 0, 0, 0.85);
  margin: 60px auto 0px;
  width: 276px;
  transition: background-color 300ms ease-in-out;
}

a.link-wedo:hover {
  background-color: #65fd98;
}

/* Services - Page: Filmpolitik */

.ps-item .def-link {
  margin-left: 0;
  margin-top: 15px;
  margin-bottom: 60px;
}

.ps-item .title {
  font-weight: 500;
}

/* Über uns */
.inner.dark h1 {
  color: #fff;
}

.wrapper.main.dark {
  margin-top: 0;
  color: #fff;
  background-color: rgba(38, 38, 38, 0.9);
}

.wrapper.main.dark p {
  line-height: 1.65rem;
  letter-spacing: 0.031rem;
}

.wrapper.main.mitglieder {
  margin-top: 0;
}

.grid-mitglieder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}

.grid-mitglieder > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper.main.inmemoriam .inner {
  text-align: center;
  /* padding-bottom: 0; */
}

.inmemoriam .name {
  font-weight: 500;
}

.inmemoriam a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .inmemoriam .trenner-desktop {
    display: none;
  }
  .inmemoriam span {
    display: block;
  }
}

/* Footer */

footer {
  color: rgba(38, 38, 38, 0.81);
}

footer .inner .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 176px;
}

.inner .icons .svg-icon {
  fill: rgba(38, 38, 38, 0.9);
  transition: all 300ms ease-in-out;
}

.inner .icons a:hover .svg-icon {
  fill: #c8c8c8;
}

footer .inner .credits {
  display: flex;
  justify-content: space-between;
}

.credits {
  border-top: 1px solid rgba(38, 38, 38, 0.2);
  padding-top: 1.375rem;
}

.credits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.credits ul li {
  padding: 0 15px;
}

.credits ul li a {
  color: rgba(38, 38, 38, 0.81);
}

.credits ul li:nth-child(2) {
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}

.credits ul li:nth-child(3) {
  border-right: 1px solid #000;
}

.credits ul li:last-child {
  padding-right: 0px;
}

.credits li a:hover {
  color: #8c8c8c;
}

/* UPDATE 2026 - Home */
.wrapper.main .inner.stoerer {
  padding: 120px 135px 60px;
  /* padding: 60px 135px 0px; */
  text-align: center;
  font-size: 2rem;
  line-height: 1.3;
}

/* Media Queries */
@media (max-width: 1270px) {
  .inner {
    padding: 0px 50px;
  }
  .wrapper.main .inner {
    padding: 60px 50px 120px;
  }
}
@media (max-width: 1090px) {
  ul#primary-menu,
  ul#menu-side {
    gap: 10px;
  }
}

@media (max-width: 980px) {
  ul#primary-menu {
    padding-left: 0;
  }
  .logo-main {
    width: 170px;
    height: auto;
  }
  .grid-aktuell {
    grid-template-columns: 1fr 1fr;
  }
  .wrapper.main .inner.stoerer {
    padding-top: 100px;
    padding-right: 35px;
    padding-left: 35px;
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  footer .inner .credits {
    flex-flow: column;
    text-align: center;
  }

  .credits div:nth-child(1) {
    order: 2;
    padding-top: 1.375rem;
    padding-bottom: 5rem;
  }

  .credits div:nth-child(2) {
    order: 1;
    border-bottom: 1px solid rgba(38, 38, 38, 0.2);
    padding-bottom: 1.375rem;
  }
  .credits ul li:first-child {
    padding-left: 0;
  }
}

@media (max-width: 850px) {
  .inner {
    padding: 0px 20px;
  }
  .wrapper.main .inner {
    padding: 30px 20px 60px;
  }
}

/* @media (max-width: 767px) { */
@media (max-width: 850px) {
  /* Menu & Basic Layout */
  .mobile-menu-toggle {
    display: block;
  }
  .h-mobile {
    display: none;
  }
  .wrapper.top {
    height: 70px;
  }
  .wrapper.main {
    margin-top: 70px;
  }

  #menu-overlay.active {
    opacity: 1;
    height: calc(100vh - 70px);
    width: 100%;
    background-color: #f7f6f6;
    overflow: scroll;
  }

  /* Menu - Side Menu - Lupe */
  /* Menu Side - Lupe */
  .menu-side-container {
    position: absolute;
    right: 70px;
  }

  #search-form.active {
    min-height: 75px;
  }

  form#searchform input[type="text"] {
    font-size: 1.125rem;
  }

  /* Home */

  #header-first {
    height: 310px;
  }

  #header-first h1 {
    font-size: 2rem;
    line-height: 2.7rem;
    letter-spacing: 0.046rem;
    color: #fff;
    padding: 0 20px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    word-wrap: break-word;
  }

  .text-big {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }

  .grid-aktuell {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }

  .grid-home {
    grid-template-columns: 1fr;
    row-gap: 90px;
  }

  .grid-mitglieder {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
  }

  .grid-home p {
    padding-bottom: 0px;
  }

  .page-template-page-home h2,
  .search-results h2,
  .search h2 {
    font-size: 1.75rem;
    margin-bottom: 0.2rem;
    line-height: 2.5rem;
  }

  .search-results h2 {
    margin-top: 0;
  }

  .page-template-page-home .button-container {
    flex-flow: column;
  }

  .page-template-page-home .button-container a.button-round {
    width: 100%;
    justify-content: center;
    order: 2;
    padding: 17px 40px;
  }

  .page-template-page-home .button-container a.def-link {
    width: 100%;
    order: 1;
    margin-bottom: 2rem;
    margin-left: 0;
  }

  .page-template-page-home .line {
    height: 6px;
    width: 100px;
  }

  /* Aktuell */
  .card-top {
    min-height: unset;
  }

  .card-top h2 {
    font-size: 2rem;
    line-height: 38px;
    color: #fff;
  }

  .card-top .sub {
    font-size: 1.1rem;
  }

  .cat-filter {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .inner.content .header-info {
    margin-top: 30px;
  }

  /* Pages / Aktuell Single */

  #header-single {
    padding: 42px 20px;
  }

  #header-single .sub {
    font-size: 1.1rem;
  }

  #header-single h1 {
    margin: 2rem 0 1rem 0;
  }

  #header-single .cat {
    font-size: 0.75rem;
  }

  .single .wrapper.main .inner.content,
  .page-child .wrapper.main .inner.content {
    padding: 20px;
  }

  .services-inner {
    padding: 0;
  }

  .page-child h1 {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 3.75rem;
    margin-bottom: 1.875rem;
    word-wrap: break-word;
  }

  .page-template-default h1,
  .page-template-page-about h1 {
    margin-top: 3rem;
  }

  h1.margin-fix {
    margin-bottom: 3.5rem;
  }

  .grid-links,
  .grid-downloads {
    grid-template-columns: 1fr;
  }

  .page-child .inner.grid-container h6,
  h3 {
    margin-top: 60px;
  }
  h6,
  h3 {
    line-height: 26px;
  }

  /* Footer */
  .credits ul li {
    padding: 0 10px;
    font-size: 0.7rem;
    line-height: 1;
  }
}

@media (max-width: 500px) {
  #header-first {
    background-image: url("img/home-header-mobile.jpg");
  }
}

/* Categories - Colors */
.cat-arbeitsrecht .card-top,
.cat-arbeitsrecht #header-single {
  background-color: var(--c-ar);
}
.cat-filmpolitik .card-top,
.cat-filmpolitik #header-single {
  background-color: var(--c-fi);
}
.cat-sozialversicherung .card-top,
.cat-sozialversicherung #header-single {
  background-color: var(--c-so);
}
.cat-urheberinnenrecht .card-top,
.cat-urheberinnenrecht #header-single {
  background-color: var(--c-ur);
}
.cat-we_do .card-top,
.cat-we_do #header-single {
  background-color: var(--c-we);
}
.cat-coronanews .card-top,
.cat-coronanews #header-single {
  background-color: var(--c-co);
}

.cat-sonstiges .card-top,
.cat-sonstiges #header-single {
  background-color: var(--c-ss);
}

.cat-veranstaltungen .card-top,
.cat-veranstaltungen #header-single {
  background-color: var(--c-va);
}

/* - home - Überschriften */
.page-template-page-home .cat-arbeitsrecht h2 {
  color: var(--c-ar);
}

.page-template-page-home .cat-sozialversicherung h2 {
  color: var(--c-so);
}

.page-template-page-home .cat-urheberinnenrecht h2 {
  color: var(--c-ur);
}

.page-template-page-home .cat-we_do h2 {
  color: var(--c-we);
  /* background-color: var(--c-we); */
}

.page-template-page-home .cat-filmpolitik h2 {
  color: var(--c-fi);
}

.page-template-page-home .cat-coronanews h2 {
  color: var(--c-co);
}

.page-template-page-home.cat-sonstiges h2 {
  color: var(--c-ss);
}

/* - filter */
.home .cat-filter a.cat-all,
.blog .cat-filter a.cat-all,
.cat-filter a.cat-all:hover {
  border-bottom: 4px solid rgba(38, 38, 38, 0.9);
}

.category-filmpolitik .cat-filter a.cat-filmpolitik,
.cat-filter a.cat-filmpolitik:hover {
  border-bottom: 4px solid var(--c-fi);
}

.category-arbeitsrecht .cat-filter a.cat-arbeitsrecht,
.cat-filter a.cat-arbeitsrecht:hover {
  border-bottom: 4px solid var(--c-ar);
}

.category-sozialversicherung .cat-filter a.cat-sozialversicherung,
.cat-filter a.cat-sozialversicherung:hover {
  border-bottom: 4px solid var(--c-so);
}

.category-urheberinnenrecht .cat-filter a.cat-urheberinnenrecht,
.cat-filter a.cat-urheberinnenrecht:hover {
  border-bottom: 4px solid var(--c-ur);
}

.category-we_do .cat-filter a.cat-we_do,
.cat-filter a.cat-we_do:hover {
  border-bottom: 4px solid var(--c-we);
}

.category-coronanews .cat-filter a.cat-coronanews,
.cat-filter a.cat-coronanews:hover {
  border-bottom: 4px solid var(--c-co);
}

.cat-filter a.cat-coronanews {
  color: var(--c-co);
}

.cat-filter a.cat-coronanews:before {
  content: "\25B6";
  margin-right: 5px;
}

.category-sonstiges .cat-filter a.cat-sonstiges,
.cat-filter a.cat-sonstiges:hover {
  border-bottom: 4px solid var(--c-ss);
}

.category-veranstaltungen .cat-filter a.cat-veranstaltungen,
.cat-filter a.cat-veranstaltungen:hover {
  border-bottom: 4px solid var(--c-va);
}

/* - Services */
.service-arbeitsrecht .wrapper.main {
  background-color: #faf5ef;
}

.service-arbeitsrecht .separator-line,
.cat-arbeitsrecht .line {
  background-color: var(--c-ar);
}

.service-sozialversicherung .wrapper.main {
  background-color: rgba(77, 118, 84, 0.06);
}

.service-sozialversicherung .separator-line,
.cat-sozialversicherung .line {
  background-color: var(--c-so);
}

.service-urheberinnenrecht .wrapper.main {
  background-color: #f7f7f7;
}

.service-urheberinnenrecht .separator-line,
.cat-urheberinnenrecht .line {
  background-color: var(--c-ur);
}

.service-filmpolitik .wrapper.main {
  background-color: rgba(113, 98, 166, 0.08);
}

.service-filmpolitik .separator-line,
.cat-filmpolitik .line {
  background-color: var(--c-fi);
}

.page-template-page-services_sub_wedo .wrapper.main {
  background-color: rgba(76, 76, 76, 0.1);
}

.page-template-page-services_sub_wedo .separator-line,
.cat-we_do .line {
  background-color: var(--c-we);
}

/* We Do - Anpassungen Farbe */
.cat-we_do .card-top h2,
.cat-we_do #header-single h1,
.cat-we_do #header-single {
  color: #4e4c4f;
}

/* Search Results - List Bullets Images */
ul.search-results > li.cat-we_do:before {
  background-image: url("data:image/svg+xml,%3Csvg class='custom-marker' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25'%3E%3Crect fill='%234d4d4d' width='25' height='25' rx='1.1'/%3E%3C/svg%3E");
}

ul.search-results > li.cat-arbeitsrecht:before {
  background-image: url("data:image/svg+xml,%3Csvg class='custom-marker' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25'%3E%3Crect fill='%23d3a46e' width='25' height='25' rx='1.1'/%3E%3C/svg%3E");
}

ul.search-results > li.cat-coronanews:before {
  background-image: url("data:image/svg+xml,%3Csvg class='custom-marker' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25'%3E%3Crect fill='%23e05a37' width='25' height='25' rx='1.1'/%3E%3C/svg%3E");
}

ul.search-results > li.cat-urheberinnenrecht:before {
  background-image: url("data:image/svg+xml,%3Csvg class='custom-marker' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25'%3E%3Crect fill='%23d99989' width='25' height='25' rx='1.1'/%3E%3C/svg%3E");
}

ul.search-results > li.cat-filmpolitik:before {
  background-image: url("data:image/svg+xml,%3Csvg class='custom-marker' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25'%3E%3Crect fill='%237162a6' width='25' height='25' rx='1.1'/%3E%3C/svg%3E");
}

ul.search-results > li.cat-sozialversicherung:before {
  background-image: url("data:image/svg+xml,%3Csvg class='custom-marker' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25'%3E%3Crect fill='%234d7654' width='25' height='25' rx='1.1'/%3E%3C/svg%3E");
}

ul.search-results > li.cat-:before {
  background-image: url("data:image/svg+xml,%3Csvg class='custom-marker' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25'%3E%3Crect fill='%233c3c3c' width='25' height='25' rx='1.1'/%3E%3C/svg%3E");
}
