:root {
  /* Fonts */
  --we-font-body: "Roboto", sans-serif;
  --we-font-heading: "Poppins", sans-serif;
  --we-font-nav: "Poppins", sans-serif;
  --we-header-font: "Poppins", sans-serif;
  
  --we-bg: #ffffff;
  --we-surface: #ffffff;
  --we-surface-2: #e2e8f0;
  /* --we-border: rgba(30, 41, 59, 0.12); */


  /* Header */
  --we-header-bg: #1A0610;
  
  --we-header-text: var(--we-white);
  --we-header-span: var(--we-accent);
  --we-header-border: var(--we-border);
  --we-header-shadow: var(--we-shadow-soft);

  --we-text: #1e293b;
  --we-heading: #0f172a;
  --we-text-muted: #64748b;
  --we-link: var(--we-accent);
  --we-link-hover: color-mix(in srgb, var(--we-accent), black 15%);
  
  --we-accent: #376E78;
  --we-accent-rgb: 55, 110, 120;
  
  --we-secondary: #C2185B;
  --we-secondary-rgb: 194, 24, 91;
  
  --we-on-accent: #ffffff;
  --we-on-dark: #ffffff;
  --we-on-light: #0f172a;

  --we-nav-toggle: var(--we-contrast);
  
  --we-footer-content: var(--we-accent);
  --we-footer-content-rgb: var(--we-accent-rgb);
  --we-footer-legal: var(--we-header-bg);
  --we-footer-legal-rgb: var(--we-accent-rgb);
  
  /* --we-border: rgba(30, 41, 59, 0.12); */
  --we-shadow-soft: 0 2px 20px rgba(30, 41, 59, 0.10);

  /* Navigation */
  --we-nav-text: var(--we-white);
  --we-nav-hover: var(--we-white);
  --we-nav-hover-underline: var(--we-accent);
  
  --we-nav-mobile-bg: var(--we-accent);
  --we-nav-dropdown-bg: var(--we-accent);
  --we-nav-dropdown-bg-hover: var(--we-white);
  --we-nav-dropdown-text: var(--we-white);
  --we-nav-dropdown-hover: var(--we-black);
  
  --we-white: #ffffff;
  --we-white-rgb: 255, 255, 255;
  --we-black: #000000;
  --we-black-rgb: 0, 0, 0;
  --we-gray: #808080;
  --we-gray-rgb: 128, 128, 128;

  /* Radius */
  --we-radius-sm: 8px;
  --we-radius-md: 14px;
  --we-radius-lg: 22px;

  /* Shadow */
  --we-shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.06);
  --we-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.10);

  /* Spacing */
  --we-space-1: 0.25rem;
  --we-space-2: 0.5rem;
  --we-space-3: 0.75rem;
  --we-space-4: 1rem;
  --we-space-5: 1.5rem;
  --we-space-6: 2rem;
}
:root {
  --header-height: 95px;
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Temporary CSS for testing div visibility 
div {
  outline: 1px dashed red;
  background-color: rgba(255, 0, 0, 0.1); 
  color: black;

}
*/

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
/*DEV*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--we-font-body);
    color: var(--we-text);
    background-color: var(--we-bg);
    position: relative; /* Required for pseudo-element positioning */
    margin: 0; /* Remove default margin */
    /*padding: 0;  Remove default padding */
	padding-top: var(--header-height);
    min-height: 100vh; /* Ensure body covers at least the full viewport height */
    overflow: auto; /* Allow scrolling */
}
body::before {
    content: ""; /* Required for pseudo-element */
    background-size: cover;
    background-repeat: no-repeat; /* Changed to no-repeat for better effect */
    background-position: center top;
    background-attachment: fixed;
    position: fixed; /* Use fixed instead of absolute to avoid gaps */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place it behind the content */
}

#main {
  margin-top: 0px;
}

a {
  color: var(--we-link);
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: var(--we-link-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--we-font-heading);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--we-contrast);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--we-accent);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 20px;
  scroll-margin-top: 72px;
  overflow: clip;
}

.section-header {
  text-align: center;
  margin: 20px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--we-heading);
}

.section-header h3 {
  color: var(--we-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header p {
  margin: 0 auto;
  color: var(--we-text);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--we-accent);
  color: var(--we-on-accent);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--we-on-accent);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--we-accent-rgb), 0.85);
  color: var(--we-on-accent);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# LOGO WAVE TEXT 
--------------------------------------------------------------*/
.wave-disabled .wave-text span {
  animation: none !important;
}

.wave-text {
  display: flex;
  gap: 0.1em;
}
.wave-text h2 {

}
.wave-text span {
  display: inline-block;
  animation: wave-bounce 1s ease-out forwards;
  animation-delay: calc(var(--i) * 0.1s);
  opacity: 0;
  margin-bottom: 20px !important;
  padding-top: 20px !important;
}
.wave-logo-img {
  width: auto;
  vertical-align: middle;
}
.no-wave span {
  display: inline-block;
  opacity: 1;
  margin-bottom: 10px !important;
  padding-top: 10px !important;
}

@keyframes wave-bounce {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { transform: translateY(-20px); opacity: 1; }
  40%  { transform: translateY(0); }
  100% { opacity: 1; }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
  height: var(--header-height);
  background: var(--we-header-bg);
}

.header.sticked {
  background: var(--we-header-bg);
  box-shadow: var(--we-header-shadow);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
  margin-bottom: 5px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  color: var(--we-header-text);
  font-family: var(--we-header-font);
}

.header .logo h1 span {
  color: var(--we-header-span);
  font-weight: 400;
}

.header .logo h2 {
  color: var(--we-header-text);
  font-family: var(--we-header-font);
  margin: 0;
  /* text-transform: uppercase; */
  font-weight: 600;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.1);
  max-width: 600px;
  white-space: nowrap;
  overflow: hidden; 
  text-overflow: ellipsis; 
  font-size: clamp(1.5rem, 3vw, 2.5rem); /* Adjust font size dynamically */
  display: inline-block; /* Keep the text inline */
}

.header .logo h2 span {
  color: var(--we-header-span);
  /* Inherit the font size from h1 or adjust separately if needed */
}

.header .headersearch {
	background: rgba(var(--we-accent-rgb), 0.6);
	color:#b5c2d1;
	margin: 0;
}
.headersearch::placeholder { color:#b5c2d1; }
.headersearch::-webkit-input-placeholder { color:#b5c2d1; }
.headersearch::-moz-placeholder { color:#b5c2d1; }
.headersearch:-ms-input-placeholder { color:#b5c2d1; }


.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--we-on-accent);
  background: var(--we-accent);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--we-font-nav);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--we-on-accent);
  background: rgba(var(--we-accent-rgb), 0.85);
}

@media (max-width: 1279px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--we-nav-text), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--we-font-nav);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
	color: var(--we-nav-text);
    background-color: var(--we-nav-hover-underline);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--we-nav-text);
  }
  
  .navmenu a {
  position: relative;
}

.navmenu a.active:before,
.navmenu .active:before {
  visibility: visible;
  width: 100%;
}

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--we-nav-dropdown-bg);
	color: var(--we-nav-text);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    border: 1px solid color-mix(in srgb, var(--we-on-accent), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--we-nav-dropdown-text);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--we-nav-dropdown-hover);
	background: var(--we-nav-dropdown-bg-hover);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--we-nav-text);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--we-nav-mobile-bg);
    border: 1px solid color-mix(in srgb, var(--we-text), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--we-nav-dropdown-text);
    padding: 10px 20px;
    font-family: var(--we-font-nav);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--we-accent), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--we-accent);
    color: var(--we-on-accent);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--we-nav-dropdown-hover);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--we-accent);
    color: var(--we-on-accent);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--we-nav-dropdown-bg);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
 /* background-color: #0b2d2f;  fallback while image loads */
  /* background: url("../img/hero-fullscreen-bg.jpg") center center; */
  background-size: cover;
  padding: 120px 0 60px;
}

.hero-animated::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--hero-overlay-rgb, 0,0,0), var(--hero-overlay-opacity, 0));
  z-index: 1;
  pointer-events: none;
}

.hero-animated > * {
  position: relative;
  z-index: 2;
}

/* content ABOVE overlay */
.hero-animated .container {
  position: relative;
  z-index: 2;
}

.hero-animated h1 {
  margin: 0 0 10px 0;
  font-size: 42px;
  font-weight: 300;
  color: var(--we-white);
  font-family: var(--we-font-heading);
}
.hero-animated h1 span {
  color: var(--we-accent);
}
.hero-animated p {
  color: rgba(var(--we-white-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-animated h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--we-white);
  font-family: var(--we-font-heading);
}

.hero-animated h2 span {
  color: var(--we-accent);
}

.hero-animated p {
  color: rgba(var(--we-white-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-animated .btn-hero {
  margin:5px;
  font-family: var(--we-font-body);
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero-animated .btn-hero:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-accent-rgb), 0.85);
  color: rgba(var(--we-white-rgb), 1);
}
.hero-animated .btn-get-search {
  font-family: var(--we-font-body);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero-animated .btn-get-search:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-accent-rgb), 0.85);
  color: rgba(var(--we-white-rgb), 1);
} 

.hero-animated .btn-get-started {
  font-family: var(--we-font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.6s;
  background: var(--we-accent);
  color: var(--we-accent);
  border: 2px solid var(--we-accent);
}

.hero-animated .btn-get-started:hover {
  background: var(--we-accent);
  color: var(--we-on-accent);
}

.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}

