        /* News Article */
        .news-article {
          padding: 0;

        }

        .news-article--wrapper {
          display: flex;
          gap: 50px;
        }

        @media screen and (max-width: 768px) {}

        .article-header {
          text-align: center;
          margin-bottom: 40px;
        }

        .article-title {
          font-size: 2.5rem;
          color: #1a1a1a;
          margin-bottom: 20px;
          line-height: 1.2;
          text-align: start;
        }

        .article-meta {
          color: #666;
          font-size: 1rem;
          margin-bottom: 30px;
          text-align: start;
        }

        .article-image img {
          background-color: #d1d1d1;
          height: 400px;
          border-radius: 12px;
          margin: 30px auto;
          max-width: 800px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #666;
          font-style: italic;
        }

        .article-content {
          max-width: 800px;
          margin: 0 auto;
          line-height: 1.8;
          font-size: 1.1rem;
          text-align: center;
        }

        .article-content p {
          text-align: start;
        }

        .schedule {
          background-color: white;
          border-radius: 12px;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
          padding: 40px;
          margin: 40px auto;
          max-width: 800px;
          text-align: left;
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;
        }

        .schedule-title {
          color: #1fc602;
          font-size: 1.5rem;
          margin-bottom: 20px;
          text-align: center;
        }

        .city-schedule {
          margin-bottom: 30px;
          padding-bottom: 20px;
          border-bottom: 1px dashed #e0e0e0;
        }

        .city-name {
          font-weight: 600;
          color: #1fc602;
          font-size: 1.3rem;
          margin-bottom: 10px;
        }

        .work-hours {
          font-size: 1.1rem;
          line-height: 2;
        }

        .highlight {
          color: #1fc602;
          font-weight: 600;
        }

        .holiday-info {
          text-align: center;
          font-weight: 600;
          color: #1fc602;
          margin: 20px 0;
          font-size: 1.2rem;
        }

        .greeting {
          text-align: center;
          font-style: italic;
          color: #1fc602;
          margin-top: 30px;
          font-size: 1.1rem;
        }

        /* Footer */
        footer {
          background-color: #1fc602;
          color: white;
          padding: 40px 0;
          text-align: center;
        }

        .footer-content {
          max-width: 600px;
          margin: 0 auto;
        }

        .contact-info {
          margin: 20px 0;
          line-height: 1.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
          .article-title {
            font-size: 2rem;
          }

          .schedule {
            /* padding: 25px; */
            grid-template-columns: repeat(1, 1fr);
          }

 */

          .news-article--wrapper {
            flex-direction: column;
          }

          .schedule {}
        }