/* ===== NEWS ===== */
  .news-section { background: var(--white); padding: 60px 0; position: relative; overflow: hidden; }

  .news-section::before {
    content: 'NEWS';
    position: absolute;
    right: -8px; bottom: -16px;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(68px, 16vw, 160px);
    font-weight: 700;
    color: rgba(240,62,122,0.05);
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
  }

  .news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }

  .news-more { font-size: 14px; font-weight: 600; color: var(--pink-main); text-decoration: none; letter-spacing: 0.05em; transition: opacity 0.2s; white-space: nowrap; padding-bottom: 2px; }
  .news-more:hover { opacity: 0.7; }

  .news-list { display: flex; flex-direction: column; border-top: 1px solid var(--pink-light); }

  .news-item {
    display: grid;
    grid-template-columns: 200px 1fr 24px;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--pink-light);
    text-decoration: none;
    color: var(--navy);
    transition: background 0.2s, padding-left 0.2s;
    border-radius: 4px;
    animation: fadeUp 0.6s ease both;
  }

  .news-item:nth-child(1) { animation-delay: 0.1s; }
  .news-item:nth-child(2) { animation-delay: 0.2s; }
  .news-item:nth-child(3) { animation-delay: 0.3s; }
  .news-item:nth-child(4) { animation-delay: 0.4s; }
  .news-item:nth-child(5) { animation-delay: 0.5s; }

  .news-item:hover { padding-left: 8px; background: var(--pink-pale); }

  .news-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .news-date { font-size: 14px; color: #999; font-family: 'Noto Serif JP', serif; letter-spacing: 0.05em; white-space: nowrap; }

  .news-cat { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px; white-space: nowrap; letter-spacing: 0.06em; }
  .cat-info   { background: var(--pink-pale); color: var(--pink-deep); border: 1px solid var(--pink-light); }
  .cat-recruit{ background: #EEF4FF; color: #3B6FD4; border: 1px solid #C8D9F8; }
  .cat-voice  { background: #F0FBF4; color: #2A8A4A; border: 1px solid #B6E8C4; }

  .news-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray-text);
    min-width: 0;
    word-break: break-all;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .news-arrow { font-size: 16px; color: var(--pink-main); opacity: 0; transition: opacity 0.2s, transform 0.2s; transform: translateX(-4px); }
  .news-item:hover .news-arrow { opacity: 1; transform: translateX(0); }

  @media (max-width: 640px) {
    .news-item {
      grid-template-columns: 1fr 24px;
      grid-template-rows: auto auto;
      gap: 4px 8px;
      padding: 16px 4px;
    }
    .news-meta { grid-column: 1; grid-row: 1; }
    .news-text { grid-column: 1; grid-row: 2; font-size: 14px; line-height: 1.7; }
    .news-arrow { grid-column: 2; grid-row: 1 / 3; align-self: center; opacity: 1; }
  }