.hero-animated .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--we-on-accent);
  background: var(--we-accent);
  font-family: var(--we-font-body);
}

.hero-animated .btn-get-started:hover {
  background: rgba(var(--we-accent-rgb), 0.8);
}

.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--we-font-heading);
  color: var(--we-secondary);
  font-weight: 600;
}

.hero-animated .btn-watch-video i {
  color: var(--we-accent);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-animated .btn-watch-video:hover {
  color: var(--we-accent);
}

.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--we-accent-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 32px;
  }

  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-animated .btn-get-started,
  .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
 /* background-color: #0b2d2f;  fallback while image loads */
  /* background: url("../img/hero-fullscreen-bg.jpg") center center; */
  background-size: cover;
  padding: 60px 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--hero-overlay-rgb, 0,0,0), var(--hero-overlay-opacity, 0));
  z-index: 1;
}

/* content ABOVE overlay */
.hero .container {
  position: relative;
  z-index: 2;
}
.hero ul li{
	display: inline-block;
}

.hero .carousel-item {
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}

.hero h1 {
  color: rgba(var(--we-white-rgb), 1); 
  /*color: var(--we-white);*/
  font-family: var(--we-font-heading);
  font-size: 46px;
  font-weight:200;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}
.hero h1 span {
  color: var(--we-accent);
}
.hero h2 {
  color: rgba(var(--we-white-rgb), 1);
  font-family: var(--we-font-heading);
  font-size: 40px;
  font-weight: 300;
  line-height: 44px;
  margin-bottom: 20px;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}
.hero h3 {
  margin:20px 0;
  color: var(--we-white);
  font-family: var(--we-font-heading);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.hero h5 {
  margin:20px 0;
  color: var(--we-white);
  font-family: var(--we-font-heading);
  font-size: 16px;
  line-height: 34px;
  font-weight: 400;
}
.hero p {
  color: rgba(var(--we-white-rgb), 1);
  animation: fadeInDown 1s both 0.4s;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .img {
  margin-bottom: 40px;
  animation: fadeInDownLite 1s both;
}

.hero .btn-hero {
  margin:5px;
  font-family: var(--we-font-body);
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero .btn-hero:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-accent-rgb), 0.85);
  color: rgba(var(--we-white-rgb), 1);
}
.hero .btn-get-search {
  font-family: var(--we-font-body);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero .btn-get-search:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-accent-rgb), 0.85);
  color: rgba(var(--we-white-rgb), 1);
} 

.hero .btn-get-started {
  font-family: var(--we-font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.6s;
  background: var(--we-accent);
  color: var(--we-on-accent);
  border: 2px solid var(--we-accent);
}

.hero .btn-get-started:hover {
  background: var(--we-accent-rbg);
  color: var(--we-on-accent);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--we-secondary-rgb), 0.4);
  color: rgba(var(--we-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-next-icon {
  padding-left: 3px;
}

.hero .carousel-control-prev-icon {
  padding-right: 3px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: rgba(var(--we-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--we-accent);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/

body.no-header-offset {
  padding-top: 0;
}
.hero-fullscreen {
  width: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
 /* background-color: #0b2d2f;  fallback while image loads */
  /* background: url("../img/hero-fullscreen-bg.jpg") center center; */
  background-size: cover;
  padding: 120px 0 60px;
}

.hero-fullscreen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--hero-overlay-rgb, 0,0,0), var(--hero-overlay-opacity, 0));
  z-index: 1;
  pointer-events: none;
}

.hero-fullscreen > * {
  position: relative;
  z-index: 2;
}

/* content ABOVE overlay */
.hero-fullscreen .container {
  position: relative;
  z-index: 2;
}

@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place the video behind other content */
}
.video-wrapper video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-fullscreen h1 {
  color: rgba(var(--we-white-rgb), 1);
  font-size: 40px;
  font-family: var(--we-font-heading);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  text-align: center;
}
.hero-fullscreen h2 {
  color: rgba(var(--we-white-rgb), 1);
  font-size: 20px;
  font-family: var(--we-font-heading);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  text-align: center;
}
.hero-fullscreen h2 span {
  color: var(--we-accent);
  font-family: var(--we-font-heading);
}
.hero-fullscreen h3 {
  color: rgba(var(--we-white-rgb), 1);
  font-family: var(--we-font-body);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25)
}
.hero-fullscreen h3 span {
  color: var(--we-accent);
}

.hero-fullscreen .card{
  background: rgba(var(--we-white-rgb), 0.2);
  z-index:100;
}
.hero-fullscreen p {
  color: var(--we-text);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}

/* Hero Search Button */
.hero-fullscreen .btn-hero {
  margin:5px;
  font-family: var(--we-font-body);
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.35);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero-fullscreen .btn-hero:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-white-rgb), 0.5);
  color: #ffffff;
}
.hero-fullscreen .btn-get-search {
  font-family: var(--we-font-body);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 25px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero-fullscreen .btn-get-search:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-white-rgb), 0.1);
  color: rgba(var(--we-white-rgb), 1);
} 

.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--we-on-accent);
  background: var(--we-accent);
  font-family: var(--we-font-heading);
}

.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--we-accent-rgb), 0.8);
}

.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--we-font-heading);
  color: var(--we-secondary);
  font-weight: 600;
}

.hero-fullscreen .btn-watch-video i {
  color: var(--we-accent);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-fullscreen .btn-watch-video:hover {
  color: var(--we-accent);
}

.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--we-accent-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-fullscreen h1 {
    font-size: 32px;
  }
  
  .hero-fullscreen h2 {
    font-size: 16px;
  }

  .hero-fullscreen p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-fullscreen .btn-get-started,
  .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-static h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--we-secondary);
  font-family: var(--we-font-heading);
}

.hero-static h2 span {
  color: var(--we-accent);
}

.hero-static p {
  color: rgba(var(--we-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-static .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--we-on-accent);
  background: var(--we-accent);
  font-family: var(--we-font-heading);
}

.hero-static .btn-get-started:hover {
  background: rgba(var(--we-accent-rgb), 0.8);
}

.hero-static .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--we-font-heading);
  color: var(--we-secondary);
  font-weight: 600;
}

.hero-static .btn-watch-video i {
  color: var(--we-accent);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-static .btn-watch-video:hover {
  color: var(--we-accent);
}

.hero-static .btn-watch-video:hover i {
  color: rgba(var(--we-accent-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-static h2 {
    font-size: 32px;
  }

  .hero-static p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-static .btn-get-started,
  .hero-static .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  z-index: -1;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }

  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

/* .about h3 {
  color: var(--we-secondary);
  font-family: var(--we-font-heading);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}
 */
.about p {
	color: var(--we-text);
  }

.about .nav-pills {
  border-bottom: 1px solid rgba(var(--we-secondary-rgb), 0.2);
}

.about .nav-pills li+li {
  margin-left: 40px;
}

.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--we-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--we-font-heading);
}

.about .nav-link.active {
  color: var(--we-accent);
  background: none;
  border-bottom: 3px solid var(--we-accent);
}

@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}

.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--we-secondary);
}

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--we-accent);
}

.about .btn-learn {
  font-family: var(--we-font-heading);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  -webkit-animation: fadeInUp 1s both 0.6s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--we-accent);
  border: 2px solid var(--we-accent);
  margin-bottom: 20px;
}
.about .btn-learn:hover {
  background: var(--we-accent);
  color: var(--we-on-accent);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(var(--we-white-rgb), 0.8);
  font-size: 14px;
}

.footer .footer-content {
  margin-top: 20px;
  background: var(--we-footer-content);
  padding: 40px 0 0px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info img {
  max-width: 175px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--we-accent);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--we-font-heading);
  color: var(--we-contrast);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--we-accent);
  bottom: 0;
  left: 0;
}


.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: rgba(var(--we-white-rgb), 0.8);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--we-white-rgb), 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--we-white);
}
.footer .footer-content .footer-links  a {
  color: rgba(var(--we-white-rgb), 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links a:hover {
  color: var(--we-white);
}


.footer .footer-legal {
  margin-top: 20px;
  padding: 30px 0;
  background: var(--we-footer-legal);
}

.footer .footer-legal .copyright a {
  color: var(--we-accent);
}

.footer .footer-legal .copyright a:hover {
  color: rgba(var(--we-accent-rgb), 0.8);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--we-accent);
  color: var(--we-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: rgba(var(--we-accent-rgb), 0.8); /* var(--we-accent-soft); */
  text-decoration: none;
}

.footer .footer-legal .social-links i {
  color: var(--we-on-accent);
}

 /* Footer Newsletter Button overlays content background color */
.footer .btn-newsletter {
  margin: 0 0 10px 0;
  font-family: var(--we-font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--we-on-accent);
  background: rgba(var(--we-accent-rgb), 0);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.2);
}
.footer .btn-newsletter:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
}

.cookie-note {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--we-surface);
  color: var(--we-contrast);
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 6px;
  border: 2px solid rgba(var(--we-white-rgb), 0.2);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
}

.cookie-note a {
  text-decoration: underline;
}

