.image-wrapper {
  width: 260px;
  margin: 0 0 1.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
  break-inside: avoid;
  overflow: hidden;
}
.thumb {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px 4px 0 0;
  object-fit: contain;
}

.source {
  display: block;
  font-size: 0.8rem;
  padding: 0.8rem 1rem;
  margin: 0;
  line-height: 1.4;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}
.source a {
  font-style: italic;
  font-size: 0.85rem;
  color: #888;
}
.text-content {
  margin: 2rem 0;
}
.meta-info {
  clear: both;
}
.date {
  color: #777;
  font-size: 0.9rem;
  margin: 1.5rem 0 0.5rem;
}

@media (min-width: 586px) {
  .image-wrapper {
    float: right;
    shape-outside: margin-box;
  }
  .thumb {
    height: auto;
  }
}
@media (max-width: 587px) {
  .image-wrapper {
    width: 100%;
    margin: 2rem 0;
    border-radius: 0;
  }
  .thumb {
    height: auto;
    max-height: 70vh;
    border-radius: 0;
  }
  .source {
    padding: 0.8rem;
  }
  .text-content {
    padding-right: 0;
  }
}
/* Clearfix */
#detail::after {
  content: "";
  display: table;
  clear: both;
}
/*li*/
.listmes {
  padding: 0;
  list-style: none;
  margin-left: 40px;
  margin-top: 10px;
}
.listmes li {
  padding: 6px 0;
  position: relative;
  line-height: 1.5;
}
.listmes li:before {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #c0c0c0;
  content: "\f111";
  font-size: 10px;
  transition-duration: 0.5s;
}
.listmes li:hover:before {
  color: #337ab7;
}
.listmes a {
  text-decoration: none;
  color: #333;
  display: inline-block;
  font-size: 16px;
  transition: color 0.3s;
}
.listmes a:hover {
  color: #337ab7;
}
.listmes a:focus {
  outline: none;
  color: #555;
}
