/* ===== LiteSpot core styles (converted) ===== */
/* Google Font is enqueued via WP. Font Awesome via CDN. */
:root {
  --body-font: "Raleway", Arial, sans-serif;
  --menu-font: "Raleway", Arial, sans-serif;
  --title-font: "Raleway", Arial, sans-serif;
  --text-font: "Raleway", Arial, sans-serif;
  --body-bg-color: #f1f3f4;
  --outer-bg: #ffffff;
  --outer-mobile-bg: #f1f3f4;
  --main-color: #1a73e8;
  --title-color: #202124;
  --title-hover-color: #1a73e8;
  --meta-color: #636466;
  --text-color: #3c4043;
  --header-bg: #ffffff;
  --header-color: #202124;
  --header-hover-color: #1a73e8;
  --submenu-bg: #ffffff;
  --submenu-color: #202124;
  --submenu-hover-color: #1a73e8;
  --megamenu-bg: #ffffff;
  --megamenu-color: #202124;
  --megamenu-hover-color: #1a73e8;
  --mobilemenu-bg: #ffffff;
  --mobilemenu-color: #202124;
  --mobilemenu-hover-color: #1a73e8;
  --widget-bg: #ffffff;
  --widget-title-color: #202124;
  --post-card-bg: #ffffff;
  --post-title-color: #202124;
  --post-title-hover-color: #1a73e8;
  --post-text-color: #3c4043;
  --footer-bg: #ffffff;
  --footer-color: #3c4043;
  --footer-hover-color: #1a73e8;
  --footerbar-bg: #ffffff;
  --footerbar-color: #202124;
  --footerbar-hover-color: #1a73e8;
  --cookie-bg: #ffffff;
  --cookie-color: #3c4043;
  --button-bg: #1a73e8;
  --button-lite-bg: #1a73e810;
  --button-color: #ffffff;
  --button-hover-bg: #1767d0;
  --button-hover-color: #ffffff;
  --rgba-gray: rgba(155, 170, 175, 0.12);
  --border-color: rgba(155, 155, 155, 0.15);
  --radius: 8px;
  --widget-shadow: 0 1px 2px rgba(0, 0, 0, 0.025);
  --avatar-shadow: 0px 1px 4px rgba(0, 0, 0, 0.05);
}
html.is-dark {
  --body-bg-color: #2b2b2b;
  --outer-bg: #1a1a1a;
  --outer-mobile-bg: #1a1a1a;
  --title-color: #f6f7f8;
  --title-hover-color: #1a73e8;
  --meta-color: #aaaaaa;
  --text-color: #b4b6ba;
  --header-bg: #202020;
  --header-color: #f6f7f8;
  --header-hover-color: #1a73e8;
  --submenu-bg: #252525;
  --submenu-color: #f6f7f8;
  --submenu-hover-color: #1a73e8;
  --megamenu-bg: #252525;
  --megamenu-color: #f6f7f8;
  --megamenu-hover-color: #1a73e8;
  --mobilemenu-bg: #1b1b1b;
  --mobilemenu-color: #f6f7f8;
  --mobilemenu-hover-color: #1a73e8;
  --widget-bg: #202020;
  --widget-title-color: #f6f7f8;
  --post-card-bg: #202020;
  --post-title-color: #f6f7f8;
  --post-title-hover-color: #1a73e8;
  --post-text-color: #b4b6ba;
  --footer-bg: #202020;
  --footer-color: #b4b6ba;
  --footer-hover-color: #1a73e8;
  --footerbar-bg: #202020;
  --footerbar-color: #f6f7f8;
  --footerbar-hover-color: #1a73e8;
  --cookie-bg: #202020;
  --cookie-color: #b4b6ba;
  --button-bg: #1a73e8;
  --button-color: #ffffff;
  --button-hover-bg: #1767d0;
  --button-hover-color: #ffffff;
  --rgba-gray: rgba(155, 155, 155, 0.04);
  --border-color: rgba(155, 155, 155, 0.03);
}
/* Reset + base */
* {
  box-sizing: border-box;
}
html {
  position: relative;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--outer-bg);
  background-color: var(--body-bg-color);
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.4;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--main-color);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* Layout */
#outer-wrapper {
  width: 100%;
  max-width: 100%;
  background-color: var(--outer-bg);
  margin: 0 auto;
}
.container {
  position: relative;
}
.row-x1 {
  width: 1058px;
  max-width: 100%;
  margin: 0 auto;
}
#content-wrapper {
  float: left;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}
