/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffaf26; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #000; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --nav-hover-color: var(--accent-color);
  --nav-dropdown-hover-color: var(
      --accent-color
  ); /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.dark-background {
  --background-color: #006c3d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

.index-page.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.7);
}
.index-page .header {
  --background-color: rgba(0, 0, 0, 0.05);
}

#scroll-top .whatsapp-floating {
  position: fixed;
  background-color: #24cc63;
  color: #fff;
  right: 1rem;
  bottom: 0;
  padding: 0.5rem 1rem;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
#scroll-top.shown .whatsapp-floating {
  right: 5rem;
}

.text-justify {
  text-align: justify;
}

.text-justify .sublist {
  margin-top: 0.4rem;
  padding-left: 1rem; /* indent angka */
  list-style-position: outside;
}

.text-justify .sublist li {
  margin-bottom: 0.25rem; /* jarak antar baris sublist */
  line-height: 1.4;
}

.custom-paragraph p {
  margin: 2px 0;
  line-height: 1.5;
}

.visi-misi {
  background-color: var(--light-color);
}

.truncate-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0.5rem;
}

/* About Section */
/* About Section - Compact */
#about {
  background: #f8f9fa;
  padding: 60px 0;
}

#about .section-title {
  text-align: center;
  margin-bottom: 30px;
}

#about .section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.about-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
  text-align: justify;
}

.role-section {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.role-section h4 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.role-section p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Profession Grid */
.profession-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 25px;
}

.profession-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.profession-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.profession-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.profession-code {
  background: var(--accent-color);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.registered-symbol {
  vertical-align: super;
  font-size: 0.7em;
  line-height: 0;
}

.registered-symbol-cert {
  vertical-align: super;
  font-size: 0.7em;
  line-height: 0;
  position: relative;
  top: -0.3em;
}

.profession-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profession-info strong {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.profession-info span {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
} /* Benefits Section - Improved Layout */
#benefits {
  background: #fff;
  padding: 60px 0;
}

.benefits-content {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 35px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Grid Layout - 2 Columns */
.benefits-compact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 35px 0;
}

.benefit-compact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-compact-item:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  border-left-width: 6px;
}