.cookie-note button {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Primary Buttons  (cookie button)
--------------------------------------------------------------*/
 .btn-primary {
     background: var(--we-accent);
	 color: var(--we-on-accent);
     border: 2px solid var(--we-accent);
	 padding: 5px 10px;
	 margin:5px;
}
 .btn-primary:hover {
     background: none;
     color: var(--we-accent);
	 border: 2px solid var(--we-accent);
}
.btn-learn {
	color: var(--we-accent);
	border: 2px solid var(--we-accent);
	padding: 5px 10px;
	margin:5px;
}
.btn-learn:hover {
  background: var(--we-accent);
  color: var(--we-on-accent);
}
/*--------------------------------------------------------------
# Secondary Buttons 
--------------------------------------------------------------*/
 .btn-secondary {
     background: var(--we-secondary);
     border: 2px solid var(--we-secondary);
	 max-height:60px;
	 margin:5px;
	 color: var(--we-on-secondary);
}
 .btn-secondary:hover {
     background: none;
     color: var(--we-on-secondary);
	 border: 2px solid var(--we-secondary);
}
/*--------------------------------------------------------------
# Go Button
--------------------------------------------------------------*/
 .btn-go {
     background: var(--we-secondary);
     border: 2px solid var(--we-accent);
	 max-height:60px;
	 margin:5px;
	 color: var(--we-on-accent);
}
 .btn-go:hover {
     background: none;
     color: var(--we-on-accent);
	 border: 2px solid var(--we-on-accent);
}


/*--------------------------------------------------------------
# Engine Base
--------------------------------------------------------------*/
#engine .engine {
  margin: 0;
  padding: 0;
  
}



/*--------------------------------------------------------------
# Engine Video
--------------------------------------------------------------*/

/* Video item */
#engine-video .video.engine-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 0 30px 0;
  background: transparent;
  background-clip: content-box;
}

/* Video box */
#engine-video .video-box {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-md);
  background: var(--we-surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#engine-video .video-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--we-shadow-soft);
}

/* Image wrapper */
#engine-video .video.engine-item .image-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

/* Image */
#engine-video .video.engine-item .image-wrap img,
#engine-video .video.engine-item img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  z-index: 0;
  transition: transform 0.4s ease-in-out;
}

/* Hover image zoom */
#engine-video .video.engine-item:hover .chain-image {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Chain Content
--------------------------------------------------------------*/

/* Title cover block */
#engine-video .chain-title-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
  overflow: hidden;
  transform: none;
  transition: none;
}

/* Small label above title */
#engine-video .chain-kicker {
  margin: 0 0 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--we-text-muted);
}

/* Shared chain title */
#engine-video .chain-title {
  margin: 0;
  line-height: 1.3;
  font-family: var(--we-font-heading);
}

/* Title used inside title-cover block */
#engine-video .chain-title-thumb .chain-title {
  color: var(--we-heading);
  font-size: 20px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  word-break: break-word;
}

/* Real thumbnail image only */
#engine-video .chain-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

/* Overlay for image thumbnails */
#engine-video .chain-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5rem;
  pointer-events: none;
}

#engine-video .chain-overlay-inner {
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.25rem 0.25rem 0 0;
}

/* Title used inside image overlay */
#engine-video .chain-overlay .chain-title {
  margin: 0;
  color: var(--we-white);
  font-size: 1rem;
  font-weight: 700;
  text-shadow: none;
}
/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/

#engine-video .video.engine-item h5 {
  margin: 5px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--we-white);
}


#engine-video .image-wrap {
  overflow: hidden;
  border-radius: inherit;
}

#engine-video .chain-title-thumb {
  border-radius: inherit;
}

/*--------------------------------------------------------------
# Engine Grid Item
--------------------------------------------------------------*/
#engine .grid.engine-item {
  position: relative;
  overflow: hidden;
  padding: 10px;
  margin: 0;
  background: transparent;
  background-clip: content-box;
}

/* Image wrapper */
#engine .grid.engine-item .image-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

#engine .grid.engine-item .image-wrap img,
#engine .grid.engine-item img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  transition: transform 0.4s ease-in-out;
  border: 0;
}

/* Hover image zoom */
#engine .grid.engine-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Overlay
--------------------------------------------------------------*/
#engine .grid.engine-item .engine-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

#engine .grid.engine-item:hover .engine-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
}

/* Centered overlay info */
#engine .grid.engine-item .engine-info,
#engine .grid.engine-item .engine-info {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 10px;
  transform: translate(-50%, -50%);
  text-align: center;
}

/*--------------------------------------------------------------
# Titles / Text
--------------------------------------------------------------*/
#engine .grid.engine-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--we-font-body);
  color: var(--we-white);
  text-shadow: 2px 2px var(--we-black);
}

#engine .grid.engine-item h5 {
  margin: 5px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--we-white);
}

#engine .grid.engine-item .featured-text {
  margin: 5px;
  font-size: 14px;
  font-weight: 200;
  text-align: center;
  color: var(--we-contrast);
}

/* Optional created date */
#engine .grid.engine-item .created {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(var(--we-contrast-rgb), 0.85);
}

/*--------------------------------------------------------------
# Mood Marker
--------------------------------------------------------------*/
#engine .grid.engine-item .mood-marker {
  position: absolute;
  z-index: 5;
  margin: -5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--we-secondary);
}

#engine .grid.engine-item .text-positive,
#engine .grid.engine-item .text-negative {
  margin: 0;
  white-space: nowrap;
  padding: 0 0 0 10px;
}

#engine .grid.engine-item .text-positive i,
#engine .grid.engine-item .text-negative i {
  margin-right: 0 !important;
}

/* Mood positions */
#engine .grid.engine-item .mood-top-left {
  top: 0;
  left: 0;
}

#engine .grid.engine-item .mood-top-right {
  top: 10px;
  right: 10px;
}

#engine .grid.engine-item .mood-bottom-left {
  bottom: 10px;
  left: 10px;
}

#engine .grid.engine-item .mood-bottom-right {
  bottom: 10px;
  right: 10px;
}

/*--------------------------------------------------------------
# Engine List Item
--------------------------------------------------------------*/
#engine .list.engine-item {
  position: relative;
  width: 95%;
  margin: 20px;
  padding: 20px;
  border-radius: var(--we-radius-sm);
  background: transparent;
  box-shadow: 0 5px 25px rgba(var(--we-contrast-rgb), 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#engine .list.engine-item:hover {
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# List Layout
--------------------------------------------------------------*/
#engine .list.engine-item .two-column-template {
  display: flex;
  flex-direction: row;
}

#engine .list.engine-item .image-column {
  display: flex;
  align-items: flex-start;
  padding: 10px;
}

#engine .list.engine-item .image-column img {
  display: block;
  max-width: 100%;
  height: auto;
}

#engine .list.engine-item .text-column {
  flex: 1;
  padding: 0 20px;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
#engine .list.engine-item .created {
  font-family: var(--we-font-body);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--we-contrast);
}

#engine .list.engine-item h4 {
  margin-bottom: 5px;
  font-family: var(--we-font-body);
  font-size: 26px;
  font-weight: 900;
  color: var(--we-contrast);
}

#engine .list.engine-item span {
  display: block;
  position: relative;
  padding-bottom: 10px;
  font-family: var(--we-font-body);
  font-size: 18px;
  font-weight: 800;
}

#engine .list.engine-item p {
  margin: 10px 0 0 0;
  font-size: 15px;
  color: var(--we-contrast);
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
#engine .list.engine-item a {
  color: var(--we-link);
  font-size: 18px;
}

#engine .list.engine-item a:hover {
  color: var(--we-link-hover);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 640px) {
  #engine .list.engine-item {
    width: 90%;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  #engine .list.engine-item .two-column-template {
    flex-direction: column;
  }

  #engine .list.engine-item .image-column,
  #engine .list.engine-item .text-column {
    width: 100%;
  }

  #engine .list.engine-item .image-column img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Engine News Item
--------------------------------------------------------------*/
/* #engine .news.engine-item {
  position: relative;
  width: 95%;
  margin: 20px;
  padding: 20px;
  border-radius: var(--we-radius-sm);
  background: transparent;
  box-shadow: 0 5px 25px rgba(var(--we-contrast-rgb), 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#engine .news.engine-item:hover {
  transform: translateY(-10px);
}

@media (max-width: 640px) {
  #engine .news.engine-item {
    width: 90%;
    padding: 10px;
  }
}
 */
/*--------------------------------------------------------------
# News Inner Box
--------------------------------------------------------------*/
#engine .news.engine-item .post-box {
  padding: 0 10px 20px 10px;
  border: 0;
}

/*--------------------------------------------------------------
# News Image
--------------------------------------------------------------*/
#engine .news.engine-item .post-img {
  position: relative;
  overflow: hidden;
}

#engine .news.engine-item .post-img img {
  display: block;
  width: 100%;
  height: auto;
}


/* Optional created date */
#engine .news.engine-item .created {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(var(--we-contrast-rgb), 0.85);
}

/*--------------------------------------------------------------
# Mood Marker
--------------------------------------------------------------*/
#engine .news.engine-item .mood-marker {
  position: absolute;
  z-index: 5;
  margin: -5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--we-accent);
}

#engine .news.engine-item .text-positive,
#engine .news.engine-item .text-negative {
  margin: 0;
  white-space: nowrap;
  padding: 0 0 0 10px;
}

#engine .news.engine-item .text-positive i,
#engine .news.engine-item .text-negative i {
  margin-right: 0 !important;
}

