
  .plant-news-container {
    width: 100%;
    overflow: hidden;
    background-color: #959C3A;
    border-radius: 35px;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(149, 156, 58, 0.3);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .plant-news-date-fixed {
    background-color: #4A4E1D;
    color: #FFFFFF;
    padding: 0 1.2rem;
    border-radius: 35px 0 0 35px;
    margin-left: 0;
    margin-right: 0;
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  .plant-news-scroll-wrapper {
    overflow: hidden;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  .plant-news-scroll-content {
    display: flex;
    will-change: transform;
  }

  .plant-news-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .plant-news-text {
    color: #FFFFFF;
    white-space: nowrap;
    padding: 0 3rem;
    font-size: 1.2rem;
    font-weight: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    box-sizing: border-box;
  }

  .plant-news-separator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    flex-shrink: 0;
    box-sizing: border-box;
  }

  @media (max-width: 1024px) {
    .plant-news-container { height: 55px; border-radius: 30px; }
    .plant-news-date-fixed { font-size: 1.125rem; }
    .plant-news-text { font-size: 1.125rem; }
  }

  @media (max-width: 768px) {
    .plant-news-container { height: 50px; border-radius: 25px; }
    .plant-news-date-fixed { font-size: 1rem; padding: 0 1rem; }
    .plant-news-text { font-size: 1.125rem; padding: 0 2rem; }
  }

  @media (max-width: 480px) {
    .plant-news-container { height: 45px; border-radius: 22px; }
    .plant-news-date-fixed { font-size: 0.875rem; padding: 0 0.75rem; }
    .plant-news-text { font-size: 1rem; padding: 0 1.5rem; }
  }
