/* Custom Tabs Wrapper */
.custom-tabs-wrapper {
  width: 100%;
  position: relative;
}
/* Navigation Tabs */
.custom-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.custom-tabs-nav .tab-nav-item {
  background: #f5f5f5;
  color: #666666;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  outline: none;
}
.custom-tabs-nav .tab-nav-item:hover {
  background: #F5BE41 !important;
  transform: translateY(-2px);
}
.custom-tabs-nav .tab-nav-item.active {
  background: #0073aa;
  color: #ffffff;
}
.custom-tabs-nav .tab-nav-item:focus {
  outline: none;
}
/* Content Area */
.custom-tabs-content {
  position: relative;
  min-height: 200px;
}
.tab-content-item {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-content-item.active {
  display: block;
}
/* Title within content */
.tab-content-title {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 600;
  color: #333333;
}
.content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .content-list {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}
/* WYSIWYG Content Areas */
.tab-content-wysiwyg {
  line-height: 1.6;
  color: #666666;
}
.tab-content-wysiwyg ul,
.tab-content-wysiwyg ol {
  list-style: none;
  padding-left: 0px;
}
.tab-content-wysiwyg ul li,
.tab-content-wysiwyg ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
}
.tab-content-wysiwyg ul li::before,
.tab-content-wysiwyg ol li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 24px;
  background-image: url('data:image/svg+xml,%3Csvg width="15" height="11" viewBox="0 0 15 11" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4.8125 10.3086L0.273438 5.76953C0 5.49609 0 5.03125 0.273438 4.75781L1.25781 3.77344C1.53125 3.5 1.96875 3.5 2.24219 3.77344L5.33203 6.83594L11.8945 0.273438C12.168 0 12.6055 0 12.8789 0.273438L13.8633 1.25781C14.1367 1.53125 14.1367 1.99609 13.8633 2.26953L5.82422 10.3086C5.55078 10.582 5.08594 10.582 4.8125 10.3086Z" fill="%23F5BE41"/%3E%3C/svg%3E%0A');
  background-size: 14px;
  background-repeat: no-repeat;
}
.tab-content-wysiwyg ul li:last-child,
.tab-content-wysiwyg ol li:last-child {
  margin-bottom: 0px;
}
.tab-content-wysiwyg:last-child {
  margin-bottom: 0;
}
.tab-content-wysiwyg p {
  margin-bottom: 15px;
}
.tab-content-wysiwyg p:last-child {
  margin-bottom: 0;
}
/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
/* @media (max-width: 768px) {
    .custom-tabs-nav {
        flex-direction: column;
    }
    
    .custom-tabs-nav .tab-nav-item {
        width: 100%;
        text-align: center;
    }
    
    .custom-tabs-content {
        padding: 20px;
    }
    
    .tab-content-title {
        font-size: 20px;
    }
} */
@media (max-width: 480px) {
  .custom-tabs-nav .tab-nav-item {
    padding: 12px 20px;
    font-size: 14px;
  }
  .custom-tabs-content {
    padding: 15px;
  }
  .tab-content-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