/* Mood positions */
#engine .news.engine-item .mood-top-left {
  top: 0;
  left: 0;
}

#engine .news.engine-item .mood-top-right {
  top: 10px;
  right: 10px;
}

#engine .news.engine-item .mood-bottom-left {
  bottom: 10px;
  left: 10px;
}

#engine .news.engine-item .mood-bottom-right {
  bottom: 10px;
  right: 10px;
}






/*--------------------------------------------------------------
# Meta Top
--------------------------------------------------------------*/
#engine .news.engine-item .meta-top {
  margin-top: 20px;
  color: var(--we-text);
  font-size: 14px;
}

#engine .news.engine-item .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

#engine .news.engine-item .meta-top ul li + li {
  padding-left: 20px;
}

#engine .news.engine-item .meta-top i {
  margin-right: 8px;
  font-size: 16px;
  line-height: 0;
  color: rgba(var(--we-accent-rgb), 0.8);
}

#engine .news.engine-item .meta-top a {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: var(--we-text);
}

#engine .news.engine-item .meta-top .post-author {
  font-size: 15px;
  font-weight: 500;
  color: var(--we-secondary);
}

/* Optional created date */
#engine .news.engine-item .created {
  font-family: var(--we-font-body);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--we-heading);
}

/*--------------------------------------------------------------
# News Title / Text
--------------------------------------------------------------*/
#engine .news.engine-item h4,
#engine .news.engine-item .post-title {
  margin-bottom: 5px;
  font-family: var(--we-font-body);
  font-size: 26px;
  font-weight: 900;
  color: var(--we-heading);
}

#engine .news.engine-item .post-title a,
#engine .news.engine-item h4 a {
  color: var(--we-heading);
}

#engine .news.engine-item .post-title a:hover,
#engine .news.engine-item h4 a:hover {
  color: var(--we-link-hover);
}

#engine .news.engine-item span {
  display: block;
  position: relative;
  padding-bottom: 10px;
  font-family: var(--we-font-body);
  font-size: 18px;
  font-weight: 800;
}

#engine .news.engine-item span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--we-text), transparent 70%);
}

#engine .news.engine-item p {
  margin: 10px 0 0 0;
  font-size: 15px;
  color: var(--we-contrast);
}

/*--------------------------------------------------------------
# Read More
--------------------------------------------------------------*/
#engine .news.engine-item a {
  color: var(--we-link);
  font-size: 18px;
}

#engine .news.engine-item a:hover {
  color: var(--we-link-hover);
}

#engine .news.engine-item .readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Social
--------------------------------------------------------------*/
#engine .news.engine-item .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
  margin-bottom: 10px;
}

#engine .news.engine-item .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50px;
  background: var(--we-accent);
  transition: background 0.3s ease;
}

#engine .news.engine-item .social a + a {
  margin-left: 8px;
}

#engine .news.engine-item .social a i {
  margin: 0 2px;
  font-size: 16px;
  color: var(--we-on-accent);
}

#engine .news.engine-item .social a:hover {
  background: var(--we-link-hover);
}

#engine .news.engine-item .social a:hover i {
  color: var(--we-on-accent);
}
/*--------------------------------------------------------------
# Engine Blog Item
--------------------------------------------------------------*/
#engine .blog.engine-item {
  position: relative;
  width: 95%;
  margin: 20px;
  padding: 20px;
  border-radius: var(--we-radius-sm);
  background: transparent;
  box-shadow: 0 5px 25px rgba(var(--we-contrast-rgb), 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#engine .blog.engine-item:hover {
  transform: translateY(-6px);
}

/*--------------------------------------------------------------
# Blog Layout
--------------------------------------------------------------*/
#engine .blog.engine-item .two-column-template {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

#engine .blog.engine-item .image-column {
  position: relative;
  flex: 0 0 20%;
  max-width: 20%;
}

#engine .blog.engine-item .image-column img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--we-radius-sm);
}

#engine .blog.engine-item .text-column {
  flex: 1;
  min-width: 0;
}

/*--------------------------------------------------------------
# Blog Typography
--------------------------------------------------------------*/
#engine .blog.engine-item h4 {
  margin: 0 0 10px 0;
  font-family: var(--we-font-body);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--we-heading);
}

#engine .blog.engine-item h4 a {
  color: var(--we-heading);
  text-decoration: none;
}

#engine .blog.engine-item h4 a:hover {
  color: var(--we-link-hover);
}

#engine .blog.engine-item p {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: var(--we-text);
}

#engine .blog.engine-item .created,
#engine .blog.engine-item p:first-of-type {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--we-heading);
}

/* Read more link */
#engine .blog.engine-item p a {
  color: var(--we-link);
  font-weight: 700;
  text-decoration: none;
}

#engine .blog.engine-item p a:hover {
  color: var(--we-link-hover);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Mood Marker
--------------------------------------------------------------*/
#engine .blog.engine-item .mood-marker {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--we-accent);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #engine .blog.engine-item {
    width: 90%;
    padding: 15px;
  }

  #engine .blog.engine-item .two-column-template {
    gap: 15px;
  }

  #engine .blog.engine-item .image-column {
    flex: 0 0 28%;
    max-width: 28%;
  }

  #engine .blog.engine-item h4 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  #engine .blog.engine-item .two-column-template {
    flex-direction: column;
  }

  #engine .blog.engine-item .image-column,
  #engine .blog.engine-item .text-column {
    max-width: 100%;
    width: 100%;
  }

  #engine .blog.engine-item .image-column {
    flex: 0 0 100%;
  }

  #engine .blog.engine-item .image-column img {
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Engine Grid Post
--------------------------------------------------------------*/
.engine.grid-post {
  width: 100%;
  margin: 40px 0 40px 0;
  padding: 0 0 30px 0;
}

/* Main layout spacing */
.engine.grid-post .mainpage {
  position: relative;
}

/* Optional FTC / small intro line */
.engine.grid-post .ftc {
  display: inline-block;
  margin: 10px 0 20px 0;
  color: rgba(var(--we-contrast-rgb), 0.45);
}

/*--------------------------------------------------------------
# Grid Post Text
--------------------------------------------------------------*/
.engine.grid-post .post-hookline {
  margin: 5px 0 15px 0;
  font-size: 26px;
  color: var(--we-accent);
  font-family: var(--we-font-body);
}

.engine.grid-post .post-title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  font-family: var(--we-font-body);
  color: var(--we-contrast);
}

.engine.grid-post .post-meta {
  margin: 15px 0 0 0;
}

.engine.grid-post .post-date {
  text-transform: uppercase;
  font-family: var(--we-font-body);
  font-weight: 800;
  font-size: 16px;
  color: var(--we-contrast);
}

.engine.grid-post .post-content {
  color: var(--we-contrast);
  line-height: 1.5;
}

.engine.grid-post .post-content p {
  margin-bottom: 1rem;
  color: var(--we-contrast);
}

.engine.grid-post .post-content h5 {
  margin: 15px 0;
  font-size: 18px;
  color: var(--we-contrast);
}

/*--------------------------------------------------------------
# Grid Post Media
--------------------------------------------------------------*/
.engine.grid-post .post-media-col {
  background: rgba(var(--we-accent-rgb), 0);
}

.engine.grid-post .post-image-link {
  display: block;
}

.engine.grid-post .post-image {
  width: 100%;
  height: auto;
  display: block;
}

/*--------------------------------------------------------------
# Actions / Referral Button
--------------------------------------------------------------*/
.engine.grid-post .post-actions {
  margin: 40px 0;
}

.engine.grid-post .btn-purchase {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  background: var(--we-accent);
  color: var(--we-on-accent);
  text-decoration: none;
  font-family: var(--we-font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: var(--we-shadow-soft);
}

.engine.grid-post .btn-purchase span {
  letter-spacing: 0.02em;
}

.engine.grid-post .btn-purchase i {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.engine.grid-post .btn-purchase:hover {
  background: var(--we-link-hover);
  color: var(--we-white);
}

.engine.grid-post .btn-purchase:hover i {
  transform: translateX(4px);
}

.engine.grid-post .btn-purchase.clicked {
  transform: scale(1.03);
}

.engine.grid-post .btn-purchase.clicked::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(var(--we-contrast-rgb), 1);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: engine-spin 1s linear infinite;
}

.engine.grid-post .btn-purchase.clicked {
  background-color: var(--we-link-hover);
  transform: scale(1.05);
}

.engine.grid-post .btn-purchase.clicked::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: engine-spin 1s linear infinite;
}

/* Spinner animation */
@keyframes engine-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Read More / Misc
--------------------------------------------------------------*/
.engine.grid-post .read-more {
  margin: 15px 0;
}

.engine.grid-post .read-more a {
  display: inline-block;
  padding: 6px 20px;
  font-size: 14px;
  border-radius: 4px;
  color: var(--we-on-accent);
  background: var(--we-accent);
  transition: 0.3s;
  text-decoration: none;
}

.engine.grid-post .read-more a:hover {
  background: var(--we-link-hover);
}

/*--------------------------------------------------------------
# Social
--------------------------------------------------------------*/
.engine.grid-post .social {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 20px;
  margin-bottom: 20px;
}

.engine.grid-post .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #bbbbbb;
  border-radius: 50%;
  color: var(--we-white);
  transition: 0.3s;
}

.engine.grid-post .social a:hover {
  background: var(--we-white);
  color: var(--we-accent);
  border-color: var(--we-accent);
}

