﻿/* ==========================
   ARK Hugo Theme 1-X
   ========================== */

/* ── Utility ── */

.highlight {
  color: #ffffff;
  background-color: #cccccc;
}

/* ── Reset ── */

* {
  margin: 0;
  padding: 0;
  list-style: none;
}

*:focus {
  outline: none;
}

/* ── Root scaling ── */

html {
  font-size: clamp(16px, 1rem + 0.5vw, 22px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* ── Body ── */

body {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 100%;
  padding-top: 50px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: clamp(16px, 1.1rem, 20px);
  line-height: 1.6;
  word-spacing: 1px;
  font-kerning: normal;
  text-align: center;
  vertical-align: top;
  color: #33302e;
  background: #f5f5f7;
  overflow-x: hidden;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #202125;
    color: #e6e6e6;
  }

}

/* ── Typography ── */

p {
  margin: 0 0 15px 0;
}

h2 {
  padding: 0 0 15px 0;
  font-size: 1.1em;
  font-weight: bold;
  color: #000000;
}

h3 {
  padding: 0 0 10px 0;
  font-size: 1em;
  font-weight: normal;
  line-height: 1em;
}

h4 {
  padding: 0 0 10px 0;
  font-size: 0.9em;
  font-weight: normal;
  color: #4d4d4d;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: clamp(0.95em, 1em, 1.05em);
  }

  h3 {
    font-size: clamp(0.85em, 0.9em, 0.95em);
  }

  h4 {
    font-size: clamp(0.85em, 0.9em, 0.95em);
  }

}

@media (prefers-color-scheme: dark) {
  h1, h2, h3, h4 {
    color: #aaccff;
  }

}

blockquote {
  margin: 0 auto 10px auto;
  width: 95%;
  border-left: 5px solid #e6e6e6;
  padding: 5px 5px 5px 15px;
  display: block;
}

blockquote p {
  margin: 0;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
  padding: 0;
}

figure img {
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

picture img {
  width: 100%;
  height: auto;
}

a:link {
  color: #ff6600;
  text-decoration: none;
}

a:visited {
  color: #ff6600;
  text-decoration: none;
}

a:hover {
  color: #5599ff;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  a:link, a:visited {
    color: #ffffff;
  }

  a:hover {
    color: #cccccc;
  }

}

/* ==========================
   SOCKET (main content area)
   ========================== */

#socket-main {
  position: relative;
  width: 100%;
  height: 100%;
}

.sm, .sm-single {
  margin: 0 0 0 0;
}

.smc-frontpage {
  position: relative;
  margin: 0 auto;
  width: 70%;
  max-width: 1250px;
  overflow: hidden;
}

.smc-single {
  position: relative;
  margin: 0 auto;
  width: 70%;
  max-width: 1250px;
  overflow: hidden;
}
	.smcs2-single {
	  position: relative;
	  margin: 0 auto;
	  width: 100%;
	  max-width: 800px;
	}
.smc-recent {
  position: relative;
  margin: 0 auto;
  width: 70%;
  background: #f2dfce;
  overflow: hidden;
}

/* ── socket-header-stack-delimiter (3-bar stripe) ── */

#socket-header-stack-delimiter {
  margin: 10px 0 15px 0;
}

.shsd-1, .shsd-2, .shsd-3 {
  height: 5px;
  width: 33.3%;
  background: #ffffff;
  float: left;
}

/* ── socket-header labels ── */

#socket-header {
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  line-height: 1.2em;
}

.sh-latest {
  margin: 0 auto;
  padding: 10px 0 0 0;
  font-weight: bold;
  color: #ff6600;
}

/* ── smcs1: focus + highlights row ── */

.smcs1 {
  margin: 10px auto 0 auto;
  width: 80%;
  max-width: 1250px;
  overflow: hidden;
}

.smcs1-s1 {
  float: left;
}

.smcs1-s2 {
  width: 100%;
  float: left;
}

/* ── smcp: page container ── */

.smcp {
  margin: 0 auto;
  width: 60%;
  max-width: 1045px;
  overflow: hidden;
}

.smcpc {
  margin: 0 auto;
  width: 90%;
}

/* page / single versions */

.shsdp {
  margin: 90px auto 0 auto;
  height: 10px;
  width: 100%;
  max-width: 1250px;
  background: #000000;
}

.shsds {
  position: relative;
  margin: 10px auto 5px auto;
  height: 5px;
  width: 100%;
  background: #ffffff;
}

/* focus content enclosure */

.ceea {
  margin-top: 10px;
  padding: 10px 20px 20px 20px;
  height: 100%;
  background: #f2dfce;
  overflow: hidden;
}

/* ── Responsive: Mobile (≤767px) ── */

@media screen and (max-width: 767px) {
  #socket-main {
    font-size: 1em;
  }

  .shsdp {
    width: 100%;
  }

  .smcp {
    width: 100%;
  }

  .smcpc {
    margin: 0 auto;
    width: 90%;
  }

  #socket-header {
    margin-top: 10px;
    font-size: 1.1em;
  }

  .sh-latest {
    margin: 5px 20px 5px 0;
  }

  .smcs1 {
    width: 95%;
  }

  .ceea {
    margin-top: 0;
    padding: 5px 10px;
    height: 100%;
    background: none;
    overflow: hidden;
  }

  .smcs1-s1 {
    margin: 0 auto;
    width: 100%;
    border-top: 10px solid #000000;
    padding: 0;
  }

  .smcs1-s2 {
    width: 100%;
    min-width: 100%;
  }

  .sw-highlights {
    margin: 10px auto 0 auto;
    width: 100%;
    float: none;
  }

  .shsds {
    width: 95%;
  }

  .shsd-2 {
    background: #000000;
  }

}

