.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(22, 38, 50);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
  padding-bottom: 0.375rem;
  border-bottom: 2px solid rgb(127, 234, 226);
  display: inline-block;
}
.blog-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(22, 38, 50);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.blog-content p {
  color: rgb(22, 38, 50);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.blog-content ul,
.blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.blog-content ul { list-style-type: disc; }
.blog-content ol { list-style-type: decimal; }
.blog-content li {
  color: rgb(22, 38, 50);
  opacity: 0.8;
  line-height: 1.75;
}
.blog-content a {
  color: rgb(22, 38, 50);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgb(127, 234, 226);
  transition: color 0.15s;
}
.blog-content a:hover { color: rgb(0, 160, 150); }
.blog-content strong {
  color: rgb(22, 38, 50);
  font-weight: 700;
  opacity: 1;
}
.blog-content hr {
  border: none;
  border-top: 1px solid rgb(22, 38, 50);
  opacity: 0.12;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.blog-content table {
  width: 100%;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
  border-radius: 0.5rem;
  overflow: hidden;
}
.blog-content thead { background-color: rgb(22, 38, 50); }
.blog-content th {
  text-align: left;
  color: rgb(127, 234, 226);
  font-weight: 600;
  padding: 0.625rem 0.875rem;
}
.blog-content td {
  color: rgb(22, 38, 50);
  opacity: 0.85;
  padding: 0.5rem 0.875rem;
  border-bottom: 1px solid rgba(22, 38, 50, 0.1);
}
.blog-content tr:last-child td { border-bottom: none; }

@media (max-width: 640px) {
  .blog-content table,
  .blog-content tbody,
  .blog-content tr,
  .blog-content th,
  .blog-content td {
    display: block;
    width: 100%;
  }
  .blog-content thead { display: none; }
  .blog-content tr {
    margin-bottom: 0.75rem;
    border: 1px solid rgba(22, 38, 50, 0.12);
    border-radius: 0.5rem;
    overflow: hidden;
  }
  .blog-content tr:last-child { margin-bottom: 0; }
  .blog-content td {
    border-bottom: 1px solid rgba(22, 38, 50, 0.08);
    padding: 0.5rem 0.875rem;
  }
  .blog-content td:first-child {
    background-color: rgb(22, 38, 50);
    color: rgb(127, 234, 226);
    font-weight: 600;
    opacity: 1;
  }
  .blog-content tr:last-child td:last-child { border-bottom: none; }
}
.blog-content blockquote {
  border-left: 3px solid rgb(127, 234, 226);
  padding-left: 1rem;
  font-style: italic;
  color: rgb(22, 38, 50);
  opacity: 0.65;
  margin: 1.5rem 0;
}
