/* List Styling */
.wp-block-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.wp-block-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.wp-block-list li::before {
    content: '\25C6'; /* Unicode for diamond shape */
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--global-palette1, #333);
    font-size: 0.8rem;
}

/* Current Menu Item Styling */
.current-menu-item > a,
.current-menu-item a,
.current-lang > a,
.current-lang a {
    color: var(--global-palette1) !important;
}

.current-menu-item > a:hover,
.current-menu-item a:hover,
.current-lang > a:hover,
.current-lang a:hover {
    color: var(--global-palette1) !important;
    opacity: 0.8;
}

.kb-theme-content-width {
  position: relative;
  z-index: 1;
}

@media (min-width: 1800px) {
  .kb-theme-content-width::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    right: -30px;
    z-index: -1;
    pointer-events: none;
    box-shadow:
      -50px 0 80px -60px rgba(0, 0, 0, 0.05),
       50px 0 80px -60px rgba(0, 0, 0, 0.05);
  }
}