/* ── Responsive: Tablet (768px - 1023px) ── */

@media screen and (min-width: 768px) and (max-width: 1023px) {
  body {
    padding-top: 50px;
  }

  .smc-frontpage,
  .smc-single,
  .smc-recent {
    width: 90%;
  }

  .smcp {
    width: 85%;
  }

  .smcs1 {
    width: 90%;
  }

  h2 {
    font-size: clamp(1em, 1.05em, 1.1em);
  }

}

/* ── Responsive: Desktop (≥1024px) ── */

@media screen and (min-width: 1024px) {
  .smcs1-s1 {
    width: 66%;
    max-width: 825px;
    border-top: 10px solid #000000;
    padding-top: 10px;
    float: left;
  }

  .smcs1-s2 {
    width: 34%;
    max-width: 425px;
    border-top: 10px solid #cccccc;
    float: right;
  }

  .sw-focus {
    padding: 0 20px 10px 20px;
  }

  .sw-highlights {
    padding: 10px 20px 10px 20px;
  }

}

/* ── Dark mode socket ── */

@media (prefers-color-scheme: dark) {
  #socket-main {
    background: #202125;
  }

  .smcp {
    background: #333333;
  }

  .smc-recent {
    background: #333333;
  }

  .smcs1-s1 {
    border-top: 10px solid #333333;
  }

  .smcs1-s2 {
    border-top: 10px solid #4a4a4a;
  }

  .ceea {
    background: #333333;
  }

  .island {
    background: #313236;
  }

  .shsds {
    background: #333333;
  }

  .shsdp {
    background: #434343;
  }

  .shsd-1, .shsd-2, .shsd-3 {
    background: #434343;
  }

  .sh-focus a:link, .sh-focus a:visited {
    color: #5599ff;
  }

  .sh-highlights a:link, .sh-highlights a:visited {
    color: #5599ff;
  }

}

@media screen and (max-width: 849px) and (prefers-color-scheme: dark) {
  .ceea {
    background: none;
  }

}

@media screen and (min-width: 850px) and (prefers-color-scheme: dark) {
  .smcs2 {
    background: #333333;
  }

}

/* ==========================
   MOBILE MENU
   ========================== */

#topnav-mobile-menu {
  position: absolute;
  right: -100vh;
  top: 0;
  height: 100vh;
  display: block;
  background: #fff1e5;
  z-index: 10;
  transition: right 0.3s ease;
}

#topnav-mobile-container {
  width: 100%;
  height: auto;
}

#topnav-mobile-container-content {
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

#topnav-mobile {
  margin: 9px auto 0 auto;
  width: 90%;
  border-top: 10px solid #000000;
}

#topnav-mobile ul {
  margin-bottom: 1px;
}

#topnav-mobile li {
  padding: 10px 0;
  border-bottom: 1px solid #ffccaa;
}

#topnav-mobile li:nth-last-child(2) {
  border-bottom: none;
}

/* mobile header bar inside drawer */

.mh {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #ccc1b7;
  overflow: hidden;
}

.mhc {
  margin: 0 auto;
  width: 90%;
}

.ml {
  float: left;
}

.ml img {
  margin: 10px 0 0 0;
}

.mmbc {
  float: right;
}

.mmbc img {
  margin: 10px 35px 0 0;
}

/* hamburger button */

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 1px;
  transition: all 0.2s;
}

@media (prefers-color-scheme: dark) {
  .hamburger span {
    background: #e6e6e6;
  }

}

/* close button inside mobile drawer */

#mobile-menu-button-close-btn {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  margin: 22px 15px 0 0;
  float: right;
  color: #333;
  line-height: 1;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

@media (prefers-color-scheme: dark) {
  #mobile-menu-button-close-btn {
    color: #e6e6e6;
  }

}

/* logo text (used instead of image) */

.logo-text {
  margin-top: -7px;
  font-family: 'Quantico', sans-serif;
  font-size: 1.6em;
  font-weight: bold;
  color: #000;
  letter-spacing: 2px;
}

.logo-text-mobile {
  font-size: 1.4em;
}

.maintenance-nav-status {
  position: relative;
  margin: 10px 0 0 18px;
  float: left;
}

.maintenance-pill {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #e6c9b5;
  border-radius: 999px;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a4b22;
  background: rgba(255, 241, 229, 0.9);
}

@media (prefers-color-scheme: dark) {
  .logo-text {
    color: #e6e6e6;
  }

  .maintenance-pill {
    color: #ffd7bf;
    background: rgba(49, 50, 54, 0.95);
    border-color: #5f4a3d;
  }

}

/* search close button */

.search-close-btn {
  font-size: 1.2em;
  cursor: pointer;
  color: #666;
}

@media (prefers-color-scheme: dark) {
  .search-close-btn {
    color: #e6e6e6;
  }

}

