/* SCP Layout Container */
.ns-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  align-items: flex-start;
  box-sizing: border-box;
}

/* LEFT layout */
.ns-left .ns-image,
.ns-left .ns-sidebar {
  order: 0;
  flex: 1 1 25%;
}

.ns-left .ns-main {
  order: 1;
  flex: 1 1 70%;
}

/* RIGHT layout */
.ns-right .ns-main {
  order: 0;
  flex: 1 1 70%;
}

.ns-right .ns-image,
.ns-right .ns-sidebar {
  order: 1;
  flex: 1 1 25%;
}

/* BOTTOM layout */
.ns-bottom {
  flex-direction: column;
}

.ns-bottom .ns-image,
.ns-bottom .ns-main,
.ns-bottom .ns-sidebar {
  width: 100%;
  margin-bottom: 20px;
}

/* Featured Image Block */
.ns-image img,
.ns-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Sidebar Styling */
.ns-sidebar {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 1px solid #ddd;
  box-sizing: border-box;
}

.ns-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ns-sidebar-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.ns-sidebar-thumb {
  width: 40px;
  min-width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
}

.ns-sidebar-title {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}
