/* ===============================
   UNIVERSAL WORKS / BLOG SINGLE
================================ */
.uv-single {
  margin-top: 50px;
  padding: 60px 0;
  background: #fff;
  overflow: visible;
}

/* ===============================
   LAYOUT
================================ */
.uv-wrap {
  width: min(92%, 1050px);
  margin: auto;

  display: flex;
  gap: 50px;
  align-items: flex-start;

  overflow: visible;
}

/* MAIN CONTENT */
.uv-content {
  flex: 1;
  overflow: visible;
}

/* ===============================
   BREADCRUMB
================================ */
.uv-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #eef9f3;
  padding: 10px 26px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.uv-breadcrumb a,
.uv-breadcrumb p {
  font-size: 15px;
  font-weight: 500;
  color: #4bb879;
  margin: 0;
  text-decoration: none;
}

.uv-breadcrumb span {
  color: #a8d9bf;
}

/* ===============================
   TITLE + META
================================ */
.uv-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.uv-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

/* ===============================
   FEATURE IMAGE
================================ */
.uv-feature img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 26px;
  object-fit: cover;
}

/* ===============================
   CONTENT
================================ */
.uv-body {
  font-size: 22px;
  line-height: 1.8;
  color: #444;
}

.uv-body p {
  margin-bottom: 18px;
}



/* ===============================
   SIDEBAR HOLDER (VERY IMPORTANT)
================================ */
.uv-sidebar-wrap {
  width: 320px;
  flex-shrink: 0;   /* 🔥 THIS LINE IS THE KEY */
}

/* ===============================
   SIDEBAR
================================ */
.uv-sidebar {
  width: 320px;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 24px 26px;
  border: 1px solid #e7e7e7;
}

/* FIXED STATE */
.uv-sidebar.is-fixed {
  position: fixed;
  top: 120px;
}
/* HOLDER MUST BE RELATIVE */
 .uv-sidebar-wrap {
  width: 320px;
  flex-shrink: 0;
  position: relative; /* 🔒 KEY */
} 
 


/* SIDEBAR CONTENT */
.uv-sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.uv-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.uv-sidebar ul li {
  margin-bottom: 10px;
}

.uv-sidebar ul li a {
  font-size: 17px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
}

.uv-sidebar ul li a:hover {
  color: #00b5e2;
}

.uv-share {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 767px) {
  .uv-wrap {
    flex-direction: column;
  }

  .uv-title {
    font-size: 25px;
  }

  .uv-sidebar {
    position: relative;
    top: 0;
    width: 100%;
  }
}
.uv-body p {
    font-size: 20px;
}
/* ===============================
   MOBILE SIDEBAR – WORKS PAGE ONLY
================================ */
@media (max-width: 767px) {

  /* stack content + sidebar */
  .uv-wrap {
    flex-direction: column;
  }

  /* sidebar wrapper */
  .uv-sidebar-wrap {
    width: 100%;
    display: block;
    order: 2; /* sidebar after content */
  }

  /* sidebar */
  .uv-sidebar {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    display: block;
  }
}
