.post__thumb img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.post__header {
  padding: 0 0 1rem;
  border-bottom: 2px solid var(--color_main);
  margin: 2rem auto;
}
.post__header .p-entryCard__title {
  font-size: 1.6em;
  font-weight: bold;
  color: var(--color_main);
  margin: 0;
}
.post__header .p-entryCard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  min-width: 0;
}
.post__header .p-entryCard__meta .c-tag--tag {
  line-height: 1;
  border-radius: 3px;
  overflow: hidden;
}
.post__header .p-entryCard__meta .c-tag--tag a {
  line-height: 1;
  display: inline-block;
  color: #151414;
  padding: 0.4rem 0.5rem 0.5rem;
  background: #ffe7e7;
}
@media (hover: hover) {
  .post__header .p-entryCard__meta .c-tag--tag a {
    transition: background 0.3s ease, color 0.3s ease;
  }
  .post__header .p-entryCard__meta .c-tag--tag a:hover {
    background: var(--color_main);
    color: #fff;
  }
}
.post__header .p-entryCard__meta + .p-entryCard__title,
.post__header .p-entryCard__title + .p-entryCard__meta {
  margin-top: 0.5rem;
}
.post__header .p-entryCard__client {
  font-size: 1rem;
  color: #666;
  margin-top: 0.75rem;
}
