body {
  background: #f0f6ff;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.2);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 18px;
}

.blog-content h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #1e40af;
}

.blog-content p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 15px;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  padding: 10px 18px;
  background: #3b82f6;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.read-more:hover {
  background: #1d4ed8;
  color: #000;
}

.columns {
  display: block;
  margin-bottom: 4vh;
  background-color: white;
}

.columns section {
  padding: 1rem;
}

.columns .title {
  background: linear-gradient(135deg, #26cf97 0%, #09b87e 50%, #c0b521 100%);
  color: white;
  padding: 1rem;
  text-align: left;
  width: 100%;
  display: block;
  transition: 0.2s;
  border-left: 0px solid #2a2a2e;
}

.columns .title a {
  float: right;
}

.columns .title a:hover {
  color: #2a2a2e;
}

.posts a {
  display: flex;
  align-items: center;
  margin: 0.4rem 0;
}

.posts a img {
  width: 100px;
  margin-right: 10px;
}

.posts a:hover>p {
  color: #000;
}

.blog-wiew-content-div p {
  text-align: justify;
  margin: 0;
}

.blog-wiew-content-div img {
  padding: 10px;
}

.toc-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  padding: 20px;
}

.toc-card h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin: 8px 0;
}

.toc-list a {
  text-decoration: none;
  cursor: pointer;
  color: #2563eb;
  transition: color 0.3s;
}

.toc-list li a {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  color: #333;
}

.toc-list li a.active {
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
}

.toc-list li a.active {
  background: #007bff;
  color: #fff;
  border-radius: 4px;
}

.toc-list ul {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px dashed #ccc;
}

.blog-wiew-content-div h1 {
  font-weight: 800;
  color: #7db907 !important;
  margin-bottom: 15px !important;
}

.blog-wiew-content-div h1 {
  font-size: 35px;
}

.blog-wiew-content-div h1,
.blog-wiew-content-div h2,
.blog-wiew-content-div h3,
.blog-wiew-content-div h4,
.blog-wiew-content-div h5,
.blog-wiew-content-div h6 {
  color: #232323;
  font-family: 'Muli', sans-serif;
  font-style: normal;
  margin-bottom: 0;
  margin-top: 11px;
  line-height: 1.2;
  font-weight: 700;
  -webkit-transition: .5s;
  transition: .5s;
}

.blog-wiew-content-div p {
  text-align: justify !important;
}

.blog-wiew-content-div h2 {
  font-weight: 900;
  font-size: 30px !important;
  margin-top: 20px !important;
  margin-bottom: 10px !important;
}

.blog-wiew-content-div h3 {
  font-weight: 700;
  font-size: 24px !important;
}

.blog-wiew-content-div h4 {
  font-weight: 700;
  font-size: 19px !important;
}

.blog-wiew-content-div ul {
  list-style: none !important;
  padding-left: 25px;
}

.blog-wiew-content-div li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-wiew-content-div li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5em;
  height: 0.5em;
  background-color: #96d41e;
  border-radius: 50%;
}

.muted {
  color: #6b7280;
  font-size: .95rem;
}

.post-meta {
  color: #6b7280;
  font-size: .95rem;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}