.gh-main-news-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.gh-news-tab {
  background: none;
  border: none;
  font-size: 16px;
  color: #000;
  padding: 8px 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
  font-weight: 600;
}
.gh-news-tab.active {
  color: #0937B1;
  border-bottom: 2px solid #0937B1;
}
.gh-news-tab:hover {
  color: #0937B1;
}
.gh-main-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
}
.gh-main-news-card {
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gh-main-news-thumb img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}
.gh-main-news-card > *:not(.gh-main-news-thumb) {
  padding: 0px 16px;
}
.gh-main-news-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 12px 0 8px 0;
}
.gh-main-news-cat {
  color: #0937B1;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  transform: skew(-23deg);
  background: #f3f4fc;
}
.gh-main-news-cat span {
  display: block;
  transform: skew(23deg);
  padding: 0px 8px;
}
.gh-main-news-date {
  color: #888;
  font-size: 13px;
}
.gh-main-news-title {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gh-main-news-excerpt {
  color: #444;
  font-size: 15px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media(max-width: 1023px) {
  .gh-main-news-tabs {
    gap: 0px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .gh-news-tab {
    width: 48%;
    font-size: 14px;
    padding-bottom: 2px;
  }

  .gh-main-news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
