/* Blog prose table styling */
.prose table {
  width: 100%;
  border-collapse: collapse;
}

.prose th {
  background-color: rgba(255,255,255,0.05);
  padding: 12px;
  text-align: left;
}

.prose td {
  padding: 12px;
}

.prose tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Blog section separators */
.prose hr {
  border: none;
  height: 1px;
  margin: 4rem 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(34,211,238,0.6),
    transparent
  );
}
/* Drop cap for first paragraph */
.prose p:first-of-type::first-letter {
  float: left;
  font-size: 4rem;
  line-height: 1;
  padding-right: 10px;
  font-weight: bold;
  color: #22d3ee;
}
.prose th {
  background-color: rgba(34,211,238,0.15);
  color: #ffffff;
}
@media (max-width: 768px) {
  .prose {
    font-size: 1rem;
  }

  .prose h2 {
    font-size: 1.8rem;
  }

  .prose h3 {
    font-size: 1.4rem;
  }
}