#content-wrapper > .container {
  display: flex;
  justify-content: space-between;
}
#main-wrapper {
  width: calc(100% - 330px);
}
#sidebar-wrapper {
  width: 300px;
}
.no-sidebar #main-wrapper {
  width: 100%;
}

/* Header */
#header-wrapper {
  float: left;
  width: 100%;
  z-index: 50;
}
.main-header,
.header-inner {
  float: left;
  width: 100%;
  height: 59px;
  background-color: var(--header-bg);
}
.header-header {
  float: left;
  width: 100%;
  height: 59px;
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--border-color);
}
.header-items {
  float: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.main-logo {
  height: 58px;
  padding-right: 13px;
}
.main-logo .blog-title {
  font-size: 23px;
  color: var(--header-color);
  font-weight: 700;
}
.main-logo .blog-title a {
  color: var(--header-color);
}
.main-logo .blog-title a:hover {
  color: var(--header-hover-color);
}

/* Nav */
#litespot-pro-main-nav {
  height: 58px;
}
.litespot-menu,
.litespot-menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.litespot-menu > li > a {
  display: block;
  height: 58px;
  font-family: var(--menu-font);
  font-size: 15px;
  color: var(--header-color);
  font-weight: 600;
  line-height: 58px;
  padding: 0 14px;
}
.litespot-menu > li:hover > a {
  color: var(--header-hover-color);
}
.litespot-menu li ul {
  position: absolute;
  left: 0;
  top: 58px;
  min-width: 180px;
  background-color: var(--submenu-bg);
  padding: 5px 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: visibility 0.1s, opacity 0.17s, transform 0.17s;
}
.litespot-menu li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.litespot-menu li ul li a {
  display: block;
  font-size: 14px;
  color: var(--submenu-color);
  padding: 8px 14px;
}
.litespot-menu li ul li a:hover {
  color: var(--submenu-hover-color);
}

/* Toggles/search */
.tgl-wrap {
  height: 58px;
  background: var(--header-bg);
  display: flex;
  align-items: center;
}
.tgl-style {
  width: 38px;
  height: 38px;
  background: var(--rgba-gray);
  color: var(--header-color);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius);
  margin-left: 8px;
}
.mobile-menu-toggle:after {
  content: "\f0c9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.show-search:after {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.darkmode-toggle:after {
  content: "\f186";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
html.is-dark .darkmode-toggle:after {
  content: "\f185";
  font-weight: 900;
}
#main-search-wrap {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 58px;
  background: var(--header-bg);
}
.main-search {
  height: 100%;
  display: flex;
  align-items: center;
}
.main-search .search-form {
  height: 38px;
  background: var(--rgba-gray);
  display: flex;
  flex: 1;
  border-radius: var(--radius);
}
.main-search .search-input {
  flex: 1;
  background: transparent;
  font-size: 14px;
  color: var(--header-color);
  padding: 0 16px;
  border: 0;
}
.search-close {
  width: 38px;
  background: transparent;
  border: 0;
}
.search-close:before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* Mobile menu */
.overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 37, 0.6);
  z-index: 1000;
  transition: all 0.25s;
}
#slide-menu {
  display: block;
  position: fixed;
  width: 300px;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--mobilemenu-bg);
  overflow: auto;
  z-index: 1010;
  transform: translateX(-100%);
  visibility: hidden;
  box-shadow: 3px 0 7px rgba(0, 0, 0, 0.1);
  transition: all 0.25s;
}
body.nav-active #slide-menu {
  transform: translateX(0);
  visibility: visible;
}
body.nav-active .overlay {
  visibility: visible;
  opacity: 1;
}
.slide-menu-header {
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}
.hide-litespot-pro-mobile-menu:before {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.litespot-pro-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 16px;
}
.litespot-pro-mobile-menu ul li a {
  display: block;
  font-size: 15px;
  color: var(--mobilemenu-color);
  padding: 8px 0;
}

/* Lists/cards */
.entry-image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--rgba-gray);
  color: transparent;
  border-radius: var(--radius);
}
.entry-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.entry-title {
  color: var(--post-title-color);
  font-weight: 700;
  line-height: 1.3;
}
.entry-title a {
  color: inherit;
}
.entry-title a:hover {
  color: var(--post-title-hover-color);
}
.entry-meta {
  display: flex;
  font-size: 12px;
  color: var(--meta-color);
  margin-top: 4px;
}
.entry-category {
  display: flex;
  width: fit-content;
  height: 20px;
  background: var(--main-color);
  font-size: 12px;
  color: #fff;
  align-items: center;
  padding: 0 10px;
  margin: 0 0 10px;
  border-radius: 20px;
}

