.news-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

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

.news-header h2 {
  font-size: 24px;
  margin: 0;
}

.see-all {
  background: #009688;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.see-all:hover {
  background: #00796b;
}

.news-left {
  background: #f2f8f7;
  padding: 15px;
}

.news-left-img {
  width: 100%;
  border-radius: 6px;
}

.news-left-content {
  margin-top: 10px;
}

.news-left .news-title {
  font-size: 22px;
  font-weight: bold;
}

.news-excerpt {
  margin: 10px 0;
  font-size: 15px;
  color: #333;
}

.news-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-right-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.news-right-img {
  width: 120px;
  border-radius: 4px;
}

.news-right-content {
  flex: 1;
}

.news-cat {
  font-size: 12px;
  text-transform: uppercase;
  color: #00796b;
  font-weight: bold;
}

.news-more {
  display: inline-block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #00796b;
  text-decoration: none;
}

.news-more:hover {
  text-decoration: underline;
}