@media screen and (max-width: 767px) {
  .mmbc img {
    margin: 10px 0 0 0;
    max-width: 40px;
    height: auto;
  }

  .smi li a:link, .smi li a:visited {
    display: block;
    color: #4d4d4d;
    text-decoration: none;
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .smi li:nth-child(2) a:link,
  .smi li:nth-child(2) a:visited {
    color: #ff6600;
  }

  .tmm {
    width: 100%;
  }

  .tnmcc {
    font-size: clamp(0.8em, 0.9em, 0.95em);
  }

  #header-container-content {
    width: 95%;
    padding: 0 2.5%;
  }

  #search-mobile {
    max-width: 100%;
    box-sizing: border-box;
  }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .mmbc img {
    margin: 10px 15px 0 0;
  }

  .tmm {
    width: 40%;
  }

}

@media screen and (min-width: 701px) {
  .tnmcc {
    font-size: 0.8em;
  }

  .smi li a:link, .smi li a:visited {
    display: block;
    color: #4d4d4d;
    text-decoration: none;
  }

}

@media screen and (max-width: 1099px) {
  .searchMenuOpen {
    display: none;
  }

}

@media screen and (min-width: 1100px) {
  .tmm-d, .tmmb-d {
    display: none;
  }

}

@media (prefers-color-scheme: dark) {
  #topnav-mobile {
    border-top: 10px solid #434343;
  }

  #topnav-mobile li {
    border-bottom: 1px solid #434343;
  }

  #topnav-mobile-menu {
    background: #333333;
  }

  .mh {
    border-bottom: 1px solid #4d4d4d;
    background: #202125;
  }

  .smi li a:link, .smi li a:visited {
    color: #e6e6e6;
  }

}

/* ==========================
   HEADER / TOPNAV
   ========================== */

.hcb {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 6;
}

.hcb-content {
  position: relative;
  margin: 0 auto;
  width: 90%;
  height: 80px;
  max-width: 1250px;
}

#header-container {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  clear: both;
  z-index: 9;
}
.frosted {
  background: rgba(248, 239, 233, 0.5); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media (prefers-color-scheme: dark) {
  #header-container {
    background: #202125;
    border-bottom: 1px solid #4d4d4d;
  }

}

#header-container-content {
  position: relative;
  margin: 0 auto;
  width: 70%;
  max-width: 1250px;
  overflow: hidden;
  padding: 0 0;
  z-index: 10;
}

/* Logo */

#logo {
  position: relative;
  width: fit-content;
  height: 60px;
  float: left;
  z-index: 9;
}

#logo a {
  display: flex;
  align-items: center;
  height: 60px;
}

/* Navigation */

#nav-container {
	position: relative;
	margin: 15px 0 0 15px; 
	width: fit-content;
	height: 40px;
	float: left;	
  }
#topnav-menu-button {
  position: relative;
  height: 60px;
  float: right;
  z-index: 9;
}

@media screen and (min-width: 1100px) {
  .tnmb-m {
    display: none;
  }
}

#topnav {
  position: relative;
  max-width: 1470px;
  height: 40px;
  font-weight: normal;
  font-size: 0.9em;
  text-transform: uppercase;
  float: left;
}

#topnav ul {
  margin: 0;
  display: flex;
  height: 100%;
}

#topnav li {
  display: inline-block;
  line-height: 21px;
  height: 21px;
}

#topnav li a:link,
#topnav li a:visited {
  display: block;
  color: #000000;
  padding: 0 0.7em 0 0;
}

#topnav ul li a:hover {
  display: block;
  color: #5599ff;
  text-decoration: none;
  padding: 0 0.7em 0 0;
}

#topnav li:nth-child(2) a:link,
#topnav li:nth-child(2) a:visited {
  color: #000000;
}

#topnav li:nth-child(2) a:hover {
  color: #5599ff;
}

@media screen and (max-width: 1023px) {
  #topnav {
    display: none;
  }

}

@media screen and (max-width: 1023px) {
  #header-container-content {
    width: 95%;
  }

}

@media (prefers-color-scheme: dark) {
  #topnav li a:link, #topnav li a:visited {
    color: #ececec;
  }

}

/* ── Desktop search ── */

@media screen and (min-width: 1024px) {
  #search-desktop {
    position: fixed;
    margin: 10px 0 0 90px;
    height: 33px;
    width: 475px;
    border: 1px solid #fcdada;
    display: none;
  }

  #search-menu-close {
    margin: 7px 10px 0 -27px;
    width: 22px;
    float: right;
    height: 30px;
	z-index: 9;
  }

  #search-form-desktop {
    text-align: center;
    display: inline-block;
  }

  #search-form-desktop form {
    display: flex;
    align-items: center;
    height: 33px;
  }

  #search-submit-desktop {
    position: relative;
    margin: 0 0 0 10px;
    height: 60px;
    width: 30px;
    float: right;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
  }

  #search-box-desktop {
    position: relative;
    margin: 0 0 0 0;
    width: 475px;
    height: 33px;
    padding: 2px 50px 7px 15px;
    box-sizing: border-box;
    color: #33302e;
    border: 1px solid #fff1ef;
    background: none;
    float: right;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1em;
    line-height: 1;
    vertical-align: middle;
  }

  #search-box-desktop::placeholder {
    color: #b3b3b3;
	font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9em;
    line-height: 1;
    vertical-align: middle;
  }

}
#search-icon {
  position: relative;
  margin: 11px 0 0 0;
  height: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  float: left;
}

@media screen and (max-width: 1023px) {
  #search-icon {
    display: none;
  }
}

