@charset "UTF-8";
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background-color: #f4f7f6;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #374e64;
  color: #fff;
  padding: 16px 0;
  border-bottom: 5px solid #006de2;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 1.8em;
}
.logo a {
  color: #fff;
  text-decoration: none;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #006de2;
}

/* ================================
   MAIN LAYOUT
================================ */
.content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 30px;
  margin-top: 30px;
  width: 100%;
}

/* Prevent overflow */
.main-content,
.sidebar {
  min-width: 0;
  width: 100%;
}

/* ================================
   MAIN CONTENT
================================ */
.main-content {
  box-sizing: border-box;
}

/* ================================
   SIDEBAR
================================ */
.sidebar {
  background: #ffffff;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  .sidebar {
    order: 2;
  }
  .main-content {
    order: 1;
  }
}
/* ================================
   SAFETY OVERRIDES
   (prevent old flex rules)
================================ */
.content-wrapper {
  display: grid !important;
}

.main-content,
.sidebar {
  flex: unset !important;
}

/* Featured Article */
.featured-article {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 40px;
}
.featured-article .featured-image {
  width: 100%;
  height: auto;
  display: block;
}
.featured-article .featured-content {
  padding: 25px;
  box-sizing: border-box;
}
.featured-article .featured-content h2 {
  margin-top: 0;
  color: #374e64;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8em;
  line-height: 1.3;
}
.featured-article .featured-content .meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}
.featured-article .featured-content p {
  margin-bottom: 20px;
}

/* News Sections */
.news-section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 30px;
}
.news-section:last-child {
  margin-bottom: 0px;
}
.news-section h3 {
  margin-top: 0;
  color: #374e64;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #eee;
}
.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.news-item .news-thumbnail {
  width: 120px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: hidden; /* Hide overflowing alternative text */
}
.news-item .news-info h4 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.2em;
  line-height: 1.4;
}
.news-item .news-info h4 a {
  color: #374e64;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-item .news-info h4 a:hover {
  color: #006de2;
}
.news-item .news-info .meta {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 10px;
}
.news-item .news-info p {
  font-size: 0.95em;
  margin-bottom: 10px;
}

.read-more {
  color: #006de2;
  text-decoration: none;
  font-weight: 500;
}
.read-more:hover {
  color: #007bff;
  text-decoration: underline;
}

.read-more-button {
  display: inline-block;
  background-color: #006de2;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  float: right;
}
.read-more-button:hover {
  background-color: #0056b3;
}

.limit-4-lines p {
  display: -webkit-box;
  /* aktifkan flexbox khusus WebKit */
  -webkit-box-orient: vertical;
  /* arah vertikal */
  -webkit-line-clamp: 4;
  /* batasi 4 baris */
  overflow: hidden;
  /* sembunyikan kelebihan teks */
  text-overflow: ellipsis;
  /* tambahkan ellipsis (…) di ujung */
}

.widget-header {
  color: #374e64;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  margin-top: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  text-align: center;
}

/* Sidebar Ads */
.ad-block,
.article-list {
  margin-bottom: 30px;
  text-align: center;
}
.ad-block h4,
.article-list h4 {
  color: #374e64;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.ad-block img,
.article-list img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 5px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.ad-block .ad-text,
.article-list .ad-text {
  font-size: 0.9em;
  color: #555;
}

.article-list ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}
.article-list ul li {
  text-align: left;
  padding: 4px 0;
}
.article-list ul li a {
  color: #374e64;
  text-decoration: none;
}
.article-list ul li a:hover {
  color: #006de2;
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #374e64;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 5px solid #006de2;
}
footer .footer-links {
  margin-top: 10px;
}
footer .footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9em;
  transition: color 0.3s ease;
}
footer .footer-links a:hover {
  color: #006de2;
}

/* Article Page Specific Styles */
.article-page {
  padding-top: 20px;
}
.article-page .content-wrapper {
  margin-top: 0;
}
.article-page .full-article {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  flex: 3;
}
.article-page .sidebar {
  flex: 1;
  margin-left: 0;
}

.article-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  color: #374e64;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: normal;
}