.index-post {
  display: flex;
  background: var(--post-card-bg);
  padding: 16px;
  margin: 0 0 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}
.index-post .entry-image-wrap {
  width: 200px;
  height: 133px;
  margin-right: 16px;
}
.index-post .entry-title {
  font-size: 20px;
}
.index-post .entry-excerpt {
  font-size: 14px;
  color: var(--text-color);
  margin-top: 8px;
}

.list-item {
  display: flex;
  background: var(--post-card-bg);
  padding: 16px;
  margin: 20px 0 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}
.list-item .entry-image-wrap {
  width: 200px;
  height: 133px;
  margin-right: 16px;
}
.list-item .entry-title {
  font-size: 20px;
}

.grid-item {
  background: var(--post-card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}
.grid-item .entry-image-wrap {
  width: 100%;
  height: 140px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.grid-item .entry-header {
  padding: 13px 16px;
}
.grid-item .entry-title {
  font-size: 15px;
}

/* Featured & ticker */
.featured-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.featured-item {
  height: 200px;
}
.featured-item .entry-image-wrap {
  height: 100%;
}
.featured-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
}
.entry-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  padding: 16px;
  z-index: 10;
}
.entry-info .entry-title {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.entry-info .entry-meta {
  color: #c5c5c5;
}

.ticker .widget-title .title {
  font-size: 15px;
  color: var(--main-color);
  font-weight: 700;
  line-height: 20px;
}
#ticker .widget {
  display: flex;
  background: var(--widget-bg);
  align-items: flex-start;
  padding: 16px;
  margin: 30px 0 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}
.ticker-items {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 20px;
}
.ticker-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.5s;
}
.ticker-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ticker-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding-left: 10px;
}
.ticker-nav a {
  display: flex;
  width: 20px;
  height: 20px;
  background: var(--rgba-gray);
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

/* Post page */
#post-body {
  font-family: var(--text-font);
  font-size: 14px;
  color: var(--post-text-color);
  line-height: 1.6;
}
.post-body h1,
.post-body h2,
.post-body h3 {
  color: var(--title-color);
  margin: 0 0 20px;
  font-weight: 700;
}
.post-body a {
  color: var(--main-color);
}
.entry-labels {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
}
.entry-labels span,
.entry-labels a {
  font-size: 14px;
  color: var(--main-color);
  margin: 5px 6px 0 0;
}
.post-share .litespot-pro-share-links {
  display: flex;
  flex-wrap: wrap;
}
.litespot-pro-share-links li {
  padding-right: 5px;
}
.litespot-pro-share-links li a {
  display: flex;
  height: 34px;
  font-size: 16px;
  color: #fff;
  align-items: center;
}
.litespot-pro-share-links li a:before {
  padding: 0 10px;
}
.litespot-pro-share-links .show-hid a {
  background: var(--rgba-gray);
  color: rgba(155, 155, 155, 0.8);
}

/* Sidebar */
.sidebar > .widget {
  background: var(--widget-bg);
  margin: 0 0 30px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}
.sidebar .title-wrap {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-color);
}
.sidebar .widget-content {
  padding: 16px;
}

/* Footer */
#footer-wrapper {
  float: left;
  width: 100%;
  background: var(--footer-bg);
  color: var(--footer-color);
}
.footerbar {
  background: var(--footerbar-bg);
  color: var(--footerbar-color);
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}
.footerbar .footer-copyright a {
  color: var(--footerbar-color);
}

/* Cookie & back to top */
#litespot-pro-cookie-ify {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 300px;
  background: var(--cookie-bg);
  z-index: 1020;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.35s;
}
#litespot-pro-cookie-ify.is-visible {
  visibility: visible;
  opacity: 1;
}
#back-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  background: var(--button-bg);
  color: var(--button-color);
  text-align: center;
  line-height: 34px;
  border-radius: var(--radius);
}
#back-top:before {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* Responsive trims */
@media (max-width: 980px) {
  #content-wrapper > .container {
    flex-direction: column;
  }
  #main-wrapper,
  #sidebar-wrapper {
    width: 100%;
  }
  .index-post .entry-image-wrap,
  .list-item .entry-image-wrap {
    width: 160px;
    height: 106px;
  }
}

/* === IMPORTANT ===
For a pixel-perfect clone, paste the FULL CSS from your XML (LiteSpot) below this line.
Everything above ensures structure and key components match the template. */

/* ==== PASTE FULL CSS HERE (from your XML <b:skin> CDATA) ==== */