@media (prefers-color-scheme: dark) {
  #search-icon img {
    filter: invert(1);
  }
}
/* ── Mobile search ── */

@media screen and (max-width: 1023px) {
  .tns {
    display: none;
  }

  #search-mobile {
    margin: 10px auto;
    width: 90%;
    max-width: calc(100% - 20px);
    height: 44px;
    padding: 0;
    border: 1px solid #ffccaa;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  #search-form-mobile {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
  }

  #search-container {
    width: 100%;
    padding-right: 44px;
    box-sizing: border-box;
  }

  #search-submit-mobile {
    position: absolute;
    right: 5px;
    margin: 0;
    height: 44px;
    width: 44px;
    padding: 0;
    float: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
  }

  #search-box-mobile {
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 10px 40px 10px 10px;
    border: none;
    background: none;
    float: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: clamp(0.9em, 1em, 1.1em);
    box-sizing: border-box;
  }

  #search-box-mobile::placeholder {
    color: #4d4d4d;
    font-size: clamp(0.9em, 1em, 1.1em);
  }

}

@media (prefers-color-scheme: dark) {
  #search-desktop, #search-mobile {
    color: #e6e6e6;
    border: 1px solid #4d4d4d;
  }

  #search-box-desktop {
    color: #e6e6e6;
    border: none;
    background: none;
  }

  #search-box-mobile {
    color: #e6e6e6;
    background: none;
  }

  #search-box-desktop::placeholder {
    color: #e6e6e6;
  }

  #search-box-mobile::placeholder {
    color: #e6e6e6;
  }

  #search-submit-desktop {
    color: #e6e6e6;
  }

  #search-submit-mobile {
    color: #e6e6e6;
  }

}

/* ── Overlay ── */

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  cursor: pointer;
  display: none;
  background: #202125;
  opacity: 0.6;
  z-index: 7;
}

/* ==========================
   PAGE SHOWCASE
   ========================== */

#main-showcase {
  position: relative;
  height: auto;
  z-index: 2;
}

#main-showcase-content {
  margin: 0 auto;
  position: relative;
  height: 100%;
  width: auto;
  max-width: 1920px;
  overflow: hidden;
}

#main-showcase-content img {
  width: 100%;
  height: auto;
  display: block;
}

@media (prefers-color-scheme: dark) {
  #main-showcase-content {
    background: #202125;
  }

  #main-showcase-content img {
    opacity: 0.8;
  }

}

#picture-showcase {
  max-height: 1px;
}

#page-showcase {
  position: relative;
  margin-top: 5px;
  width: 100%;
  height: auto;
  z-index: 5;
}

#page-showcase-content {
  position: relative;
  margin: 0 auto;
  max-width: 1045px;
  overflow: hidden;
}

#page-showcase-content img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e6e6e6;
}

@media (prefers-color-scheme: dark) {
  #page-showcase-content {
    background: #202125;
  }

  #page-showcase-content img {
    opacity: 0.8;
  }

}

/* ==========================
   PAGE TITLE NAV
   ========================== */

#page-title-nav {
  position: relative;
  width: 100%;
  clear: both;
  z-index: 6;
}

#page-title-nav-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1250px;
  height: 100%;
  min-height: 60px;
  font-family: 'Roboto', sans-serif;
  text-align: left;
}

.ptnc {
  width: 100%;
  max-width: 1250px;
}

.ptnc-front-page {
  width: 100%;
  max-width: 100%;
}

.ptl-front-page {
  width: 100%;
}

.ptlc-front-page {
  margin: 0 auto;
  padding-bottom: 10px;
}

.ptlc {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1250px;
  height: auto;
  color: #999999;
  font-size: 2em;
  font-weight: bold;
  line-height: 40px;
  font-family: 'Roboto', sans-serif;
  padding-top: 10px;
}

@media (prefers-color-scheme: dark) {
  .ptlc {
    color: #999999;
  }

}

/* ==========================
   SPACERS
   ========================== */

#spacer-1 {
  margin: 10px 0;
  position: relative;
  width: 100%;
  height: 5px;
  z-index: 4;
  background: #ffffff;
  clear: both;
}

#spacer-2 {
  position: relative;
  width: 100%;
  height: 1px;
  z-index: 4;
  background: #b3b3b3;
  clear: both;
}

@media (prefers-color-scheme: dark) {
  #spacer-1 {
    background: #333333;
  }

}

/* ==========================
   POST STACKS / LOOP
   ========================== */

#each-post-news-stack ol li {
  margin: 0 0 10px 40px;
  list-style-type: decimal;
}

#each-post-news-stack ol ol li {
  margin: 10px 0 10px 20px;
  list-style-type: decimal;
}

#each-post-news-stack ul li,
#each-post-content ul li {
  margin: 10px 0 10px 35px;
  list-style-type: disc;
}

.wrp-m, .wrp-d {
  text-align: left;
}

#custom-content {
  width: 100%;
  text-align: left;
}

.custom-content-header {
  margin: 5px auto 0 0;
}

.custom-content-footer {
  margin: 0 auto;
}

#custom-content-content {
  width: 100%;
  max-width: 1250px;
  text-align: left;
  overflow: hidden;
}

#custom-content-content h2 {
  width: 100%;
  padding: 0 0 13px 0;
}

.four-oh-four {
  font-size: 1em;
}

@media screen and (min-width: 1025px) {
  .custom-content-header {
    margin: 5px auto 0 20px;
  }

}

