.blog-notice {
  max-width: 40%;
  margin-bottom: 3rem;
  margin-left: auto;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: 0.3s;
}
.blog-notice:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}
.blog-notice__date {
  color: #FF7D38;
  font-weight: 700;
  font-size: 0.83rem;
  white-space: nowrap;
}
.blog-notice__category {
  background: #F3E6D9;
  color: #734026;
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
  font-size: 0.75rem;
  white-space: nowrap;
}
.blog-notice__title {
  color: #5A3826;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
@media (max-width: 480px) {
  .blog-notice {
    padding: 1rem 1.2rem;
    max-width: 90%;
    flex-direction: column;
    align-items: baseline;
    gap: 0;
    border-radius: 20px;
    margin-left: initial;
    margin-top: 18.6666666667vw;
    margin-bottom: 0;
  }
  .blog-notice__title {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */