#main_content {
  max-width: var(--container_size);
}

.p-postList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 480px) {
  .p-postList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }
}
.p-postList__item {
  height: 100%;
}
.p-postList .p-entryCard {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.p-postList .p-entryCard__thumb {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.75rem;
  overflow: hidden;
}
.p-postList .p-entryCard__thumbLink {
  position: relative;
  z-index: 0;
  display: block;
}
.p-postList .p-entryCard__thumbLink .p-entryCard__title {
  padding: 1.5em 1em 1em;
  margin: 0;
  line-height: 1.35;
  font-size: 1.05rem;
  word-break: break-word;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgb(0, 0, 0) 100%);
}
@media (hover: hover) {
  .p-postList .p-entryCard__thumbLink {
    transition: color 0.5s ease, background 0.3s ease, padding-top 0.3s ease;
  }
  .p-postList .p-entryCard__thumbLink:hover .p-entryCard__title {
    padding-top: 2em;
    color: var(--color_main);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 50%, rgb(0, 0, 0) 100%);
  }
}
.p-postList .p-entryCard__thumbLink {
  display: block;
  width: 100%;
  height: 100%;
}
.p-postList .p-entryCard__thumbImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.p-postList .p-entryCard__thumbLink:hover .p-entryCard__thumbImg,
.p-postList .p-entryCard__thumbLink:focus .p-entryCard__thumbImg {
  transform: scale(1.04);
}
.p-postList .p-entryCard__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  min-width: 0;
}
.p-postList .p-entryCard__header {
  min-width: 0;
}
.p-postList .p-entryCard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  min-width: 0;
}
.p-postList .p-entryCard__meta .c-tag--tag {
  line-height: 1;
  border-radius: 3px;
  overflow: hidden;
}
.p-postList .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) {
  .p-postList .p-entryCard__meta .c-tag--tag a {
    transition: background 0.3s ease, color 0.3s ease;
  }
  .p-postList .p-entryCard__meta .c-tag--tag a:hover {
    background: var(--color_main);
    color: #fff;
  }
}
.p-postList .p-entryCard__meta + .p-entryCard__title,
.p-postList .p-entryCard__title + .p-entryCard__meta {
  margin-top: 0.5rem;
}
.p-postList .p-entryCard__excerpt {
  margin: 0;
  min-width: 0;
}
.p-postList .p-entryCard__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
  min-width: 0;
  font-size: 0.875rem;
}
.p-postList .p-entryCard__date,
.p-postList .p-entryCard__client {
  white-space: nowrap;
}