/* ── Loop ── */

#each-post-news-stack {
  text-align: left;
}

.epns {
  max-width: 1250px;
}

.epns-single {
  margin: 0 auto;
  padding: 0;
}

.epns-page {
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 849px) {
  .epns {
    padding: 0;
  }

}

.epnsc-focus {
  height: auto;
  width: 100%;
}

.epnsc-highlights {
  margin-top: 5px;
  width: 100%;
  height: auto;
}

.epnsc-latest {
  margin: 5px 0 10px 0;
  width: 100%;
  padding-bottom: 10px;
  overflow: hidden;
}

/* ── Each post title ── */

#each-post-title {
  position: relative;
  margin: 0 0 0 0;
  font-weight: bold;
  text-align: left;
}

#each-post-title a:link {
  color: #000000;
}

#each-post-title a:visited {
  color: #000000;
}

#each-post-title a:hover {
  color: #999999;
  text-decoration: none;
}

.epts-focus {
  margin: 0 auto;
  width: 100%;
}

.epts-highlights {
  margin: 0 auto;
  width: 100%;
  font-size: 0.9em;
  line-height: 30px;
}

.epts-latest {
  margin: 0 auto;
  width: 100%;
  font-size: 1.2em;
  line-height: 30px;
}

.epts-single {
  margin: 0 auto;
  width: 100%;
  max-width: 1045px;
  color: #000000;
}

@media screen and (max-width: 767px) {
  .epts-focus, .epts-highlights, .epts-latest, .epts-single {
    font-size: clamp(0.95em, 1em, 1.05em);
    line-height: 1.5;
  }

  .epts-single {
    margin-top: 10px;
  }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .epts-focus {
    font-size: clamp(1em, 1.1em, 1.2em);
    line-height: 1.5;
  }

  .epts-highlights {
    font-size: clamp(0.9em, 0.95em, 1em);
    line-height: 1.5;
  }

}

@media screen and (min-width: 1024px) {
  .epts-focus {
    font-size: 1.2em;
    font-weight: bold;
  }

  .epts-highlights {
    font-size: 1em;
    font-weight: bold;
  }

  .epts-latest {
    font-size: 1.2em;
  }

  .epts-single {
    font-size: 1.2em;
  }

}

@media (prefers-color-scheme: dark) {
  #each-post-title, #each-post-title a:link, #each-post-title a:visited {
    color: #e6e6e6;
  }

}

/* ── Author / date ── */

#each-post-author-date-time {
  position: relative;
  overflow: hidden;
}

.epadt-front-page {
  margin-top: 10px;
  width: 100%;
  max-width: 430px;
}

.epadt-single {
  margin: 5px auto 12px auto;
  width: fit-content;
  max-width: 800px;
  padding: 5px 10px;
  border: 1px solid #44aa00;
  float: left;
}

#each-post-author {
  float: left;
}

.epa-frontpage, .epa-single {
  color: #ff6600;
  float: left;
}

#each-post-date-time {
  margin: 0 0 0 5px;
  float: left;
}

.epdt-frontpage {
  color: #999999;
}

.epdt-single {
  color: #4d4d4d;
}

.epdt-twitter {
  margin-left: 5px;
}

.epdt-twitter a:link, .epdt-twitter a:visited {
  color: #4d4d4d;
}

.epdt-twitter a:hover {
  color: #00aa00;
  text-decoration: none;
}

.epdt-slash {
  margin: 0 10px;
  color: #00d400;
}

@media screen and (max-width: 767px) {
  .epadt {
    margin: 10px 0;
    font-size: clamp(0.8em, 0.85em, 0.9em);
    line-height: 1.5;
  }

  .epa-frontpage {
    font-size: clamp(0.65em, 0.7em, 0.75em);
  }

  #each-post-date-time {
    font-size: clamp(0.65em, 0.7em, 0.75em);
  }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .epadt {
    font-size: clamp(0.65em, 0.7em, 0.75em);
  }

}

@media screen and (min-width: 1024px) {
  .epadt {
    font-size: clamp(0.7em, 0.75em, 0.8em);
  }

}

@media (prefers-color-scheme: dark) {
  #each-post-date-time {
    color: #ccaaff;
  }

  .epdt-twitter a:link, .epdt-twitter a:visited {
    color: #e6e6e6;
  }

  .epdt-twitter a:hover {
    color: #00aa00;
  }

}

/* ── Excerpt ── */

#each-post-excerpt {
  position: relative;
  margin: -5px auto 10px auto;
  padding: 0 5px 3px 5px;
  max-width: 1250px;
  color: #4d4d4d;
  font-size: 0.9em;
  line-height: 30px;
  text-align: left;
}

#each-post-excerpt a:link, #each-post-excerpt a:visited {
  color: #999999;
}

#each-post-excerpt a:hover {
  color: #000000;
  text-decoration: none;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #each-post-excerpt {
    font-size: clamp(0.8em, 0.85em, 0.9em);
  }

}

@media (prefers-color-scheme: dark) {
  #each-post-excerpt {
    color: #ffffff;
  }
}

/* ── Category pills ── */

#post-categories {
  font-size: 1.2em;
  color: #5599ff;
  line-height: 1em;
}

#post-categories-socket-front-page-feed {
  position: relative;
  margin: 10px auto;
  width: 100%;
  max-width: 1250px;
  text-align: left;
}