.benefit-icon {
  background: var(--accent-color);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.benefit-text strong {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}

.benefit-text span {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Certification Compact */
.certification-compact {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 35px;
  border-radius: 12px;
  margin-top: 40px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.certification-compact h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.25rem;
  text-align: center;
}

.certification-compact p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.98rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

/* Certification Compact */
.certification-compact {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 35px;
  border-radius: 12px;
  margin-top: 40px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.certification-compact h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.25rem;
  text-align: center;
}

.certification-compact p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.98rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Additional CSS untuk Benefit Section */
.cert-tag {
  background: var(--heading-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.cert-tag:hover {
  background: var(--accent-color);
  transform: scale(1.05);
}

.cert-tag .registered-symbol {
  font-size: 0.6em;
  top: -0.4em;
}

.cert-tags-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Responsive Design untuk Benefits */
@media (max-width: 992px) {
  .benefits-compact-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .benefits-content {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .benefits-content {
    padding: 35px 25px;
  }
  .benefit-compact-item {
    padding: 16px;
  }
  .benefit-text strong {
    font-size: 0.95rem;
  }
  .benefit-text span {
    font-size: 0.88rem;
  }
  .certification-compact {
    padding: 25px 20px;
  }
}
@media (max-width: 576px) {
  .benefits-content {
    padding: 30px 20px;
  }
  .benefits-intro {
    text-align: justify;
    font-size: 1rem;
  }
  .benefit-compact-item {
    padding: 15px;
  }
  .certification-compact p {
    text-align: justify;
  }
  .cert-tags-compact {
    gap: 8px;
  }
  .cert-tags-compact span {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}
.btn-news {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  background-color: #ffaf26;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-news:hover {
  background-color: oklch(82.8% 0.189 84.429deg);
  color: white;
  transform: translateY(-2px);
}

.btn-news:active {
  background-color: oklch(82.8% 0.189 84.429deg);
  transform: translateY(1px) scale(0.98);
}

.btn-news:focus {
  outline: none;
  box-shadow: 0 0 0 3px oklch(83.7% 0.128 66.29deg);
}

/* Visi Misi Section */
.vm-content {
  position: relative;
  top: -30px;
  padding: 2.5rem;
  background-color: oklch(98.5% 0.002 247.839deg);
  border-radius: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.vm-content h3 {
  color: #2c3e50;
}

.vm-content p {
  color: #6c757d;
  line-height: 1.75;
  text-align: justify;
}

.vm-content:hover {
  background-color: #ffffff;
  border-color: oklch(98.5% 0.002 247.839deg);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12), 0 0 0 2px oklch(98.5% 0.002 247.839deg);
  transform: translateY(-4px);
}

/* End Of Visi Misi Section */
.list-content,
.misi-list {
  counter-reset: list-content;
}

.list-content p,
.misi-list p {
  position: relative;
  padding-left: 2rem;
  text-indent: 0;
}

.list-content p::before,
.misi-list p::before {
  counter-increment: list-content;
  content: counter(list-content) ".";
  position: absolute;
  left: 0;
  top: 0;
}

/* Testimonial Support - Style horizontal dengan foto kiri */
.testimonial-sihati {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonial-support-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-support-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-support-item:last-child {
  margin-bottom: 0;
}

.testimonial-support-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-support-img {
  height: 100px;
  width: 100px;
  min-width: 100px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.testimonial-support-content {
  flex: 1;
}

.testimonial-support-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: justify;
  font-style: italic;
}

.testimonial-support-author {
  text-align: right;
}

.testimonial-support-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-support-position {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  display: block;
}

/* Testimonial Benefit - Style horizontal dengan foto kiri */
.testimonial-benefit {
  padding: 80px 0;
  background: white;
}

.testimonial-benefit-title {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-benefit-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.testimonial-benefit-title .section-divider {
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin: 0 auto;
}

.testimonial-benefit-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-benefit-item:last-child {
  margin-bottom: 0;
}

.testimonial-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-benefit-img {
  height: 100px;
  width: 100px;
  min-width: 100px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.testimonial-benefit-content {
  flex: 1;
}

.testimonial-benefit-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: justify;
  font-style: italic;
}

.testimonial-benefit-author {
  text-align: right;
}

.testimonial-benefit-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-benefit-position {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  display: block;
}

/* Responsive Design untuk Testimonial */
@media (max-width: 768px) {
  .testimonial-sihati,
  .testimonial-benefit {
    padding: 60px 0;
  }
  .testimonial-support-item,
  .testimonial-benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .testimonial-support-img,
  .testimonial-benefit-img {
    height: 80px;
    width: 80px;
    min-width: 80px;
    margin-bottom: 1rem;
  }
  .testimonial-support-text,
  .testimonial-benefit-text {
    text-align: center;
    font-size: 1rem;
  }
  .testimonial-support-author,
  .testimonial-benefit-author {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .testimonial-support-item,
  .testimonial-benefit-item {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .testimonial-support-text,
  .testimonial-benefit-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .testimonial-benefit-title h2 {
    font-size: 1.5rem;
  }
  .testimonial-support-name,
  .testimonial-benefit-name {
    font-size: 1rem;
  }
  .testimonial-support-position,
  .testimonial-benefit-position {
    font-size: 0.85rem;
  }
}
/* End Of Testimonial Section */
/* Profesi */
.profesi {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.profesi-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.profesi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profesi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
}

.profesi-header {
  margin-bottom: 1.5rem;
}

.profesi-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.profesi-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.profesi-body p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.needs-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.need-item {
  padding: 0.5rem 0.8rem;
  background: rgba(255, 175, 38, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
  font-size: 0.95rem;
  color: var(--default-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .profesi {
    padding: 60px 0;
  }
  .profesi-card {
    padding: 1.5rem;
  }
  .profesi-header h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .profesi-card {
    padding: 1.25rem;
  }
  .profesi-header h3 {
    font-size: 1.1rem;
  }
  .profesi-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }
}
/* End Of Profesi Section */
/* Cabang */
.cabang {
  padding: 80px 0;
}

.cabang-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cabang-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cabang-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
}

.cabang-header i {
  font-size: 2rem;
  color: var(--accent-color);
}

.cabang-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
}

.cabang-body p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cabang-action {
  text-align: center;
}

.btn-cabang {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cabang:hover {
  background: #e69a00;
  transform: translateY(-2px);
}

.unit-kerja {
  background: rgba(255, 175, 38, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.unit-kerja h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.unit-desc {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 1rem !important;
}

.btn-unit {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-unit:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cabang {
    padding: 60px 0;
  }
  .cabang-card {
    padding: 1.5rem;
  }
  .cabang-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .cabang-header h3 {
    font-size: 1.2rem;
  }
  .unit-kerja {
    padding: 1.25rem;
  }
}
@media (max-width: 576px) {
  .cabang-card {
    padding: 1.25rem;
  }
  .unit-kerja {
    padding: 1rem;
  }
  .btn-cabang,
  .btn-unit {
    width: 100%;
    justify-content: center;
  }
}
/* End Of Cabang Section */
/* ===== Knowledge Categories (Simple & Elegant) ===== */
#knowledge-categories {
  background: #fff;
  padding: 70px 0;
}
#knowledge-categories .container {
  max-width: 80%;
  margin: 0 auto;
}
#knowledge-categories h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}
#knowledge-categories .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
#knowledge-categories .category-card {
  border: 1.5px solid #ffaf26;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  padding: 25px 10px;
  color: #ffaf26;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
#knowledge-categories .category-card:hover {
  background: #ffaf26;
  color: #fff;
  transform: translateY(-4px);
}
#knowledge-categories .view-all {
  text-align: center;
  margin-top: 45px;
}
#knowledge-categories .view-all a {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 6px;
  color: #ffaf26;
  border: 1.5px solid #ffaf26;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}
#knowledge-categories .view-all a:hover {
  background: #ffaf26;
  color: #fff;
}
@media (max-width: 768px) {
  #knowledge-categories .container {
    max-width: 90%;
  }
  #knowledge-categories h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  #knowledge-categories .category-card {
    font-size: 16px;
    padding: 20px 8px;
  }
}
@media (max-width: 480px) {
  #knowledge-categories .container {
    max-width: 95%;
  }
  #knowledge-categories .category-card {
    font-size: 15px;
    padding: 18px 6px;
  }
}

.text-orange {
  color: #ffaf26 !important;
}

.kbase-page {
  max-width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
}
.kbase-page .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.kbase-page .breadcrumb a {
  color: #ffaf26;
  text-decoration: none;
  transition: color 0.2s;
}
.kbase-page .breadcrumb a:hover {
  color: rgb(242, 152.7834101382, 0);
}
.kbase-page .breadcrumb span {
  color: #999;
}
.kbase-page .search-bar {
  display: flex;
  gap: 0.5rem;
}
.kbase-page .search-bar input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
}
.kbase-page .search-bar button {
  background-color: #ffaf26;
  border: none;
  border-radius: 6px;
  color: #fff;
  padding: 0.5rem 0.9rem;
  transition: background-color 0.2s;
}
.kbase-page .search-bar button:hover {
  background-color: rgb(252.2, 159.2230414747, 0);
}
.kbase-page h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  border-left: 5px solid #ffaf26;
  padding-left: 0.5rem;
}
.kbase-page .alert {
  background-color: #ffaf26;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1rem;
}
.kbase-page .alert i {
  cursor: pointer;
}
.kbase-page .article-list .article-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.kbase-page .article-list .article-item .article-title a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
}
.kbase-page .article-list .article-item .article-title a:hover {
  color: #ffaf26;
}
.kbase-page .article-list .article-item .article-meta {
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.25rem;
}
.kbase-page .article-list .alert-light {
  background-color: #fff8e6;
  color: #555;
  border: 1px solid #ffaf26;
  border-radius: 6px;
}
.kbase-page .sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
}
.kbase-page .sidebar h4 {
  color: #333;
  border-bottom: 2px solid #ffaf26;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.kbase-page .sidebar .category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kbase-page .sidebar .category-list li {
  margin-bottom: 0.5rem;
}
.kbase-page .sidebar .category-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.kbase-page .sidebar .category-list li a:hover {
  background-color: #fff5d9;
}
.kbase-page .sidebar .category-list li a.active {
  background-color: #ffaf26;
  color: #fff;
}
.kbase-page .sidebar .category-list li a span {
  font-size: 0.85rem;
}
@media (max-width: 992px) {
  .kbase-page {
    max-width: 95%;
  }
  .kbase-page .sidebar {
    margin-top: 2rem;
  }
}

