/* Blog posts / categories — storefront */
.mp-posts {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 64px;
  color: #1a1a1a;
}
.mp-posts__crumbs {
  font-size: 13px;
  color: #666;
  margin: 0 0 16px;
  line-height: 1.5;
}
.mp-posts__crumbs a {
  color: #0b5cab;
  text-decoration: none;
}
.mp-posts__crumbs a:hover { text-decoration: underline; }
.mp-posts__crumbs span { color: #999; margin: 0 6px; }

.mp-posts__title {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.25;
}
.mp-posts__meta {
  font-size: 14px;
  color: #666;
  margin: 0 0 24px;
}
.mp-posts__feat {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 0 28px;
}
.mp-posts__content {
  font-size: 17px;
  line-height: 1.65;
}
.mp-posts__content img {
  max-width: 100%;
  height: auto;
}
.mp-posts__content img.alignright,
.mp-posts__content .alignright {
  float: right;
  margin: 0.3em 0 1em 1.2em;
  max-width: min(100%, 420px);
}
.mp-posts__content img.alignleft,
.mp-posts__content .alignleft {
  float: left;
  margin: 0.3em 1.2em 1em 0;
  max-width: min(100%, 420px);
}
.mp-posts__content img.aligncenter,
.mp-posts__content .aligncenter {
  display: block;
  float: none;
  margin: 0.6em auto 1em;
}
.mp-posts__content::after {
  content: "";
  display: table;
  clear: both;
}
.mp-posts__content p { margin: 0 0 1em; }
.mp-posts__content h2,
.mp-posts__content h3 { margin: 1.4em 0 0.6em; line-height: 1.3; }

.mp-posts__cats {
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
}
.mp-posts__cats a {
  color: #0b5cab;
  text-decoration: none;
  margin-right: 12px;
}
.mp-posts__cats a:hover { text-decoration: underline; }

.mp-posts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.mp-posts-list__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid #ececec;
}
@media (max-width: 640px) {
  .mp-posts-list__item { grid-template-columns: 1fr; }
}
.mp-posts-list__thumb {
  display: block;
  width: 120px;
  height: 90px;
  object-fit: cover;
  background: #f0f0f0;
}
.mp-posts-list__thumb--empty {
  display: block;
  width: 120px;
  height: 90px;
  background: #f0f0f0;
}
.mp-posts-list__name {
  font-size: 1.15rem;
  font-weight: 650;
  margin: 0 0 6px;
  line-height: 1.3;
}
.mp-posts-list__name a {
  color: inherit;
  text-decoration: none;
}
.mp-posts-list__name a:hover { color: #0b5cab; }
.mp-posts-list__date {
  font-size: 13px;
  color: #777;
  margin: 0 0 8px;
}
.mp-posts-list__excerpt {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

.mp-posts-children {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.mp-posts-children a {
  color: #0b5cab;
  text-decoration: none;
  font-size: 15px;
}
.mp-posts-children a:hover { text-decoration: underline; }

.mp-posts-empty {
  padding: 40px 16px;
  text-align: center;
  color: #555;
}
