/* base.css */
:root {
  color-scheme: light;
  --page: #444;
  --paper: #fefefe;
  --text: #333;
  --heading: #4d4d4d;
  --muted: #666;
  --line: #eee;
  --accent: #dc6e09;
}

@font-face {
  font-family: "PTSansNarrowRegular";
  src: url("https://panographie.net/wp-content/themes/striking_r/fontfaces/PT-Sans-fontfacekit/PTN57F-webfont.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OpenSansLight";
  src: url("https://panographie.net/wp-content/themes/striking_r/fontfaces/OpenSans-fontfacekit/OpenSans-Light-webfont.woff")
    format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}
html {
  background: var(--page);
}
body {
  margin: 0;
  color: var(--text);
  font:
    16px/25px "OpenSansLight",
    "Lucida Sans Unicode",
    "Lucida Grande",
    Garuda,
    sans-serif;
  background: #444 url("/assets/theme/striking_r/images/page_body.gif") repeat;
}
a {
  color: var(--muted);
  text-decoration: none;
}
a:hover {
  color: #333;
  text-decoration: none;
}
img,
object,
iframe {
  max-width: 100%;
}
img {
  height: auto;
}
figure {
  margin: 0;
}
.content object[type="text/html"] {
  display: block;
  width: 100%;
  height: 157px;
  margin-bottom: 20px;
}
p,
ul,
ol,
dl,
table,
fieldset,
blockquote,
pre,
code {
  margin: 0 0 20px;
}
.inner {
  width: min(960px, calc(100vw - 32px));
  margin: 0 auto;
}
.clearboth {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
  font-size: 0;
  line-height: 0;
}

/* header.css */
.site-header {
  min-height: 155px;
  overflow: visible;
  background: #000 url("/assets/media/uploads/2014/01/kopf11_sw.jpg") no-repeat fixed 50% 0;
}
.header-inner {
  position: relative;
  min-height: 155px;
  padding-top: 50px;
}
.logo {
  position: absolute;
  left: 0;
  bottom: 58px;
  display: inline-block;
}
.logo img {
  display: block;
  width: 320px;
  height: auto;
}
.header-search {
  position: absolute;
  top: 14px;
  right: 0;
  z-index: 40;
  margin: 0;
  background: #fff;
  padding: 0.8rem 1rem;
}
.header-search input {
  height: 27px;
  padding: 4px 6px;
  color: #333;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.search-results {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: min(420px, calc(100vw - 24px));
  max-height: 360px;
  overflow: auto;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
}
.search-result {
  display: block;
  padding: 10px 12px;
  color: #eee;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.search-result:hover,
.search-result:focus,
.search-result.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.search-title,
.search-url,
.search-snippet {
  display: block;
}
.search-title {
  line-height: 1.3;
}
.search-url {
  margin-top: 3px;
  color: #aaa;
  font-size: 12px;
}
.search-snippet {
  margin-top: 5px;
  color: #cfcfcf;
  font-size: 13px;
  line-height: 1.35;
}
.search-summary {
  padding: 7px 12px;
  color: #999;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.search-results mark {
  color: #fff;
  background: rgba(220, 110, 9, 0.55);
}
.search-empty {
  padding: 10px 12px;
  color: #bbb;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
}
.nav-toggle,
.submenu-toggle {
  display: none;
}
.site-nav {
  position: absolute;
  right: 0;
  bottom: 2px;
  z-index: 20;
  width: 960px;
  border: 1px solid #000;
  background: linear-gradient(#3d3d3d, #212121);
  box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.1);
}
.menu {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu li {
  position: relative;
  margin: 0;
  list-style: none;
}
.site-nav .menu > li > a {
  display: block;
  padding: 17px 13px;
  color: #eee;
  font-family: "PTSansNarrowRegular", sans-serif;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  border-left: 1px solid #000;
  box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.1);
}
.site-nav .menu > li:first-child > a {
  border-left: 0;
  box-shadow: none;
}
.site-nav .menu > li:hover > a,
.site-nav .menu > li.active > a {
  color: var(--accent);
  background: #111;
}
.site-nav .has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.5em;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  border-bottom: 2px solid transparent;
}
.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  z-index: 30;
  min-width: 198px;
  max-height: 72vh;
  overflow: auto;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-bottom-width: 3px;
}
.has-children:hover > .sub-menu {
  display: block;
}
.sub-menu a {
  display: block;
  padding: 8px 14px;
  color: #000;
  font-family: "PTSansNarrowRegular", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.sub-menu a:hover {
  color: #000;
  background: #fff;
}

/* layout.css */
.page-shell {
  background: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.layout {
  display: grid;
  grid-template-columns: minmax(0, 630px) 300px;
  gap: 30px;
  padding: 40px 0 48px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.entry_title,
.sidebar h3,
.site-footer h3 {
  margin: 0 0 0.6em;
  color: var(--heading);
  font-family: "PTSansNarrowRegular", sans-serif;
  font-weight: normal;
  line-height: 1em;
}
.content h1 {
  color: var(--heading);
  font-size: 34px;
  line-height: 36px;
  text-shadow: #bbb 1px 1px 10px;
}
.content h2 {
  color: var(--heading);
  font-size: 28px;
  line-height: 34px;
  text-shadow: #ccc 1px 1px 10px;
}
.sidebar h3 {
  color: var(--heading);
  font-size: 28px;
  line-height: 30px;
  text-shadow: #ccc 1px 1px 6px;
}

/* content-components.css */
.framed_box {
  margin: 22px 0 30px;
  border: 0;
}
.framed_box_content {
  padding: 17px 18px 1px;
  border: 1px solid #c9c9c9;
  border-radius: 1px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}
.one_half,
.one_third,
.two_third {
  position: relative;
  float: left;
  min-height: 1px;
  margin-right: 4%;
}
.one_half {
  width: 48%;
}
.one_third {
  width: 30.6666%;
}
.two_third {
  width: 65.3332%;
}
.last {
  margin-right: 0 !important;
  clear: right;
}
.divider_padding {
  height: 12px;
  border-top: 1px solid var(--line);
}

.entry {
  margin-bottom: 40px;
  padding-bottom: 0;
  border-bottom: 0;
  zoom: 1;
}
.entry::before,
.entry::after {
  display: table;
  content: "";
}
.entry::after {
  clear: both;
}
.entry_title {
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1em;
}
.entry_title a,
.entry_title a:visited {
  color: #333;
}
.entry_meta {
  margin-bottom: 12px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.entry_meta a,
.entry_meta a:visited {
  color: var(--muted);
}
.image_styled {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 20px;
}
.image_frame {
  position: relative;
  display: block;
  padding: 0;
  background: #f9f9f9;
}
.image_frame a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  background: #f9f9f9;
}
.image_frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  background: #f9f9f9;
  border: 1px solid #eee;
}
.image_shadow_wrap {
  position: relative;
  height: 100%;
}
.image_shadow_wrap::before,
.image_shadow_wrap::after {
  position: absolute;
  top: 50%;
  right: 15px;
  bottom: 0;
  left: 15px;
  z-index: 0;
  content: "";
  border-radius: 100px / 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
}
.image_shadow_wrap::after {
  right: 10px;
  left: auto;
  transform: skew(8deg) rotate(3deg);
}
.read_more_link {
  color: var(--muted);
  font-size: 13px;
  font-weight: normal;
}
.read_more_link:hover {
  color: transparent;
}
.post-card .image_styled {
  display: block;
}
.post-card .read_more_link {
  display: inline-block;
  margin-top: 2px;
}
.article-detail .article-header {
  margin-bottom: 22px;
}
.article-detail .article-body {
  margin-bottom: 34px;
}
.article-related {
  display: grid;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.related-group h2 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.1;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.related-card {
  margin: 0;
}
.related-card-link {
  display: block;
  height: 100%;
  color: var(--text);
  background: #fafafa;
  border: 1px solid #e2e2e2;
}
.related-card-link:hover,
.related-card-link:focus {
  color: #222;
  background: #fff;
  border-color: #cfcfcf;
}
.related-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.related-card-body {
  display: block;
  padding: 10px;
}
.related-card-title {
  display: block;
  color: #333;
  font-family: "PTSansNarrowRegular", sans-serif;
  font-size: 18px;
  line-height: 1.15;
}
.related-card time {
  display: block;
  margin-top: 6px;
  color: #777;
  font-size: 12px;
  line-height: 1.3;
}
.button-link {
  display: inline-block;
  padding: 9px 16px;
  color: #fff;
  background: #c96510;
  border: 1px solid #d4d4d4;
}
.button-link:hover {
  color: #ccc;
  background: #c96510;
}

/* sidebar-and-forms.css */
.sidebar {
  color: #666;
  font-size: 16px;
}
.sidebar section {
  margin-bottom: 32px;
}
.sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sidebar img {
  display: block;
  width: 271px;
  height: 136px;
  object-fit: cover;
  margin: 0 0 10px;
  border: 1px solid #fff;
}
.sidebar time {
  display: block;
  color: #999;
  font-size: 13px;
}
.sidebar p {
  font-size: 14px;
  line-height: 21px;
}
.sidebar section > div a {
  display: inline-block;
  margin: 0 5px 6px 0;
  color: #666;
}
.sidebar section > div a:hover {
  color: #333;
}

.content footer section li,
.content section ul li {
  overflow: hidden;
}
.content footer section li img,
.content section ul li img {
  display: block;
  width: min(180px, 100%);
  height: auto;
  margin: 0 12px 10px 0;
}
.static-search input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 9px;
  color: #333;
  font: inherit;
  background: #fff;
  border: 1px solid #cfcfcf;
}
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-form label {
  display: grid;
  gap: 4px;
}
.contact-form .check {
  grid-template-columns: 18px 1fr;
  align-items: start;
}
.contact-form .check input {
  width: auto;
  margin-top: 5px;
}
button,
.contact-form button {
  justify-self: start;
  padding: 9px 16px;
  color: #fff;
  background: #444;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.button-disabled {
  display: inline-block;
  padding: 7px 12px;
  color: #888;
  background: #f4f4f4;
  border: 1px solid #d4d4d4;
}

/* footer.css */
.site-footer {
  color: #eee;
  font:
    16px/25px "OpenSansLight",
    "Lucida Sans Unicode",
    sans-serif;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0)), #343434;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
  padding: 36px 0 28px;
}
.site-footer h3 {
  color: #fff;
  font-size: 24px;
  line-height: 30px;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer li {
  margin: 0;
  padding: 4px 0;
}
.site-footer a,
.site-footer a:visited {
  color: #fff;
}
.site-footer a:hover {
  color: var(--accent);
}
.footer-contact p {
  margin-bottom: 8px;
}
.footer-form {
  display: grid;
  gap: 8px;
}
.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 5px;
  color: #fff;
  font: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-form textarea {
  min-height: 82px;
  resize: vertical;
}
.footer-form label {
  display: block;
  font-size: 13px;
  line-height: 18px;
}
.footer-form .consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 6px;
  align-items: start;
}
.footer-form .consent input {
  width: auto;
  margin-top: 3px;
}
.footer-form button {
  justify-self: start;
  padding: 0;
  color: #666;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-form button span {
  display: inline-block;
  padding: 0.6em 1.3em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.footer-bottom .menu a {
  display: block;
  padding: 0 10px 0 0;
  color: #fff;
  font-family: "OpenSansLight", sans-serif;
  font-size: 14px;
  text-transform: none;
}
.footer-bottom p {
  margin: 0;
  color: #fff;
  font-family: "OpenSansLight", sans-serif;
  font-size: 16px;
}

/* responsive.css */
@media (max-width: 979px) {
  .site-header {
    min-height: 0;
    padding-bottom: 0;
  }
  .header-inner {
    min-height: 0;
    padding: 20px 0;
  }
  .logo {
    position: relative;
    bottom: auto;
    margin: 0;
  }
  .site-nav {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 18px;
  }
  .js .site-nav {
    display: none;
  }
  .site-nav.open {
    display: block;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 30px;
    color: #eee;
    background: #222;
    border: 1px solid #111;
  }
  .header-search {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 12px 0 0;
  }
  .header-search input {
    width: min(100%, 320px);
  }
  .search-results {
    left: 0;
    right: auto;
  }
  .submenu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 42px;
    height: 42px;
    color: #eee;
    background: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-nav .has-children > a {
    padding-right: 50px;
  }
  .site-nav .has-children > a::after {
    display: none;
  }
  .menu {
    display: block;
  }
  .site-nav .menu > li > a {
    padding: 12px 14px;
    border-top: 1px solid #000;
    border-left: 0;
  }
  .sub-menu {
    position: static;
    max-height: none;
    border: 0;
    border-top: 1px solid #000;
  }
  .js .site-nav .sub-menu {
    display: none;
  }
  .js .site-nav .sub-open > .sub-menu {
    display: block;
  }
  .layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .sidebar img {
    width: 271px;
    max-width: 100%;
  }
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: block;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .inner {
    width: min(100% - 24px, 960px);
  }
  .logo img {
    width: min(320px, calc(100vw - 92px));
  }
  .content h1 {
    font-size: 30px;
    line-height: 34px;
  }
  .content h2 {
    font-size: 25px;
    line-height: 30px;
  }
  .one_half,
  .one_third,
  .two_third {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