.kbase-show {
  max-width: 80%;
  margin: 0 auto;
}
.kbase-show .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.kbase-show .breadcrumb a {
  color: #ffaf26;
  text-decoration: none;
  transition: color 0.2s;
}
.kbase-show .breadcrumb a:hover {
  color: rgb(242, 152.7834101382, 0);
}
.kbase-show .breadcrumb span {
  color: #999;
}
.kbase-show .kbase-article h2 {
  font-size: 1.8rem;
  font-weight: 700;
  border-left: 5px solid #ffaf26;
  padding-left: 0.6rem;
  color: #333;
  margin-bottom: 1rem;
}
.kbase-show .kbase-article p.text-muted {
  font-size: 0.95rem;
  color: #666;
}
.kbase-show .kbase-article .content {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
.kbase-show .kbase-article .content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
}
.kbase-show .kbase-article .content h3,
.kbase-show .kbase-article .content h4 {
  margin-top: 1.5rem;
  color: #333;
}
.kbase-show .kbase-article .content a {
  color: #ffaf26;
  text-decoration: underline;
}
.kbase-show .kbase-article .content a:hover {
  color: rgb(252.2, 159.2230414747, 0);
}
.kbase-show .related-articles {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
}
.kbase-show .related-articles h5 {
  border-bottom: 2px solid #ffaf26;
  padding-bottom: 0.5rem;
  color: #333;
}
.kbase-show .related-articles .related-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.75rem;
}
.kbase-show .related-articles .related-item:last-child {
  border-bottom: none;
}
.kbase-show .related-articles .related-item a {
  color: #333;
  transition: color 0.2s;
}
.kbase-show .related-articles .related-item a:hover {
  color: #ffaf26;
}
.kbase-show .related-articles .related-item p {
  font-size: 0.85rem;
  color: #777;
}
@media (max-width: 992px) {
  .kbase-show {
    max-width: 95%;
  }
  .kbase-show .related-articles {
    margin-top: 2rem;
  }
}