.article-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-content {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: "Montserrat", sans-serif;
  color: #374e64;
  font-weight: normal;
}
.article-content h1 {
  font-size: 1.8em;
}
.article-content h2 {
  font-size: 1.55em;
}
.article-content h3 {
  font-size: 1.3em;
}
.article-content h4 {
  font-size: 1.1em;
}
.article-content h5 {
  font-size: 0.95em;
}
.article-content h6 {
  font-size: 0.85em;
}
.article-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}
.article-content p {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  padding: 8px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.article-content table td,
.article-content table th {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.article-content a {
  color: #2980b9;
  text-decoration: none;
}
.article-content a:hover {
  text-decoration: underline;
}

figure {
  padding: 0;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }
  nav ul {
    margin-top: 15px;
    justify-content: center;
  }
  nav ul li {
    margin: 0 10px;
  }
  .featured-content h2 {
    font-size: 1.5em;
  }
  .content-wrapper {
    flex-direction: column;
  }
  .main-content,
  .sidebar {
    width: 100%;
  }
  .news-item {
    flex-direction: column;
  }
  .news-item .news-thumbnail {
    margin-right: 0;
    margin-bottom: 15px;
    display: block;
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  aside.sidebar {
    box-sizing: border-box;
  }
  .article-page {
    padding-left: 0;
    padding-right: 0;
  }
  .featured-article,
  .news-section,
  .sidebar {
    border-radius: 0px;
  }
}
@media (min-width: 769px) {
  .article-page .content-wrapper {
    display: flex;
    gap: 30px;
  }
  .article-page .full-article {
    margin-bottom: 0;
  }
}
.slideshow-wrapper {
  padding-bottom: 4px;
}

/* Slideshow Container */
.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  /* Hide overflowing slides */
  margin-bottom: 10px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .slideshow-container {
    border-radius: 0px;
  }
}
.slideshow-container .slide-selector {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.slideshow-container:hover .slide-selector {
  opacity: 0.9;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* Adjustments for the featured article within slides */
.slideshow-container .featured-article {
  margin-bottom: 0;
  /* Remove bottom margin from individual slides */
  box-shadow: none;
  /* Remove box-shadow from individual slides as container has it */
  border-radius: 0;
  /* Remove border-radius from individual slides */
  position: relative;
  overflow: hidden;
}
.slideshow-container .featured-article .featured-content {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.3);
}
.slideshow-container .featured-article .featured-content h2 {
  color: #fff;
  font-size: 24px;
}
.slideshow-container .featured-article .featured-content p {
  color: #f0f0f0;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.social-share {
  margin-top: 15px;
  margin-bottom: 15px;
}

.social-share span {
  font-size: 14px;
  margin-right: 10px;
  vertical-align: middle;
}

.social-share a {
  display: inline-block;
  padding: 8px 12px;
  margin-right: 5px;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.social-share a:hover {
  opacity: 0.9;
}

.social-share a.facebook {
  background-color: #1877F2;
}

.social-share a.twitter {
  background-color: #1DA1F2;
}

.social-share a.linkedin {
  background-color: #0A66C2;
}

.social-share a.whatsapp {
  background-color: #25D366;
}

.social-share a.telegram {
  background-color: #229ED9;
}

.social-share a.line {
  background-color: #00B900;
}

.social-share a.email {
  background-color: #777;
}

.social-share a svg {
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  margin-right: 0px;
  fill: #fff;
}

figure table {
  border-collapse: collapse;
}

figure table td,
figure table th {
  padding: 4px 8px;
  border-color: #cccccc;
}

/* Kontainer utama untuk tag */
.article-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #555;
  margin: 20px 0;
}

.article-tag:empty {
  display: none;
}

/* Gaya untuk setiap item tag */
.tag-item {
  display: inline-block;
  padding: 2px 12px 6px 12px;
  background-color: #f0f4f8;
  /* Warna latar lembut */
  color: #2c3e50;
  /* Warna teks gelap profesional */
  text-decoration: none;
  border-radius: 5px;
  /* Membuat bentuk kapsul */
  border: 1px solid #d1d9e6;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Efek saat mouse mendekat (Hover) */
.tag-item:hover {
  background-color: #3498db;
  /* Warna biru database */
  color: #ffffff;
  border-color: #2980b9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

/* Opsional: Menghilangkan spasi berlebih jika ada teks "Tag:" di dalamnya */
.article-tag {
  white-space: nowrap;
}

.article-link {
  text-align: right;
}

.article-tag a.tag-item:hover,
.article-content a.tag-item:hover {
  text-decoration: none;
}

.container .article-tag {
  margin: 0px;
}
.container .article-link {
  margin-top: 3px;
}

/* ================================
   CORE CONTAINER (OPTIONAL)
================================ */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

/* ================================
   ROW
================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
  margin-left: -30px;
  box-sizing: border-box;
}

/* ================================
   COL BASE
================================ */
.col,
[class^=col-],
[class*=" col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

/* Auto column */
.col {
  flex: 1 0 0%;
  box-sizing: border-box;
}

/* ================================
   COLUMN SIZES (1 - 12)
================================ */
.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* ================================
   BREAKPOINTS
================================ */
/* SM ≥576px */
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
  }
}
/* MD ≥768px */
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
  }
}
/* LG ≥992px */
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
  }
}
/* XL ≥1200px */
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
  }
}
.pagination-number {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Base item */
.page-selector {
  display: inline-flex;
}

/* Link */
.page-selector a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 31px;
  padding: 0px 0px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
}

