/*
 Theme Name:   Neve Child
 Template:     neve
 Description:  Child theme for Neve
 Author:       BandIt.Space
 Version:      1.0.6
 
*/

:root {
  --accent-blue: #03c7fe;
  --accent-purple: #a86eff;
  --light-text: #f4f8ff;
  --background-dark: #05001f;
}

body {
  font-family: "Rubik", sans-serif !important;
  background-color: var(--background-dark) !important;
  color: var(--light-text) !important;
}

.header-menu-sidebar-bg,
[class*="row-inner"],
.primary-menu-ul {
  background-color: var(--background-dark) !important;
  color: var(--light-text) !important;
}
.nav-ul li a {
  color: var(--light-text) !important;
  font-family: "Rubik", sans-serif !important;
  font-weight: 500 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px !important;
  font-weight: 600;
  font-family: "Rubik", sans-serif !important;
  text-transform: uppercase !important;
  color: white;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 15px;
  position: relative;
  z-index: 4;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
  color: #fff;
  font-family: "Rubik", sans-serif;

  letter-spacing: 0.5px;
}

.post-body .wp-block-image {
  max-width: 700px;
  margin: 40px auto;
}

.post-body ol {
  counter-reset: custom-counter;
  list-style: none;
  padding-left: 40px;
}

.post-body ol li {
  position: relative;
  counter-increment: custom-counter;
  margin-bottom: 10px;
  padding-left: 36px;
}

.post-body ol li::before {
  content: counter(custom-counter);
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 1.08333rem;
  font-weight: 500;
  background-color: var(--primarybtnbg);
  border-radius: 50%;
  color: #fff;
  box-sizing: border-box;
}

.post-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-body ul li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.post-body ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: white;
  background-color: #4caf50;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 2px;
}

p {
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.post-date {
  opacity: 1 !important;
}

.post-body img {
  width: 100%;
}

.single-post .post-category {
  position: static;
}
