section {
  width: 100dvw;
  height: calc(100dvh - 50px);
  overflow-y: hidden;
}
section .BlogContainer {
  max-width: 600px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  margin: 0 auto;
}
section .BlogContainer .BlogCard {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 16px;
  text-decoration: none;
  color: black;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
section .BlogContainer .BlogCard:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
section .BlogContainer .BlogCard .title p {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
section .BlogContainer .BlogCard .meta {
  font-size: 13px;
  color: #888;
  margin: 0;
}
section .BlogContainer #loadMoreArea {
  text-align: center;
  padding: 20px;
  font-size: 16px;
  color: #888;
  display: block;
}
section .BlogContainer #loadMoreArea.loading {
  color: #444;
}

/*# sourceMappingURL=Blog.css.map */