.engine.grid-post .social i {
  margin: 0 2px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 1024px) {
  .engine.grid-post {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .engine.grid-post {
    height: auto;
    padding: 40px 0 20px 0;
  }

  .engine.grid-post .mainpage {
    margin-top: -40px;
  }

  .engine.grid-post .post-media-col {
    text-align: center;
    margin-top: 40px;
  }

  .engine.grid-post .post-image {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .engine.grid-post {
    text-align: center;
  }

  .engine.grid-post .post-title {
    font-size: 24px;
  }

  .engine.grid-post .post-hookline {
    font-size: 22px;
  }

  .engine.grid-post .post-image {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .engine.grid-post .btn-purchase {
    padding: 20px 15px;
  }

  .engine.grid-post .btn-purchase span {
    font-size: 15px;
  }

  .engine.grid-post .bi-arrow-right {
    display: none;
  }
}
/*--------------------------------------------------------------
# Engine List Post
--------------------------------------------------------------*/
.engine.list-post {
  width: 100%;
  margin: 40px 0 40px 0;
  padding: 0 0 30px 0;
}

.engine.list-post .post-layout {
  align-items: flex-start;
}

.engine.list-post .ftc {
  display: inline-block;
  margin: 10px 0 20px 0;
  color: rgba(var(--we-text-rgb, 71, 85, 105), 0.65);
}

/*--------------------------------------------------------------
# List Post Content
--------------------------------------------------------------*/
.engine.list-post .post-content-col {
  margin-bottom: 20px;
}

.engine.list-post .post-title {
  margin: 0 0 12px 0;
  font-family: var(--we-font-heading);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--we-heading);
}

.engine.list-post .post-hookline {
  margin: 0 0 16px 0;
  font-family: var(--we-font-body);
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--we-accent);
}

.engine.list-post .post-meta {
  margin: 0 0 18px 0;
}

.engine.list-post .post-date {
  display: inline-block;
  font-family: var(--we-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--we-text);
}

/*--------------------------------------------------------------
# Post Body
--------------------------------------------------------------*/
.engine.list-post .post-content {
  color: var(--we-text);
  line-height: 1.75;
}

.engine.list-post .post-content p {
  margin-bottom: 1rem;
  color: var(--we-text);
}

.engine.list-post .post-content h1,
.engine.list-post .post-content h2,
.engine.list-post .post-content h3,
.engine.list-post .post-content h4,
.engine.list-post .post-content h5,
.engine.list-post .post-content h6 {
  margin: 1.4rem 0 0.8rem 0;
  font-family: var(--we-font-heading);
  color: var(--we-heading);
}

.engine.list-post .post-content ul,
.engine.list-post .post-content ol {
  margin: 0 0 1rem 1.25rem;
  color: var(--we-text);
}

.engine.list-post .post-content a {
  color: var(--we-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.engine.list-post .post-content a:hover {
  color: var(--we-link-hover);
}

/*--------------------------------------------------------------
# Social
--------------------------------------------------------------*/
.engine.list-post .post-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 28px 0 10px 0;
}

.engine.list-post .post-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--we-border);
  color: var(--we-white);
  background: var(--we-accent);
  transition: all 0.25s ease;
  text-decoration: none;
}

.engine.list-post .post-social a:hover {
  background: var(--we-white);
  color: var(--we-accent);
  border-color: var(--we-accent);
  transform: translateY(-2px);
}

.engine.list-post .post-social i {
  font-size: 1rem;
  line-height: 1;
}

/*--------------------------------------------------------------
# Actions / Referral
--------------------------------------------------------------*/
.engine.list-post .post-actions {
  margin: 30px 0 0 0;
}

.engine.list-post .btn-purchase {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  background: var(--we-accent);
  color: var(--we-white);
  text-decoration: none;
  font-family: var(--we-font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: var(--we-shadow-soft);
}

.engine.list-post .btn-purchase span {
  letter-spacing: 0.02em;
}

.engine.list-post .btn-purchase i {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.engine.list-post .btn-purchase:hover {
  background: var(--we-link-hover);
  color: var(--we-white);
}

.engine.list-post .btn-purchase:hover i {
  transform: translateX(4px);
}

.engine.list-post .btn-purchase.clicked {
  transform: scale(1.03);
}

.engine.list-post .btn-purchase.clicked::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(var(--we-contrast-rgb), 1);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: engine-spin 1s linear infinite;
}

/*--------------------------------------------------------------
# Media Column
--------------------------------------------------------------*/
.engine.list-post .post-media-col {
  text-align: center;
}

.engine.list-post .post-image-link {
  display: inline-block;
  width: 100%;
}

.engine.list-post .post-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--we-radius-md);
  box-shadow: var(--we-shadow-soft);
}

/*--------------------------------------------------------------
# Extra Data Block
--------------------------------------------------------------*/
.post-extra-data {
  margin-top: 30px;
  color: var(--we-text);
}

.post-extra-data h1,
.post-extra-data h2,
.post-extra-data h3,
.post-extra-data h4,
.post-extra-data h5,
.post-extra-data h6 {
  color: var(--we-heading);
  font-family: var(--we-font-heading);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .engine.list-post {
    margin-top: 80px;
  }

  .engine.list-post .post-content-col {
    margin-bottom: 30px;
  }

  .engine.list-post .post-media-col {
    margin-top: 10px;
  }

  .engine.list-post .post-image {
    max-width: 85%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .engine.list-post {
    text-align: center;
  }

  .engine.list-post .ftc {
    margin-bottom: 15px;
  }

  .engine.list-post .post-title {
    font-size: 1.6rem;
  }

  .engine.list-post .post-hookline {
    font-size: 1.1rem;
  }

  .engine.list-post .post-social {
    justify-content: center;
  }

  .engine.list-post .post-image {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .engine.list-post .btn-purchase {
    padding: 14px 18px;
  }

  .engine.list-post .btn-purchase span {
    font-size: 0.95rem;
  }

  .engine.list-post .bi-arrow-right {
    display: none;
  }
}

/*--------------------------------------------------------------
# Shared spinner animation
--------------------------------------------------------------*/
@keyframes engine-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/*--------------------------------------------------------------
# Engine News Post
--------------------------------------------------------------*/
.engine.news-post {
  width: 100%;
  margin: 40px 0 40px 0;
  padding: 0 0 30px 0;
}

.engine.news-post .news-post-wrap {
  position: relative;
}

.engine.news-post .post-layout {
  align-items: flex-start;
}

/*--------------------------------------------------------------
# Intro / FTC
--------------------------------------------------------------*/
.engine.news-post .ftc {
  display: inline-block;
  margin: 10px 0 20px 0;
  color: rgba(var(--we-text-rgb, 71, 85, 105), 0.65);
}

/*--------------------------------------------------------------
# Title / Meta
--------------------------------------------------------------*/
.engine.news-post .post-title {
  margin: 0 0 20px 0;
  font-family: var(--we-font-heading);
  font-size: 2.15rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--we-heading);
}

.engine.news-post .post-meta {
  margin: 0 0 16px 0;
}

.engine.news-post .post-date {
  display: inline-block;
  font-family: var(--we-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--we-text);
}

.engine.news-post .post-hookline {
  margin: 0 0 20px 0;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--we-heading);
}

/*--------------------------------------------------------------
# Featured Image
--------------------------------------------------------------*/
.engine.news-post .post-media-col {
  margin-bottom: 20px;
}

.engine.news-post .post-image-link {
  display: block;
}

.engine.news-post .post-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--we-radius-md);
  box-shadow: var(--we-shadow-soft);
}

/*--------------------------------------------------------------
# Post Content
--------------------------------------------------------------*/
.engine.news-post .post-content {
  color: var(--we-text);
  line-height: 1.8;
}

.engine.news-post .post-content p {
  margin-bottom: 1rem;
  color: var(--we-text);
}

.engine.news-post .post-content h1,
.engine.news-post .post-content h2,
.engine.news-post .post-content h3,
.engine.news-post .post-content h4,
.engine.news-post .post-content h5,
.engine.news-post .post-content h6 {
  margin: 1.4rem 0 0.8rem 0;
  font-family: var(--we-font-heading);
  color: var(--we-heading);
}

.engine.news-post .post-content ul,
.engine.news-post .post-content ol {
  margin: 0 0 1rem 1.25rem;
  color: var(--we-text);
}

.engine.news-post .post-content a {
  color: var(--we-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.engine.news-post .post-content a:hover {
  color: var(--we-link-hover);
}

/*--------------------------------------------------------------
# Author / Meta Top
--------------------------------------------------------------*/
.engine.news-post .post-meta-top {
  margin: 25px 0 10px 0;
  color: var(--we-text);
}

.engine.news-post .post-meta-top ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}

.engine.news-post .post-meta-top li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.engine.news-post .post-meta-top i {
  font-size: 1rem;
  color: rgba(var(--we-accent-rgb), 0.85);
}

.engine.news-post .post-author {
  color: var(--we-secondary);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Social
--------------------------------------------------------------*/
.engine.news-post .post-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 28px 0 10px 0;
}

.engine.news-post .post-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--we-border);
  color: var(--we-white);
  background: var(--we-accent);
  transition: all 0.25s ease;
  text-decoration: none;
}

.engine.news-post .post-social a:hover {
  background: var(--we-white);
  color: var(--we-accent);
  border-color: var(--we-accent);
  transform: translateY(-2px);
}

