<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*
Theme Name: Talkshow Data
Theme URI: http://beispielwebsite.com/survey-theme
Author: Ihr Name
Author URI: http://beispielwebsite.com
Description: Ein einfaches Theme für Umfragen.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: survey-theme
*/
@font-face {
  font-family: "PolySans";
  src: url("./assets/fonts/PolySans-Slim.woff2") format("woff2"), url("./assets/fonts/PolySans-Slim.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
* {
  border: 0;
  margin: 0;
  padding: 0;
  font-family: "PolySans", Arial, Helvetica, sans-serif;
  font-weight: 300;
  box-sizing: border-box;
}

@media (prefers-color-scheme: light) {
  body {
    background-color: #fff;
    --bg-color: #fff;
    --bg-color-highlight: #ECEFF1;
    --bg-color-highlight-light: #eee;
    --txt-color: #333;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    --bg-color: #263238;
    --bg-color-highlight: #37474F;
    --bg-color-highlight-light: #455A64;
    --txt-color: #fff;
  }
}
body {
  font-family: "PolySans", Times;
  font-weight: 300;
  color: var(--txt-color);
}

a {
  color: var(--txt-color);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

p {
  line-height: 1.4;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  border-radius: 15px;
  align-items: center;
  background-color: var(--bg-color);
  margin: 1rem;
  justify-content: space-between;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.site-header h1,
.site-header select,
.site-header span {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  font-size: 2rem;
}
.site-header a {
  text-decoration: none;
}
.site-header select {
  text-align: right;
  -moz-text-align-last: right;
       text-align-last: right;
  color: var(--txt-color);
  background-color: var(--bg-color-highlight);
  padding: 0.5rem 1rem;
  border-radius: 15px;
}

@media screen and (max-width: 800px) {
  .site-header h1,
  .site-header select,
  .site-header span {
    font-size: 1rem;
    text-align: left;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.box {
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--bg-color);
  margin: 1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  border-radius: 15px;
  align-items: center;
  background-color: var(--bg-color);
  margin: 1rem;
  justify-content: space-between;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  color: var(--txt-color);
  gap: 1rem;
}

.content-area {
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--bg-color);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin: 1rem;
}

.entry-content {
  max-width: 600px;
  margin: auto;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-top: 2em;
  margin-bottom: 1.25em;
}
.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child {
  margin-top: 0;
}
.entry-content h1:last-child,
.entry-content h2:last-child,
.entry-content h3:last-child,
.entry-content h4:last-child,
.entry-content h5:last-child,
.entry-content h6:last-child {
  margin-bottom: 0;
}
.entry-content p {
  margin: 1em 0;
  line-height: 1.3;
}
.entry-content ul {
  margin-left: 1rem;
}

.single-talkshow-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--bg-color);
  margin: 1rem;
  justify-content: space-between;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  gap: 2rem;
}
.single-talkshow-wrap.status-future {
  border: 3px solid var(--bg-color-highlight-light);
}
.single-talkshow-wrap a {
  text-decoration: none;
}
.single-talkshow-wrap__host {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}
.single-talkshow-wrap__mediathek {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--bg-color-highlight-light);
  border-radius: 5px;
  transition: background-color 0.3s ease-out;
}
.single-talkshow-wrap__mediathek:hover {
  background-color: var(--bg-color-highlight);
}
.single-talkshow-wrap__guests {
  gap: 1rem;
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.single-talkshow-wrap__guests .guest {
  flex: 0 0 150px;
}
.single-talkshow-wrap__guests .guest:hover img {
  transform: scale(1.1);
}
.single-talkshow-wrap__guests .guest__image {
  display: block;
  background-color: var(--bg-color-highlight);
  height: 200px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.single-talkshow-wrap__guests .guest__image &gt; a, .single-talkshow-wrap__guests .guest__image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
}
.single-talkshow-wrap__guests .guest__image_source {
  position: absolute;
  left: 5px;
  font-size: 0.4rem;
  bottom: 0;
  padding: 4px;
  opacity: 0.7;
  text-shadow: 0px 0px 2px #000;
}
.single-talkshow-wrap__guests .guest__image_source * {
  display: inline;
}

.statistics {
  display: flex;
  display: grid;
  grid-gap: 1rem;
  margin: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}
.statistics .box {
  margin: 0;
}
.statistics h3 {
  margin-bottom: 1rem;
}
.statistics p {
  margin-top: 1rem;
}

.top-guests__list {
  list-style-type: none;
}
.top-guests__list li {
  margin-top: 0.4rem;
  display: flex;
}
.top-guests__list li a {
  display: block;
  padding: 0.25rem 0.5rem;
  background-color: var(--bg-color-highlight-light);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: background-color 0.3s ease-out;
  text-decoration: none;
  border: 2px solid var(--bg-color-highlight-light);
}
.top-guests__list li .top-guests__count {
  display: block;
  padding: 0.25rem 0.5rem;
  border: 2px solid var(--bg-color-highlight-light);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: background-color 0.3s ease-out;
  text-decoration: none;
}

.guest_box {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.guest_box h2 {
  margin-bottom: 1rem;
}
.guest_box p {
  margin: 0.5rem 0;
}
.guest_box img {
  border-radius: 10px;
  width: 10rem;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.guest_box__image {
  position: relative;
  align-self: baseline;
}
.guest_box__image__src {
  position: absolute;
  left: 5px;
  font-size: 0.4rem;
  bottom: 0;
  padding: 4px;
  opacity: 0.7;
  text-shadow: 0px 0px 2px #000;
}
.guest_box__info {
  flex: 1 1 10rem;
}
.guest_box__party {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: var(--bg-color-highlight-light);
  border-radius: 5px;
}
.guest_box__party__buendnis-90-die-gruenen {
  background-color: #4CAF50;
}
.guest_box__party__cdu, .guest_box__party__csu {
  background-color: #000;
}
.guest_box__party__spd {
  background-color: #E53935;
}
.guest_box__party__fdp {
  background-color: #F9A825;
}
.guest_box__party__afd {
  background-color: #1E88E5;
}
.guest_box__party__die-linke {
  background-color: #AD1457;
}
.guest_box__party__freie-waehler {
  background-color: #FF8F00;
}

@media screen and (max-width: 700px) {
  h1 {
    font-size: 1.5rem;
  }
  .single-talkshow-wrap {
    display: block;
  }
  .single-talkshow-wrap__guests {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(90px, 100%), 1fr));
  }
  .single-talkshow-wrap__guests .guest__image {
    height: 150px;
    margin-bottom: 0.5rem;
  }
  .single-talkshow-wrap__guests .guest_name {
    font-size: 0.7rem;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>