/* news.css - Page-specific styles only */

/* パンくず後の調整 */
.breadcrumb + .page-hero {
  padding-top: 3rem;
}

/* Page Hero */
    .page-hero {
      padding-top: 120px;
      padding-bottom: 60px;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: 'NEWS';
      position: absolute;
      top: 50%;
      right: -10%;
      transform: translateY(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 20vw;
      font-weight: 300;
      color: var(--accent-gold);
      opacity: 0.03;
      white-space: nowrap;
      pointer-events: none;
    }

    .page-label {
      font-family: 'Outfit', sans-serif;
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--accent-gold);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      animation: slideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
    }

    .page-label::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--accent-gold);
    }

    .page-title {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 400;
      letter-spacing: 0.1em;
      animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
    }

    .page-description {
      margin-top: 1.5rem;
      font-size: 0.95rem;
      color: var(--text-secondary);
      max-width: 500px;
      animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
    }

    /* News Section */
    .news-section {
      padding-top: 40px;
      padding-bottom: 100px;
    }

    .news-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .news-item {
      display: grid;
      grid-template-columns: 120px 1fr 50px;
      gap: 2rem;
      align-items: center;
      padding: 2rem 0;
      border-bottom: 1px solid var(--border-subtle);
      text-decoration: none;
      color: inherit;
      transition: background 0.3s ease;
    }

    .news-item:first-child {
      border-top: 1px solid var(--border-subtle);
    }

    .news-item:hover {
      background: rgba(201,169,98,0.03);
    }

    .news-item-date {
      font-family: 'Outfit', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      flex-shrink: 0;
    }

    .news-item-content {
      flex: 1;
      min-width: 0;
    }

    .news-item-category {
      font-family: 'Outfit', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent-gold);
      padding: 0.25rem 0.6rem;
      border: 1px solid var(--border-accent);
      display: inline-block;
      margin-bottom: 0.5rem;
    }

    .news-item-title {
      font-family: 'Shippori Mincho', serif;
      font-size: 1.1rem;
      font-weight: 400;
      letter-spacing: 0.03em;
      line-height: 1.6;
      transition: color 0.3s ease;
      margin: 0;
    }

    .news-item:hover .news-item-title {
      color: var(--accent-gold);
    }

    .news-item-excerpt {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-top: 0.75rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-item-arrow {
      width: 40px;
      height: 40px;
      border: 1px solid var(--border-subtle);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.3s ease, background 0.3s ease;
      flex-shrink: 0;
    }

    .news-item:hover .news-item-arrow {
      border-color: var(--accent-gold);
      background: var(--accent-gold);
    }

    .news-item-arrow svg {
      width: 16px;
      height: 16px;
      stroke: var(--text-muted);
      transition: stroke 0.3s ease;
    }

    .news-item:hover .news-item-arrow svg {
      stroke: var(--bg-primary);
    }

    /* No Posts */
    .no-posts {
      text-align: center;
      color: var(--text-secondary);
      padding: 4rem 0;
      font-size: 0.95rem;
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 4rem;
      padding-top: 2rem;
    }

    .pagination a,
    .pagination span {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 0.75rem;
      font-family: 'Outfit', sans-serif;
      font-size: 0.8rem;
      border: 1px solid var(--border-subtle);
      color: var(--text-secondary);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .pagination a:hover {
      border-color: var(--accent-gold);
      color: var(--accent-gold);
    }

    .pagination .current {
      background: var(--accent-gold);
      border-color: var(--accent-gold);
      color: var(--bg-primary);
    }

    /* Contact CTA */
    .contact-cta-section {
      padding: 80px 0;
      background: var(--bg-secondary);
      text-align: center;
      position: relative;
    }

    .contact-cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border-accent), transparent);
    }

    .cta-title {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(1.3rem, 3vw, 1.8rem);
      font-weight: 400;
      margin-bottom: 1rem;
    }

    .cta-description {
      font-size: 0.9rem;
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      font-family: 'Outfit', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      background: var(--accent-gold);
      color: var(--bg-primary);
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: color 0.4s ease;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--bg-primary);
      transform: translateX(-100%);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 0;
    }

    .cta-button:hover {
      color: var(--accent-gold);
    }

    .cta-button:hover::before {
      transform: translateX(0);
    }

    .cta-button span,
    .cta-button svg {
      position: relative;
      z-index: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .breadcrumb + .page-hero {
        padding-top: 2rem;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.5rem 0;
      }

      .news-item-date {
        font-size: 0.75rem;
      }

      .news-item-title {
        font-size: 1rem;
      }

      .news-item-excerpt {
        -webkit-line-clamp: 3;
        margin-top: 0.5rem;
        font-size: 0.8rem;
      }

      .news-item-arrow {
        display: none;
      }

      .pagination {
        flex-wrap: wrap;
      }
    }