/* Hover */
.page-selector a:hover {
  background: #f0f0f0;
  border-color: #bbb;
}

/* Active page */
.page-selected a {
  background: #1e88e5;
  border-color: #1e88e5;
  color: #fff;
  font-weight: 600;
  cursor: default;
}

/* Disable hover on active */
.page-selected a:hover {
  background: #1e88e5;
}

/* Previous button (step one) */
.page-selector-step-one a {
  position: relative;
}

/* Arrow using CSS */
.page-selector-step-one a::before {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: inherit;
}

.fa-angle-left::before {
  content: "‹";
}

.fa-angles-left::before {
  content: "«";
}

.fa-angle-right::before {
  content: "›";
}

.fa-angles-right::before {
  content: "»";
}

/* First / last spacing helper (optional) */
.page-first a,
.page-last a {
  min-width: 36px;
}

/* Mobile friendly */
@media (max-width: 480px) {
  .page-selector a {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    padding: 0 8px;
  }
  .page-selector-step-one a::before {
    font-size: 18px;
  }
}
pre {
  border: 1px solid #d4d4d4;
  background-color: #f9f9f9;
  padding: 1rem;
  overflow: auto;
}

/* Content */
figure table {
  border-collapse: collapse;
}

figure table td, figure table th {
  padding: 4px 8px;
  border-color: #cccccc;
}

/* Kontainer utama untuk tag */
.article-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #555;
  margin: 20px 0;
}

.article-tag:empty {
  display: none;
}

/* Gaya untuk setiap item tag */
.tag-item {
  display: inline-block;
  padding: 2px 12px 6px 12px;
  background-color: #f0f4f8; /* Warna latar lembut */
  color: #2c3e50; /* Warna teks gelap profesional */
  text-decoration: none;
  border-radius: 5px; /* Membuat bentuk kapsul */
  border: 1px solid #d1d9e6;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Efek saat mouse mendekat (Hover) */
.tag-item:hover {
  background-color: #3498db; /* Warna biru database */
  color: #ffffff;
  border-color: #2980b9;
  transform: translateY(-2px); /* Efek melayang sedikit */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Opsional: Menghilangkan spasi berlebih jika ada teks "Tag:" di dalamnya */
.article-tag {
  white-space: nowrap;
}

a.read-more {
  display: block;
  margin-right: 0;
}

.widget-item-list {
  text-align: left !important;
  /* RESET DASAR */
  /* ITEM */
  /* GARIS TREE */
  /* HILANGKAN GARIS PADA ROOT */
  /* LINK */
  /* PARENT */
  /* ICON TOGGLE */
  /* OPEN STATE */
  /* CHILD HIDDEN */
  /* CHILD SHOWN */
}
.widget-item-list ul {
  list-style: none;
  margin: 0;
  padding-left: 1rem;
}
.widget-item-list > ul {
  padding-left: 0 !important;
}
.widget-item-list > ul > li {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.widget-item-list li {
  position: relative;
  margin: 4px 0;
  padding-left: 18px;
  font-size: 14px;
}
.widget-item-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ccc;
}
.widget-item-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 12px;
  height: 1px;
  background: #ccc;
}
.widget-item-list ul > li::before,
.widget-item-list ul > li::after {
  display: none;
}
.widget-item-list li a {
  text-decoration: none;
  color: #333;
  padding: 4px 0px;
  border-radius: 4px;
  display: inline-block;
}
.widget-item-list li a:hover {
  color: #000;
}
.widget-item-list li.has-child > a::before {
  content: "▸";
  display: inline-block;
  margin-right: 6px;
  transition: transform 0.2s ease;
}
.widget-item-list li.has-child.open > a::before {
  transform: rotate(90deg);
}
.widget-item-list li.has-child > ul {
  display: none;
}
.widget-item-list li.has-child.open > ul {
  display: block;
}

/* Untuk elemen teks umum, gunakan break-word */
/* Ini akan menjaga kata tetap utuh kecuali benar-benar tidak muat */
li, p, h4, h5, h6 {
  overflow-wrap: break-word; /* Standar Modern */
  word-break: break-word; /* Fallback untuk browser lama */
}

/* Khusus untuk elemen yang kemungkinan berisi URL panjang atau kode rahasia */
/* Anda bisa menambahkan class khusus jika ada */
.break-all {
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  /* Untuk judul besar di layar kecil, gunakan break-word */
  h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}/*# sourceMappingURL=style.css.map */