/* KURAHIRO WordPress 最新記事連携 */
#feed.arkus-blog-feed,
#feed {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    justify-content: center;
    gap: 40px;
}

.arkus-feed-card {
  overflow: hidden;
  background: rgba(255,255,255,.96);
  box-shadow: 0 3px 14px rgba(0,0,0,.2);
}

.arkus-feed-card a {
  display: block;
  height: 100%;
  color: #27170c;
  text-decoration: none;
}

.arkus-feed-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #2a2018;
}

.arkus-feed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arkus-feed-noimage {
  background:
    linear-gradient(rgba(24,18,20,.2), rgba(24,18,20,.2)),
    url("../img/shared/logo.png") no-repeat center / 70% auto,
    #2a2018;
}

.arkus-feed-body {
  padding: 18px 18px 20px;
}

.arkus-feed-body time {
  color: #806f61;
  font-size: 13px;
}

.arkus-feed-body h3 {
  margin: 8px 0 12px;
  font-size: 18px;
  line-height: 1.6;
}

.arkus-feed-more {
  color: #7b4a20;
  font-weight: 700;
}

.arkus-feed-empty,
.arkus-feed-error {
  grid-column: 1 / -1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #feed.arkus-blog-feed,
  #feed {
    grid-template-columns: 1fr;
  }
}
