#scaleWrapper,
#designRoot {
  overflow: visible !important;
}

#designRoot {
  transform: none !important;
}

.scale-wrapper {
  transform: none !important;
}

.design-root {
  transform: none !important;
}
.article-page {
  background: #FEFEFE;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #1F1548;
}

.article-container {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding-bottom: 60px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 999;
}
/*  Link Kembali */
.breadcrumb {
  color: #888;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
    margin-top: 24px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px; 
  transition: color 0.2s ease;
}

.breadcrumb svg {
  stroke: #888;
  transition: stroke 0.2s ease;
}

.breadcrumb:hover {
  color: #1F1548;
}

.breadcrumb:hover svg {
  stroke: #1F1548;
}

.article-title {
  font-size: 38px; 
  color: #1F1548;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.article-tags {
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


.article-tags .tag {
  background: #E4CE8E; 
  color: #1F1548;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-size: 18px; 
}

.meta-left {
  display: flex;
  gap: 40px;
}


.meta-date, .author-label {
  color: #9FA0B5; 
}

.meta-author {
  color: #1F1548; 
  font-weight: 400;
}

.meta-right {
  display: flex;
  align-items: center;
  gap: 18px; 
}

.meta-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}


.meta-right img {
  display: block;
  opacity: 0.5; 
  transition: opacity 0.2s ease;
}

.meta-right a:hover img {
  opacity: 0.8; 
}

.dl-icon {
  margin-right: 15px;
}

.dl-icon svg {
  transition: stroke 0.2s ease;
}

.dl-icon:hover svg {
  stroke: #1F1548;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  font-size: 32px;
  color: #1F1548;
  margin: 50px 0 20px;
  font-weight: 600;
}

.article-content p {
  font-size: 20px;
  color: #1F1548;
  line-height: 1.7;
  margin-bottom: 24px;
}

.article-content ul {
  margin-left: 25px;
  margin-bottom: 30px;
  list-style-type: disc;
}

.article-content li {
  font-size: 22px;
  color: #1F1548;
  margin-bottom: 12px;
  line-height: 1.6;
  padding-left: 10px;
}


.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  border-top: 1px solid #E3E3E3;
  padding-top: 50px; 
  margin-top: 60px;
}


.article-nav a {
  color: #1F1548;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 25px; 
  transition: opacity 0.2s ease;
}

.article-nav a:hover {
  opacity: 0.7;
}


.article-nav .nav-arrow {
  color: #D5C28C; 
  font-size: 70px; 
  font-weight: 300; 
  line-height: 0; 
  position: relative;
  top: -2px; 
}