.engine.news-post .post-social i {
  font-size: 1rem;
  line-height: 1;
}

/*--------------------------------------------------------------
# Actions / Referral Button
--------------------------------------------------------------*/
.engine.news-post .post-actions {
  margin: 30px 0 0 0;
}

.engine.news-post .btn-purchase {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  background: var(--we-accent);
  color: var(--we-white);
  text-decoration: none;
  font-family: var(--we-font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: var(--we-shadow-soft);
}

.engine.news-post .btn-purchase span {
  letter-spacing: 0.02em;
}

.engine.news-post .btn-purchase i {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.engine.news-post .btn-purchase:hover {
  background: var(--we-link-hover);
  color: var(--we-white);
}

.engine.news-post .btn-purchase:hover i {
  transform: translateX(4px);
}

.engine.news-post .btn-purchase.clicked {
  transform: scale(1.03);
}

.engine.news-post .btn-purchase.clicked::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(var(--we-contrast-rgb), 1);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: engine-spin 1s linear infinite;
}

/*--------------------------------------------------------------
# Extra Data
--------------------------------------------------------------*/
.post-extra-data {
  margin-top: 30px;
  color: var(--we-text);
}

.post-extra-data h1,
.post-extra-data h2,
.post-extra-data h3,
.post-extra-data h4,
.post-extra-data h5,
.post-extra-data h6 {
  color: var(--we-heading);
  font-family: var(--we-font-heading);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .engine.news-post {
    margin-top: 80px;
  }

  .engine.news-post .post-title {
    font-size: 1.9rem;
  }

  .engine.news-post .post-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .engine.news-post .post-title {
    font-size: 1.65rem;
  }

  .engine.news-post .post-hookline {
    font-size: 1.05rem;
  }

  .engine.news-post .post-social {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .engine.news-post .btn-purchase {
    padding: 14px 18px;
  }

  .engine.news-post .btn-purchase span {
    font-size: 0.95rem;
  }

  .engine.news-post .bi-arrow-right {
    display: none;
  }
}

/*--------------------------------------------------------------
# Shared Spinner
--------------------------------------------------------------*/
@keyframes engine-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/*--------------------------------------------------------------
# Engine Blog Post
--------------------------------------------------------------*/
.engine.blog-post {
  width: 100%;
  margin: 20px 0 40px 0;
  padding: 0 0 30px 0;
}

/*--------------------------------------------------------------
# Article Wrapper
--------------------------------------------------------------*/
.engine.blog-post .blog-post-wrap {
  margin: 20px 0 0 0;
  max-width: 820px;
}

/*--------------------------------------------------------------
# Title & Intro
--------------------------------------------------------------*/
.engine.blog-post .post-title {
  margin: 0 0 20px 0;
  font-family: var(--we-font-heading);
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--we-heading);
}

.engine.blog-post .post-hookline {
  margin: 0 0 20px 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--we-text);
  opacity: 0.85;
}

/*--------------------------------------------------------------
# Meta
--------------------------------------------------------------*/
.engine.blog-post .post-meta-top {
  margin-bottom: 25px;
  color: var(--we-text);
}

.engine.blog-post .post-meta-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engine.blog-post .post-meta-top li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.engine.blog-post .post-meta-top i {
  color: var(--we-accent);
}

.engine.blog-post .post-date {
  font-weight: 600;
}

/*--------------------------------------------------------------
# Featured Image
--------------------------------------------------------------*/
.engine.blog-post .post-media-col {
  margin: 25px 0;
}

.engine.blog-post .post-image {
  width: 100%;
  height: auto;
  border-radius: var(--we-radius-md);
  box-shadow: var(--we-shadow-soft);
}

/*--------------------------------------------------------------
# Blog Content (Readable Typography)
--------------------------------------------------------------*/
.engine.blog-post .post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--we-text);
}

/* Paragraphs */
.engine.blog-post .post-content p {
  margin-bottom: 1.2rem;
}

/* Headings inside content */
.engine.blog-post .post-content h1,
.engine.blog-post .post-content h2,
.engine.blog-post .post-content h3,
.engine.blog-post .post-content h4,
.engine.blog-post .post-content h5,
.engine.blog-post .post-content h6 {
  margin: 2rem 0 1rem 0;
  font-family: var(--we-font-heading);
  color: var(--we-heading);
  line-height: 1.3;
}

/* Lists */
.engine.blog-post .post-content ul,
.engine.blog-post .post-content ol {
  margin: 0 0 1.2rem 1.4rem;
}

/* Links inside content */
.engine.blog-post .post-content a {
  color: var(--we-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.engine.blog-post .post-content a:hover {
  color: var(--we-link-hover);
}

/* Images inside content */
.engine.blog-post .post-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: var(--we-radius-sm);
}

/*--------------------------------------------------------------
# Social
--------------------------------------------------------------*/
.engine.blog-post .post-social {
  display: flex;
  gap: 10px;
  margin: 35px 0 10px 0;
}

.engine.blog-post .post-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--we-border);
  color: var(--we-white);
  background: var(--we-accent);
  transition: all 0.25s ease;
}

.engine.blog-post .post-social a:hover {
  background: var(--we-white);
  color: var(--we-accent);
  border-color: var(--we-accent);
  transform: translateY(-2px);
}

.engine.blog-post .post-social i {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# CTA / Referral
--------------------------------------------------------------*/
.engine.blog-post .post-actions {
  margin: 35px 0 0 0;
}

.engine.blog-post .btn-purchase {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--we-accent);
  color: var(--we-white);
  font-family: var(--we-font-body);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--we-shadow-soft);
}

.engine.blog-post .btn-purchase:hover {
  background: var(--we-link-hover);
}

.engine.blog-post .btn-purchase i {
  transition: transform 0.25s ease;
}

.engine.blog-post .btn-purchase:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Extra Data Block
--------------------------------------------------------------*/
.post-extra-data {
  margin-top: 40px;
  color: var(--we-text);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .engine.blog-post {
    margin-top: 80px;
  }

  .engine.blog-post .post-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .engine.blog-post .post-title {
    font-size: 1.7rem;
  }

  .engine.blog-post .post-hookline {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .engine.blog-post .post-content {
    font-size: 1rem;
    line-height: 1.75;
  }

  .engine.blog-post .btn-purchase {
    padding: 12px 18px;
  }

  .engine.blog-post .bi-arrow-right {
    display: none;
  }
}

#engine .square-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* This ensures a square aspect ratio */
}
#engine .square-image {
  position: absolute;
  width: 100%;
  height: 160%;
  object-fit: cover; /* This ensures the image covers the entire square */
}
#engine  .uniform-height {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without stretching */
}

/*--------------------------------------------------------------
# Engine Sidebar (Unified)
--------------------------------------------------------------*/

.engine-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.engine-sidebar {
  margin: 0;
  padding: 20px 0 0 0;
}

/*--------------------------------------------------------------
# Sidebar Block
--------------------------------------------------------------*/
.engine-sidebar .sidebar-block {
  background: var(--we-surface);
  border: 1px solid var(--we-border) !important;
  border-radius: var(--we-radius-sm);
  padding: 20px;
  margin:0;
  box-shadow: var(--we-shadow-md);
}

/*--------------------------------------------------------------
# Titles
--------------------------------------------------------------*/
.engine-sidebar .sidebar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--we-heading);
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Search Form
--------------------------------------------------------------*/
.engine-sidebar .sidebar-search {
  display: flex;
  gap: 5px;
}

.engine-sidebar .sidebar-search input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--we-border);
  color: var(--we-contrast);
}

.engine-sidebar .sidebar-search input:focus {
  outline: none;
  border-color: var(--we-accent);
  color: var(--we-contrast);
}

.engine-sidebar .sidebar-search button {
  background: var(--we-accent);
  color: var(--we-on-accent);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.25s;
}

.engine-sidebar .sidebar-search button:hover {
  background: var(--we-link-hover);
}

/*--------------------------------------------------------------
# Recent Posts / Listings
--------------------------------------------------------------*/
.engine-sidebar .sidebar-content .post-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.engine-sidebar .sidebar-content img {
  width: 70px;
  border-radius: 6px;
}

.engine-sidebar .sidebar-content h4 {
  font-size: 0.95rem;
  margin: 0;
  padding:5px;
}
/* blog listings */
.engine-sidebar .sidebar-content h4 a {
  color: var(--we-secondary);
}

.engine-sidebar .sidebar-content h4 a:hover {
  color: var(--we-heading);
}

/*--------------------------------------------------------------
# Tags
--------------------------------------------------------------*/

.engine-sidebar .tag-buttons .tag-btn {
  display: inline-block;
  padding: 3px 8px;              /* tighter */
  margin: 3px;
  border-radius: 999px;           /* pill shape */
  font-size: 0.75rem;             /* smaller like badges */
  font-weight: 500;

  background: rgba(var(--we-accent-rgb), 0.12);  /* soft glow */
  color: var(--we-accent);

  border: 1px solid rgba(var(--we-accent-rgb), 0.35);

  transition: all 0.2s ease;
}

.engine-sidebar .tag-buttons .tag-btn:hover {
  background: var(--we-accent);
  color: var(--we-on-accent);
  border-color: var(--we-accent);

  transform: translateY(-1px);   /* subtle lift */
}

