/*============================
  写メ日記一覧：ページ共通スタイル
============================*/


#castpage-title {
  background: linear-gradient(to right, #d0e7ff, #ffffff);
  padding: 42px 20px 30px;
  border-bottom: 2px solid #4296e4;
  text-align: center;
}

.castpage-heading {
  font-size: 72px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.6),
    0 2px 10px rgba(0, 0, 0, 0.5),
    2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Cinzel', 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

.castpage-intro {
  color: #222;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.page-container {
  max-width: 1200px;
  padding: 30px 8px;
  margin: 0 auto;
}


/*============================
  投稿カードレイアウト
============================*/
.shamenikki-list-item {
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid #ccc;
  border-radius: 12px;
   padding: 1em;
  margin-bottom: 2em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
}

.shamenikki-list-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  align-items: flex-start;
}

.shamenikki-image img {
  max-width: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.shamenikki-text {
  flex: 1;
  min-width: 200px;
}



.shamenikki-meta {
  font-size: 0.95rem;                  /* デフォルト（スマホ時） */
  color: #444;
  border-top: 1px dashed #aaa;
  border-bottom: 1px dashed #aaa;
  padding: 0.5em 0;
  margin-bottom: 1em;
}

/* PC時（画面幅768px以上） */
@media screen and (min-width: 768px) {
  .shamenikki-meta {
    font-size: 1.1rem;
  }
}


.shamenikki-cast,
.shamenikki-date {
  margin: 0.3em 0;
  font-size: 1.05rem;
}

.shamenikki-text .excerpt {
  margin-bottom: 1em;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shamenikki-text a {
  color: #4296e4;
  font-weight: bold;
  text-decoration: underline;
}

/*============================
  レスポンシブ調整
============================*/
@media screen and (max-width: 768px) {
  .castpage-heading {
    font-size: 2.4rem;
  }

  .castpage-intro {
    font-size: 0.95rem;
  }

  .shamenikki-list-inner {
    flex-direction: column;
    align-items: center;
  }

  .shamenikki-image img {
    max-width: 100%;
  }

  .shamenikki-text {
    width: 100%;
  }

.shamenikki-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4em;
  color: #222;
 }
}


.cast-profile-button {
  display: inline-block;
  background-color: #4296e4;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
}
.cast-profile-button:hover {
  background-color: #2f7fc7;
}