

/* START : BLOG CONTENT FORMATING  */
.blog-content {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  line-height: 1.8;
  font-size: 1rem;
}

/* Headings */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-family: 'Playfair Display', serif;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #111827;
}

.blog-content h1 {
  font-size: 2.25rem;
}

.blog-content h2 {
  font-size: 1.75rem;
}

.blog-content h3 {
  font-size: 1.4rem;
}

/* Paragraphs */
.blog-content p {
  margin-bottom: 1.25rem;
}

/* Images */
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
}

/* Lists */
.blog-content ul,
.blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-position: outside;
}

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

/* Blockquotes */
.blog-content blockquote {
  border-left: 4px solid #78716c;
  background: #f9fafb;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

/* Links */
.blog-content a {
  color: #78716c;
  text-decoration: underline;
}

/* Code */
.blog-content pre {
  background: #111827;
  color: #f9fafb;
  padding: 1.25rem;
  border-radius: 10px;
  overflow-x: auto;
  margin: 2rem 0;
}

.blog-content code {
  background: #e5e7eb;
  padding: 3px 6px;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* Tables */
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.blog-content table th,
.blog-content table td {
  border: 1px solid #e5e7eb;
  padding: 10px;
}

.blog-content table th {
  background: #f3f4f6;
}

/* END : BLOG CONTENT FORMATING  */



@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: float 10s ease-in-out infinite;
}