/*--------------------------------------------------------------
# Brands
--------------------------------------------------------------*/
.sidebar-brands .brand-item {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-brands .brand-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.sidebar-brands .brand-title {
  font-size: 1rem;
  color: var(--we-accent);
  margin-bottom: 5px;
}

.sidebar-brands .brand-desc {
  font-size: 0.9rem;
  color: var(--we-contrast);
  opacity: 0.85;
}

.sidebar-brands .brand-title {
  font-size: 1rem;
  margin: 10px 0 5px 0;
  text-align: center;
  font-family: var(--we-font-body);
}

.sidebar-brands .brand-title a {
  color: var(--we-accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

.sidebar-brands .brand-title a:hover {
  color: var(--we-contrast);
}



/* Insert */
.input-text {
	display:true;
    color: var(--we-contrast);
    font-size: 14px;
    font-weight: 400;
}
.input-group-text {
	padding: 0.350rem 0.35rem;
	background-color: var(--we-accent);
	color: var(--we-white);
}
span.red {
	color: #ff0000;
	font-weight: 400;
}
span.yellow {
	color: #fdf503;
	font-weight: 400;
	/*background: var(--we-black);*/
}

/*--------------------------------------------------------------
# Engine Articles List
--------------------------------------------------------------*/
.engine.articles-list {
  margin: 20px 0 40px 0;
  padding: 0 0 30px 0;
  border-bottom: 1px solid var(--we-border);
}

/*--------------------------------------------------------------
# Article Listing Image
--------------------------------------------------------------*/
.engine.articles-list .post-img {
  margin: 0 0 20px 0;
  overflow: hidden;
  border-radius: var(--we-radius-md);
}

.engine.articles-list .post-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--we-radius-md);
  transition: transform 0.35s ease;
}

.engine.articles-list:hover .post-img img {
  transform: scale(1.02);
}

/*--------------------------------------------------------------
# Title
--------------------------------------------------------------*/
.engine.articles-list .title {
  margin: 0 0 12px 0;
  font-family: var(--we-font-heading);
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--we-heading);
}

.engine.articles-list .title a {
  color: var(--we-heading);
  text-decoration: none;
  transition: color 0.25s ease;
}

.engine.articles-list .title a:hover {
  color: var(--we-link-hover);
}

/*--------------------------------------------------------------
# Hookline
--------------------------------------------------------------*/
.engine.articles-list h5 {
  margin: 0 0 15px 0;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 600;
  color: var(--we-text);
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Meta Top
--------------------------------------------------------------*/
.engine.articles-list .meta-top {
  margin: 0 0 18px 0;
  color: var(--we-text);
}

.engine.articles-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.engine.articles-list .meta-top li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.engine.articles-list .meta-top i {
  color: var(--we-accent);
}

.engine.articles-list .meta-top time {
  color: var(--we-text);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Content / Excerpt
--------------------------------------------------------------*/
.engine.articles-list .content {
  margin: 0 0 20px 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--we-text);
}

.engine.articles-list .content p:last-child {
  margin-bottom: 0;
}

.engine.articles-list .content a {
  color: var(--we-link);
  text-decoration: none;
  text-underline-offset: 2px;
}

.engine.articles-list .content a:hover {
  color: var(--we-link-hover);
}

/*--------------------------------------------------------------
# Read More
--------------------------------------------------------------*/
.engine.articles-list .read-more {
  margin: 10px 0 20px 0;
}

.engine.articles-list .read-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--we-link);
  text-decoration: none;
  transition: all 0.25s ease;
}

.engine.articles-list .read-more a:hover {
  color: var(--we-link-hover);
}

.engine.articles-list .read-more i {
  transition: transform 0.25s ease;
}

.engine.articles-list .read-more a:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Remove legacy hr if still present
--------------------------------------------------------------*/
.engine.articles-list hr {
  display: none;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .engine.articles-list .title {
    font-size: 1.6rem;
  }

  .engine.articles-list h5 {
    font-size: 1rem;
  }

  .engine.articles-list .content {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .engine.articles-list {
    padding-bottom: 24px;
    margin-bottom: 32px;
  }

  .engine.articles-list .title {
    font-size: 1.4rem;
  }
}
/*--------------------------------------------------------------
# Engine Articles Post
--------------------------------------------------------------*/
.engine.articles-post {
  width: 100%;
  margin: 20px 0 40px 0;
  padding: 0 0 30px 0;
}

/*--------------------------------------------------------------
# Article Wrapper
--------------------------------------------------------------*/
.engine.articles-post .articles-post-wrap {
  max-width: 820px;
}

/*--------------------------------------------------------------
# Featured Image
--------------------------------------------------------------*/
.engine.articles-post .post-media-col {
  margin-bottom: 25px;
}

.engine.articles-post .post-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--we-radius-md);
  box-shadow: var(--we-shadow-soft);
}

/*--------------------------------------------------------------
# Title / Hookline
--------------------------------------------------------------*/
.engine.articles-post .post-title {
  margin: 0 0 18px 0;
  font-family: var(--we-font-heading);
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--we-heading);
}

.engine.articles-post .post-hookline {
  margin: 0 0 20px 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--we-text);
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Meta
--------------------------------------------------------------*/
.engine.articles-post .post-meta-top {
  margin-bottom: 25px;
  color: var(--we-text);
}

.engine.articles-post .post-meta-top ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.engine.articles-post .post-meta-top li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.engine.articles-post .post-meta-top i {
  color: var(--we-accent);
}

.engine.articles-post .post-date {
  font-weight: 600;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.engine.articles-post .post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--we-text);
}

.engine.articles-post .post-content p {
  margin-bottom: 1.2rem;
}

.engine.articles-post .post-content h1,
.engine.articles-post .post-content h2,
.engine.articles-post .post-content h3,
.engine.articles-post .post-content h4,
.engine.articles-post .post-content h5,
.engine.articles-post .post-content h6 {
  margin: 2rem 0 1rem 0;
  font-family: var(--we-font-heading);
  color: var(--we-heading);
  line-height: 1.3;
}

.engine.articles-post .post-content ul,
.engine.articles-post .post-content ol {
  margin: 0 0 1.2rem 1.4rem;
}

.engine.articles-post .post-content a {
  color: var(--we-link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.engine.articles-post .post-content a:hover {
  color: var(--we-link-hover);
}

.engine.articles-post .post-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: var(--we-radius-sm);
}

/*--------------------------------------------------------------
# Extra Data
--------------------------------------------------------------*/
.engine.articles-post .post-extra-data {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--we-border);
  color: var(--we-text);
}

.engine.articles-post .post-extra-data h1,
.engine.articles-post .post-extra-data h2,
.engine.articles-post .post-extra-data h3,
.engine.articles-post .post-extra-data h4,
.engine.articles-post .post-extra-data h5,
.engine.articles-post .post-extra-data h6 {
  color: var(--we-heading);
  font-family: var(--we-font-heading);
}

/*--------------------------------------------------------------
# Social
--------------------------------------------------------------*/
.engine.articles-post .post-social {
  display: flex;
  gap: 10px;
  margin: 35px 0 10px 0;
}

.engine.articles-post .post-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--we-border);
  color: var(--we-white);
  background: var(--we-accent);
  transition: all 0.25s ease;
}

.engine.articles-post .post-social a:hover {
  background: var(--we-white);
  color: var(--we-accent);
  border-color: var(--we-accent);
  transform: translateY(-2px);
}

.engine.articles-post .post-social i {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# CTA / Referral Button
--------------------------------------------------------------*/
.engine.articles-post .post-actions {
  margin: 35px 0 0 0;
}

.engine.articles-post .btn-purchase {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--we-accent);
  color: var(--we-white);
  font-family: var(--we-font-body);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--we-shadow-soft);
}

.engine.articles-post .btn-purchase:hover {
  background: var(--we-link-hover);
}

.engine.articles-post .btn-purchase i {
  transition: transform 0.25s ease;
}

.engine.articles-post .btn-purchase:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .engine.articles-post {
    margin-top: 80px;
  }

  .engine.articles-post .post-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .engine.articles-post .post-title {
    font-size: 1.7rem;
  }

  .engine.articles-post .post-hookline {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .engine.articles-post .post-content {
    font-size: 1rem;
    line-height: 1.75;
  }

  .engine.articles-post .btn-purchase {
    padding: 12px 18px;
  }

  .engine.articles-post .bi-arrow-right {
    display: none;
  }
}

.modal 
	h2 {
    font-size: 42px;
	font-weight:600;
	color: var(--we-black);
	font-family: var(--we-font-heading);
  }


#sponsors .sponsor-logo{
	display:flex;
	align-items:center;
	justify-content:center;
	padding: 14px 18px;
	border-radius: 14px;
	background: var(--surface-color, #fff);
	border: 1px solid rgba(0,0,0,.08);
	min-height: 74px;
  }
  
[data-bs-theme="dark"] #sponsors .sponsor-logo{
	border-color: rgba(255,255,255,.10);
	background: rgba(255,255,255,.03);
}

#sponsors .sponsor-logo img{
	max-height: 34px;
	width: auto;
	max-width: 100%;
	opacity: .9;
	filter: grayscale(100%);
	transition: filter .15s ease, opacity .15s ease;
  }
  
#sponsors .sponsor-logo:hover img{
	filter: none;
	opacity: 1;
  }
  
