.news-page {
  background-color: #f3f3f3;
  min-height: 100vh;
  padding: 160px 30px;
}

.news-header {
  max-width: 900px;
  margin-bottom: 40px;
}

.news-label {
  color: red;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.news-title {
  font-size: 56px;
  font-weight: 400;
  color: #6a7380;
  margin-bottom: 20px;
  line-height: 1.2;
}

.news-intro {
  font-size: 20px;
  line-height: 1.8;
  color: #6a7380;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.news-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 22px;
}

.news-card-date {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 12px;
}

.news-card-title {
  font-size: 24px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
  margin-bottom: 14px;
}

.news-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 18px;
}

.news-card-readmore {
  display: inline-block;
  color: red;
  font-size: 15px;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 1024px) {
  .news-page {
    padding: 50px 24px;
  }

  .news-title {
    font-size: 44px;
  }

  .news-intro {
    font-size: 18px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .news-page {
    padding: 35px 16px;
  }

  .news-label {
    font-size: 16px;
  }

  .news-title {
    font-size: 32px;
  }

  .news-intro {
    font-size: 16px;
    line-height: 1.7;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card-image {
    height: 220px;
  }

  .news-card-title {
    font-size: 22px;
  }

  .news-card-text {
    font-size: 15px;
  }
}
/* ===== Professional News Responsive Override ===== */

.news-page {
  padding: 80px 30px 60px;
}

@media (max-width: 1024px) {
  .news-page {
    padding: 60px 24px 45px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-page {
    padding: 40px 16px 35px;
  }

  .news-title {
    font-size: 32px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-text {
    text-align: left;
  }
}