@charset "UTF-8";
main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* 🔹 블로그 포스트 스타일 */
.blog-post {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  margin-bottom: 20px;
}

.blog-post h2 {
  font-size: 1.5em;
  margin-bottom: 5px;
}

.blog-post p {
  font-size: 1em;
  color: #666;
}

/* 🔹 갤러리 스타일 */
.post-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.post-gallery img {
  width: 180px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.post-gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

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