#post-categories a:link, #post-categories a:visited {
  color: #2c5aa0;
}

.pc-single {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1045px;
  font-family: 'Quantico', sans-serif;
  font-size: 1.2em;
}

.pc-single-span {
  width: fit-content;
  padding: 5px 0 10px 0;
  display: block;
}

#post-categories-socket-front-page-feed {
  font-size: 0.7em;
}

#post-categories-socket-front-page-feed > a:nth-child(1n) {
  margin: 0 10px 10px 0;
  color: #2a7fff;
  text-decoration: none;
  padding: 2px 8px;
  border: 1px solid #e9c6af;
  list-style: none;
  float: left;
}

#post-categories-socket-front-page-feed > a:hover:nth-child(1n) {
  color: #ffffff;
  background: #9955ff;
  border-color: #9955ff;
}

#post-categories-socket-front-page-feed > a:nth-child(2n) {
  margin: 0 10px 5px 0;
  color: #2c5aa0;
  text-decoration: none;
  padding: 2px 8px;
  border: 1px solid #ffb380;
  list-style: none;
  float: left;
}

#post-categories-socket-front-page-feed > a:hover:nth-child(2n) {
  border-color: #4d4d4d;
  background: #4d4d4d;
}

#post-categories-socket-front-page-feed > a:nth-child(3n) {
  margin: 0 0 5px 0;
  color: #4d4d4d;
  text-decoration: none;
  padding: 2px 8px;
  display: inline-block;
  border: 1px solid #5f8dd3;
  list-style: none;
}

#post-categories-socket-front-page-feed > a:hover:nth-child(3n) {
  border-color: #5f8dd3;
  background: #5f8dd3;
}

@media screen and (max-width: 767px) {
  #post-categories {
    font-size: clamp(1em, 1.05em, 1.1em);
  }

  #post-categories-socket-front-page-feed {
    display: none;
  }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #post-categories {
    font-size: clamp(0.9em, 1em, 1.1em);
  }

}

.post-categories li {
  display: inline-block;
}

@media (prefers-color-scheme: dark) {
  .post-categories a:link, .post-categories a:visited {
    color: #ffffff;
    border: 1px solid #4d4d4d;
  }

  .post-categories a:hover {
    color: #fff;
    background: #808080;
    text-decoration: none;
  }

  #post-categories-socket-front-page-feed > a:link {
    opacity: 0.8;
  }

}

/* ── Thumbnails ── */

.each-post-thumbnail {
  position: relative;
  width: 100%;
  height: auto;
}

.epthumb-standard img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
}

.epthumb-recent img {
  margin-right: 1px;
}

.epthumb-frontpage-limit {
  max-width: 430px;
  max-height: 203px;
  overflow: hidden;
}

.epthumb-frontpage-limit img {
  max-width: 1920px;
  max-height: 1080px;
  overflow: hidden;
}

.epthumb-focus-limit {
  max-width: 780px;
  max-height: 420px;
  overflow: hidden;
}

.epthumb-focus-limit img {
  max-width: 1920px;
  max-height: 1080px;
  overflow: hidden;
}

.epthumb-frontpage {
  width: 100%;
  height: auto;
  float: left;
}

.epthumb-single {
  margin: 0 auto 5px auto;
  max-width: 1920px;
  height: auto;
}

.epthumb-single img {
  position: relative;
  margin: 8px auto 0 auto;
  width: 100%;
  height: auto;
}

.default-thumb-placeholder {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #f2dfce 0%, #e6c9b5 100%);
  border: 1px solid #e6e6e6;
}

@media (prefers-color-scheme: dark) {
  .epthumb-standard img {
    opacity: 0.7;
  }

  .default-thumb-placeholder {
    background: #333;
    border-color: #444;
  }

}

@media screen and (max-width: 767px) {
  .pc-single-span {
    padding: 10px 0 0 0;
  }

  .epns-1-latest {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }

  .epns-2-latest {
    display: none;
  }

  .epns-3-latest {
    width: 100%;
    float: none;
  }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .pc-single-span {
    padding: 10px 0 0 0;
  }

  .epns-1-latest {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }

  .epns-2-latest {
    display: none;
  }

  .epns-3-latest {
    width: 100%;
    float: none;
  }

}

@media screen and (min-width: 1024px) {
  .epnsc-latest {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .epnsc-latest > div {
    width: calc(100% / 3);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 1px;
  }

  .epns-1-focus, .epns-2-focus {
    width: 100%;
  }

  .epns-3-focus {
    width: 100%;
    display: block;
  }

  .epns-3-focus img {
    width: 100%;
    height: auto;
    display: block;
  }

  .epns-1-latest {
    box-sizing: border-box;
    float: left;
  }

  .epns-2-latest {
    box-sizing: border-box;
  }

  .epns-3-latest {
    max-width: 363px;
    box-sizing: border-box;
  }

}

@media (prefers-color-scheme: dark) {
  .epnsc-latest {
    border-bottom: 1px solid #434343;
  }

}

/* ── Post content (single) ── */

#each-post-content {
  position: relative;
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 800px;
  font-size: 1em;
  text-align: left;
  overflow: hidden;
}

#each-post-content img {
  margin: 0 auto 10px auto;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  display: block;
}
.hidden-caption figcaption {
    display: none;
}
@media (prefers-color-scheme: dark) {
  #each-post-content img {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  #each-post-content {
    margin: 10px auto 20px auto;
    padding: 0 5px;
    font-size: clamp(0.9em, 0.95em, 1em);
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
  }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #each-post-content {
    margin: 10px auto 20px auto;
    font-size: clamp(0.95em, 1em, 1.05em);
    line-height: 1.6;
  }

}

