/* Custom CSS for KAP BAMS */
/* Animation */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container-custom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.berita-content p {
  margin-bottom: 1em;
  line-height: 1.6;
}

.berita-content h2,
.berita-content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
.berita-content ul,
.berita-content ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

.berita-content blockquote {
  border-left: 4px solid #2563eb;
  padding-left: 1em;
  color: #555;
  font-style: italic;
}
.berita-content a {
  color: #2563eb;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.berita-content a:hover {
  color: #1e40af;
  text-decoration: none;
}

.docx-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.docx-image {
  margin-bottom: 1.5rem;
}
