/* =========================
  BOAT LAYOUT CSS 
========================= */

.lbs-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
}

/* =========================
   LEFT IMAGE AREA
========================= */

.lbs-left {
  flex: 0 0 500px; /* Elementor slider overrides this */
  max-width: 100%;
}

.lbs-image {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   RIGHT CONTENT AREA
========================= */

.lbs-right {
  flex: 1;
  box-sizing: border-box;
}

.lbs-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.lbs-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

/* =========================
   BUTTON
========================= */

.lbs-btn {
  display: inline-block;
  margin-bottom: 24px;
  padding: 14px 30px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

/* hover color will be overridden by Elementor style control */
.lbs-btn:hover {
  background: #222;
  color: #fff;
}

/* =========================
   LIST ITEMS
========================= */

.lbs-list {
  width: 100%;
}

.lbs-item {
  padding: 12px 0;
  border-bottom: 1px solid #eaeaea;
  cursor: pointer;
  color: #777;
  font-size: 15px;
  transition: color 0.25s ease;
}

.lbs-item:hover {
  color: #000;
}

.lbs-item.active {
  color: #000; /* overridden by Elementor Active Color */
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .lbs-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .lbs-left {
    flex: 0 0 auto;
    width: 100%;
  }

  .lbs-title {
    font-size: 20px;
  }

  .lbs-desc {
    font-size: 14px;
  }
}
.lbs-title {
	display: flex;
	align-items: center;
}

.lbs-title-icon {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.lbs-list-icon {
	display: none !important;
}

