/* KOP SURAT */
.kop-surat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px 4px 12px;
  text-align: center;
}

.kop-surat-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.kop-surat-info {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.kop-surat-nama {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.kop-surat-alamat {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.kop-surat-kontak {
  font-size: 10.5px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.kop-surat-sep {
  margin: 0 6px;
  opacity: 0.5;
}

.kop-surat-divider {
  border-bottom: 3px solid var(--accent-dark);
  margin-bottom: 3px;
}

.kop-surat-divider-thin {
  border-bottom: 1px solid var(--accent-dark);
  margin-bottom: 18px;
}

/* BODY SURAT */
.surat-body {
  padding: 4px 4px 20px;
}

.surat-judul {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: 0.6px;
  text-decoration: underline;
  margin-bottom: 20px;
}

.surat-paragraf {
  font-size: 12.5px;
  color: var(--text-heading);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 14px;
}

.surat-pihak-box {
  padding: 2px 0 2px 20px;
  margin-bottom: 14px;
}

.surat-pihak-row {
  display: flex;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--text-heading);
}

.surat-pihak-row span:first-child {
  width: 90px;
  flex-shrink: 0;
}

.surat-pihak-row span:first-child::after {
  content: ":";
  float: right;
}

.surat-pihak-row span:last-child {
  flex: 1;
  padding-left: 8px;
}
.surat-list {
  padding-left: 20px;
  margin-bottom: 14px;
}

.surat-list li {
  font-size: 12.5px;
  color: var(--text-heading);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 12px;
}

.surat-list li::marker {
  font-weight: 700;
}
.surat-pasal {
  margin-bottom: 18px;
}

.surat-pasal-judul {
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.surat-pasal-no {
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.surat-pasal-isi {
  font-size: 12.5px;
  color: var(--text-heading);
  line-height: 1.8;
  text-align: justify;
}
.surat-ttd-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 50px;
}
.surat-ttd-col {
  flex: 1;
  text-align: center;
}

.surat-ttd-label {
  font-size: 12.5px;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.surat-ttd-box {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.surat-ttd-img {
  max-height: 64px;
  max-width: 100%;
  object-fit: contain;
  display: none;
}

.surat-ttd-img.show {
  display: block;
}

.surat-ttd-placeholder {
  font-size: 10.5px;
  color: var(--text-secondary);
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.surat-ttd-placeholder.hide {
  display: none;
}

.surat-ttd-nama {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-heading);
  text-decoration: underline;
  margin-top: 4px;
}

.surat-ttd-cabang {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-heading);
  margin-top: 2px;
}