/* =========================
   Tags index
========================= */

.tags-index {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
  }
  
  .tags-title {
    text-align: center;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--accent);
  }
  
  .tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
  }
  
  .tags-list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(121,174,200,0.15);
    color: #365c95;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
  }
  
  .tags-list a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
  }

  /* =========================
   Tag archive
========================= */

.tags-archive {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
  }
  
  /* ヘッダー部分 */

    .archive-header {
    margin-bottom: 3rem;
  }
  
  .archive-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.5rem;
  }
  
  .tags-archive-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }
  
  .archive-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #666;
    max-width: 520px;
  }

  /* =========================
   Tag archive list
========================= */

.archive-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .tags-archive .post-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    box-shadow: none;
    transition: background 0.2s ease;
  }

  .tags-archive .thumb{
    width: 120px;
    flex-shrink: 0;
    aspect-ratio: 3 / 2;
    overflow: hidden;
  }

  .tags-archive .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95);
  }

  /* テキスト部分 */

    .tags-archive .meta {
    padding: 0;
  }
  
  .tags-archive .meta .date {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.25rem;
  }
  
  .tags-archive .meta .title {
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  /* hover（控えめ） */

.tags-archive .post-card:hover {
    background: rgba(121,174,200,0.06);
  }

  