/* ── Active / Sponsored badges ── */

.news-stack-active-sponsored {
  margin-top: 10px;
  width: 100%;
  float: left;
}

.active-stack {
  padding: 1px 3px;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  background: #FF0000;
  color: #ffffff;
}

.sponsored-stack {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  padding: 1px 3px;
  background: #b380ff;
  color: #ffffff;
}

/* ── Pagination ── */

#post-navigation {
  padding-bottom: 5px;
  font-size: 0.95em;
  text-align: center;
  clear: both;
}

@media screen and (max-width: 1099px) {
  #post-navigation {
    font-size: 1em;
  }

}

.wp-pagenavi {
  margin: 7px 0 10px 0;
  clear: both;
}

.wp-pagenavi a, .wp-pagenavi span {
  margin: 4px 3px;
  text-decoration: none;
  border: 1px solid #b3b3b3;
  padding: 6px 8px;
  min-width: 20px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #4d4d4d;
}

.wp-pagenavi span.current {
  font-weight: normal;
}

@media (prefers-color-scheme: dark) {
  .wp-pagenavi a, .wp-pagenavi span {
    border: 1px solid #4d4d4d;
  }

  .wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: #4d4d4d;
  }

  #post-navigation {
    border-top: 1px solid #4d4d4d;
  }

}

/* ── No-post message ── */

#no-post-message {
  width: 100%;
}

#no-post-message-content {
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
  max-width: 1250px;
  text-align: left;
}

/* ── Trending divider ── */

#each-post-divider-trending {
  margin: 20px 0;
  height: 5px;
  width: 100%;
  background: #00ead1;
}

/* ==========================
   CALL-TO-ACTION STRIP
   ========================== */

.scta {
  width: 100%;
  padding: 8px 0;
  border-top: 1px solid #cccccc;
}

.sctac {
  margin: 0 auto;
  width: 100%;
  max-width: 1250px;
}

.sctac a:link {
  width: 100%;
  color: #4d4d4d;
  font-size: 0.8em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
}

.sctac a:visited {
  color: #4d4d4d;
}

.sctac a:hover {
  color: #ff5555;
}

@media (prefers-color-scheme: dark) {
  .sctac a:link, .sctac a:visited {
    color: #ffffff;
  }

  .sctac a:hover {
    color: #80b3ff;
  }

}

/* ==========================
   FOOTER (DOWNNAV)
   ========================== */

#downnav {
  position: relative;
  padding: 0 0 5px 0;
  font-size: 0.9em;
  color: #4d4d4d;;
}

#downnav-content {
  margin: 0 auto 25px auto;
  width: 70%;
  max-width: 1250px;
  text-align: left;
}

#downnav-call-to-action {
  width: 100%;
  text-align: left;
  padding: 5px 0;
  border-bottom: 1px solid #cccccc;
}

#downnav-call-to-action a:link {
  text-decoration: none;
}

#downnav-menu {
  margin: 5px 0 10px 0;
  width: 100%;
  float: left;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
}

#downnav-menu ul {
  margin: 0;
  float: left;
}

#downnav-menu li {
  margin: 0 !important;
  display: inline-block;
}

#downnav-menu li a {
  margin-left: 0;
  padding: 0 9px 0 5px;
  border-right: 1px solid #cccccc;
}

#downnav-menu .disabled-link {
  display: inline-block;
  padding: 0 5px 0 0;
  color: #666666;
}

#downnav-menu li:first-child a {
  padding: 0 9px 0 0;
}

#downnav-menu li:last-child  a {
  border-right: none;
}

#downnav a:link, #downnav a:visited {
  color: #33302e;
}

#downnav a:hover {
  color: #4d4d4d;
  text-decoration: none;
}

#downnav-copyright {
  width: 100%;
  font-size: 0.9em;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #downnav {
    font-size: clamp(0.75em, 0.8em, 0.85em);
  }

  #downnav-content {
    width: 95%;
  }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #downnav {
    font-size: clamp(0.8em, 0.85em, 0.9em);
  }

  #downnav-content {
    width: 90%;
  }

}

@media screen and (max-width: 1023px) {
  #downnav-call-to-action {
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
  }

  #downnav-menu {
    margin: 0 0 10px 0;
  }

  #downnav-menu ul {
    float: none;
  }

  #downnav-menu li {
    display: block;
  }

  #downnav-menu li a {
    width: 100%;
    display: block;
    padding: 12px 0;
    min-height: 44px;
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    align-items: center;
  }

  #downnav-menu .disabled-link {
    width: 100%;
    display: block;
    padding: 12px 0;
    min-height: 44px;
  }

  #downnav-menu li:first-child a {
    padding: 12px 0;
  }

  #downnav-menu li:last-child  a {
    border-bottom: none;
  }

}

.maintenance-screen {
  width: 70%;
  max-width: 1250px;
}

.maintenance-wrap {
  max-width: 860px;
}

.maintenance-card {
  margin: 40px auto 0 auto;
  padding: 32px 34px;
  border: 1px solid #ead9cd;
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.98) 0%, rgba(247, 236, 228, 0.98) 100%);
  box-shadow: 0 20px 50px rgba(102, 67, 43, 0.08);
}