#sponsors h2 {
  color: var(--we-contrast);
  font-size: 20px;
  font-family: var(--we-font-heading);
}  
  
#homepage-intro {
	margin: 20px 0;
  }  

#homepage-intro h2 {
  color: var(--we-contrast);
  font-family: var(--we-font-heading);
}  
  
#homepage-intro .card {
	background: linear-gradient(180deg, rgba(var(--bs-body-bg-rgb), 1) 0%, rgba(var(--bs-secondary-bg-rgb), 0.65) 100%);
  }

#homepage-intro .badge {
	letter-spacing: 0.08em;
	  background-color: var(--we-surface);
	color: var(--we-text);
 }

#homepage-intro .rounded-4 {
  border-radius: 1rem !important;
}

/* ----------------------------------
   Mini Play Chain Button (Card Badge)
---------------------------------- */
.we-btn-play {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Hover */
.we-btn-play:hover {
  background: linear-gradient(135deg, #ffe34d, #ffc107);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* =========================================================
   Chain Player Page
   Clean replacement for chain.php
   Uses Web Engine variables for light/dark themes
========================================================= */

.chain {
  padding: 40px 0;
}

.chain-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px;
}

.chain-card {
  background: var(--we-surface);
  color: var(--we-text);
  border: 1px solid var(--we-border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(var(--we-heading-rgb), 0.08);
}

.chain-description {
  color: var(--we-text-muted);
}

/* ---------------------------------------------------------
   Top buttons / helper text
--------------------------------------------------------- */

.chain .btn-learn {
  font-family: var(--we-font-heading);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 6px;
  transition: 0.25s ease;
  color: var(--we-accent);
  border: 2px solid var(--we-accent);
  background: transparent;
}

.chain .btn-learn:hover,
.chain .btn-learn:focus,
.chain .btn-learn:active {
  background: var(--we-accent);
  color: var(--we-on-accent);
  border-color: var(--we-accent);
}

/* ---------------------------------------------------------
   Player
--------------------------------------------------------- */

.chain-player-box {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--we-border);
}

.player-shell {
  position: relative;
  background: #000;
}

.player-host,
.player-host iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* ---------------------------------------------------------
   Cover overlay
--------------------------------------------------------- */

.vc-cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: auto;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.chain-player-box.fit-cover .vc-cover-overlay {
  background-size: contain;
  background-color: #000;
}

.vc-cover-inner {
  max-width: 720px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.vc-cover-overlay.is-title .vc-cover-inner {
  background: none;
  border: 0;
  padding: 0;
  max-width: 90%;
  color: #fff;
}

.vc-cover-title {
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
  font-size: clamp(20px, 4vw, 34px);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.vc-cover-sub {
  margin-top: 10px;
  font-size: clamp(12px, 1.8vw, 18px);
  opacity: 0.95;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

/* ---------------------------------------------------------
   Controls
--------------------------------------------------------- */

.controls {
  background: rgba(var(--we-accent-rgb), 0.04);
  border: 1px solid var(--we-border);/* entire border */
  border-radius: 14px;
  padding: 10px;
}

.controls .btn {
  border-radius: 10px;
  font-weight: 700;
  touch-action: manipulation;
}

.controls .btn-group .btn {
  min-width: 44px;
}

.btn-fallback-text {
  display: none;
}

/* icon fallback support */
.controls .btn i {
  pointer-events: none;
}

.controls .btn.no-icons i {
  display: none !important;
}

.controls .btn.no-icons .btn-fallback-text {
  display: inline !important;
}

/* Engine-aware button colors */
.chain-btn-outline {
  color: var(--we-text);
  background: transparent;
  border-color: var(--we-contrast);
}

.chain-btn-outline:hover,
.chain-btn-outline:focus,
.chain-btn-outline:active {
  color: var(--we-heading);
  background: rgba(var(--we-accent-rgb), 0.5);
  border-color: rgba(var(--we-accent-rgb), 0.28);
}

.chain-btn-play {
  background: #2f9e44;           /* soft green */
  border-color: #2f9e44;
  color: #fff;
  transition: all 0.2s ease;
}

.chain-btn-play:hover,
.chain-btn-play:focus,
.chain-btn-play:active {
  background: #2f9e44;           /* NO color change */
  border-color: #2f9e44;
  color: #fff;

  box-shadow: 0 0 0 3px rgba(47, 158, 68, 0.25),
              0 4px 12px rgba(47, 158, 68, 0.25);
}

.chain-btn-pause {
  background: #e03131;           /* soft red */
  border-color: #e03131;
  color: #fff;
  transition: all 0.2s ease;
}

.chain-btn-pause:hover,
.chain-btn-pause:focus,
.chain-btn-pause:active {
  background: #e03131;           /* NO color change */
  border-color: #e03131;
  color: #fff;

  box-shadow: 0 0 0 3px rgba(224, 49, 49, 0.25),
              0 4px 12px rgba(224, 49, 49, 0.25);
}

.chain-btn-chain:hover,
.chain-btn-chain:focus,
.chain-btn-chain:active {
  background: var(--we-accent);
  border-color: var(--we-accent);
  color: var(--we-on-accent);
}

.now-label {
  color: var(--we-secondary);
  background: rgba(var(--we-accent-rgb), 0.08);
  border: 1px solid rgba(var(--we-accent-rgb), 0.18);
  border-radius: 6px;
  padding: 0.12rem 0.35rem;
}

/* ---------------------------------------------------------
   Timeline
--------------------------------------------------------- */

.chain-timeline {
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--we-border);
  border-radius: 12px;
  background: var(--we-secondary);
}

.chain-timeline .list-group {
  border-radius: 12px;
  overflow: hidden;
}

.chain-item {
  background: var(--we-surface) !important;
  color: var(--we-text) !important;
  border-color: var(--we-border) !important;
  cursor: pointer;
  padding: 10px 12px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.chain-item:hover {
  background: rgba(var(--we-gray-rgb), 0.05) !important;
  border-color: rgba(var(--we-gray-rgb), 0.20) !important;
}

.chain-item.active,
.chain-item.is-active {
  background: rgba(var(--we-gray-rgb), 0.10) !important;
  border-left: 3px solid var(--we-gray);
  padding-left: 9px;
}

.chain-time {
  color: var(--we-text);
  white-space: nowrap;
}

.chain-video-id {
  color: var(--we-text);
  margin-top: 0.2rem;
}

.chain-video-id code {
  color: var(--we-white);
  background: rgba(var(--we-gray-rgb), 0.5);
  border: 1px solid rgba(var(--we-gray-rgb), 0.18);
  border-radius: 6px;
  padding: 0.12rem 0.35rem;
}

.chain-arrow {
  margin: 0 4px;
  font-size: 0.85em;
  color: var(--we-text);
}

/* ---------------------------------------------------------
   Modal
--------------------------------------------------------- */

.chain-modal-content {
  background: var(--we-surface);
  color: var(--we-text);
  border: 1px solid var(--we-border);
}

.chain-modal-content .modal-header,
.chain-modal-content .modal-footer {
  border-color: var(--we-border);
}

.chain-modal-content .btn-close {
  filter: var(--we-btn-close-filter, none);
}

.chain-embed-help {
  color: var(--we-text-muted);
}

.chain-preview-warning {
  color: var(--we-accent);
  font-weight: 600;
}

.chain-embed-code {
  background: var(--we-bg);
  color: var(--we-text);
  border-color: var(--we-border);
}

.chain-embed-code:focus {
  border-color: rgba(var(--we-accent-rgb), 0.45);
  box-shadow: 0 0 0 0.2rem rgba(var(--we-accent-rgb), 0.12);
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */

@media (max-width: 991.98px) {
  .chain-wrap {
    padding: 10px;
  }

  .chain-card {
    padding: 12px;
  }
}

@media (max-width: 575.98px) {
  .chain {
    padding: 20px 0;
  }

  .chain-wrap {
    padding: 0 !important;
  }

  .chain-card {
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    padding: 10px !important;
    background: transparent !important;
    box-shadow: none;
  }

  .chain-player-box {
    border-radius: 0 !important;
  }

  .chain-timeline {
    max-height: 240px;
  }

  .controls .btn {
    padding: 0.45rem 0.6rem;
  }

  .chain-time {
    white-space: normal;
    text-align: right;
  }
}

/* ----------------------------------
   Mini Play Chain Button (Card Badge)
---------------------------------- */
.play-chain {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd700, #ffb300);
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Hover */
.play-chain:hover {
  background: linear-gradient(135deg, #ffe34d, #ffc107);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
@media (max-width: 640px) {
  .play-chain {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  }

.chain-title-thumb {
  background: linear-gradient(135deg, #5a189a, #7b2cbf);
  color: #fff;
}

.chain-title-thumb .text-muted {
  color: rgba(255,255,255,0.75) !important;
}

.player-placeholder.title-cover {
  background: radial-gradient(circle at top, #333 0, #000 60%);
  padding: 0.75rem;
}

.vc-title-fit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1.1;
}

.vc-title-fit span {
  display: inline-block;
  word-break: break-word;
  font-size: 40px; /* JS will override */
  color: #fff;
}
.chain-title-thumb {
  background: radial-gradient(circle at top left, #ffdd55, #ff3366 40%, #2b1e63);
  border-radius: 0.75rem;
}

.chain-title-thumb .h4 {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.vc-text-bg {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.25)
  );
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  display: inline-block;
}