.maintenance-kicker {
  margin-bottom: 14px;
  color: #c45b19;
  font-size: 0.72em;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.maintenance-title {
  margin-bottom: 14px;
}

.maintenance-content {
  margin-top: 0;
}

.maintenance-content p {
  max-width: 680px;
}

.maintenance-actions {
  margin-top: 20px;
}

.maintenance-home-link {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #d99c72;
  color: #8a3f0f !important;
  background: rgba(255, 255, 255, 0.72);
}

.maintenance-home-link:hover {
  color: #ffffff !important;
  background: #c45b19;
  border-color: #c45b19;
}

@media screen and (max-width: 767px) {
  .maintenance-screen {
    width: 95%;
  }

  .maintenance-card {
    margin-top: 24px;
    padding: 20px 15px;
  }

  .maintenance-nav-status {
    margin: 12px 0 0 10px;
  }

  .maintenance-title {
    font-size: clamp(1.2em, 1.5em, 1.8em);
  }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .maintenance-screen {
    width: 90%;
  }

}

@media (prefers-color-scheme: dark) {
  #downnav {
    color: #e6e6e6;
    background: #202125;
  }

  #downnav-menu {
    border-bottom: 1px solid #4d4d4d;
  }

  #downnav-menu li a {
    border-right: 1px solid #4d4d4d;
  }

  #downnav-call-to-action, #downnav-menu {
    border-bottom: 1px solid #4d4d4d;
  }

  #downnav a:link, #downnav a:visited, #downnav-menu li a:link {
    color: #e6e6e6;
  }

  #downnav-menu .disabled-link {
    color: #d0d0d0;
  }

  #downnav a:hover {
    color: #cccccc;
    text-decoration: none;
  }

  .maintenance-card {
    border-color: #4d4d4d;
    background: linear-gradient(180deg, rgba(42, 43, 48, 0.98) 0%, rgba(30, 31, 35, 0.98) 100%);
    box-shadow: none;
  }

  .maintenance-kicker {
    color: #ffb380;
  }

  .maintenance-home-link {
    color: #ffd8c2 !important;
    border-color: #7d5a44;
    background: rgba(49, 50, 54, 0.92);
  }

  .maintenance-home-link:hover {
    color: #202125 !important;
    background: #ffb380;
    border-color: #ffb380;
  }

}

@media screen and (max-width: 1023px) and (prefers-color-scheme: dark) {
  #downnav-menu li a {
    border-right: none;
    border-bottom: 1px solid #4d4d4d;
  }

}

/* ==========================
   CONTACT FORMS
   ========================== */

.grey-text, .text-area {
  margin: 15px 0 0 0;
  width: 100%;
  max-width: 320px;
  color: #666666;
  padding: 5px;
  border: 1px solid #b3b3b3;
  background: none;
}

@media screen and (max-width: 767px) {
  .grey-text, .text-area {
    width: 95%;
    max-width: 100%;
    min-height: 44px;
    padding: 10px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
  }

}

@media screen and (max-width: 491px) {
  .grey-text, .text-area {
    width: 90%;
  }

}

.drop-down {
  width: 100%;
  max-width: 320px;
  color: #666666;
  padding: 5px;
  margin: 5px 0 0 0;
}

.send-button {
  margin-bottom: 15px;
  color: #666666;
  padding: 12px 20px;
  margin: 15px 0 0 0;
  border: 1px solid #b3b3b3;
  background: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

@media (prefers-color-scheme: dark) {
  .grey-text {
    color: #e6e6e6;
    border: 1px solid #4d4d4d;
    background: none;
  }

  .text-area {
    color: #ffffff;
    border: 1px solid #4d4d4d;
    background: none;
  }

  .send-button {
    color: #ffffff;
    border: 1px solid #4d4d4d;
    background: none;
  }

}

/* ==========================
   SITEMAP
   ========================== */

#sitemap {
  width: 100%;
}

#sitemap-content {
  margin: 0 auto;
  max-width: 1250px;
  text-align: left;
}

#sitemap-stack-content {
  margin-top: 5px;
}

#sitemap-stack-content ul ul {
  margin-left: 10px;
}

.smp-ssh {
  color: #000000;
}

.smp-ssc a:link, .smp-ssc a:visited {
  color: #4d4d4d;
}

.smp-ssc a:hover {
  color: #b3b3b3;
}

@media (prefers-color-scheme: dark) {
  .smp-ssh {
    color: #ffb380;
  }

}

@media screen and (max-width: 767px) {
  .smp-m {
    width: 100%;
    text-align: left;
  }

}

@media screen and (max-width: 491px) {
  .smp-m {
    width: 100%;
    text-align: left;
  }

}

@media screen and (min-width: 492px) {
  .smp-m {
    width: 20%;
    max-width: 123px;
    float: left;
  }

}

@media screen and (min-width: 1025px) {
  .smp-d {
    min-width: 174px;
    width: 20%;
    float: left;
  }

}

/* ==========================
   PLAYLIST (audio)
   ========================== */

.wp-playlist {
  margin: 0 0 10px 0 !important;
  border: 1px solid #ff6600 !important;
}

.wp-playlist-light {
  background: #ffeeaa !important;
}

/* ==========================
   SEARCH PAGE
   ========================== */

#post-categories-search {
  width: 280px;
  padding: 0 10px 0 0;
}
