.veja-tambem-widget .section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}
.veja-tambem-widget .section__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.3px;
  margin: 0;
}
.veja-tambem-widget .section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 8px;
}
.veja-tambem-widget .vt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.veja-tambem-widget .article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.veja-tambem-widget .article-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.veja-tambem-widget .article-card__cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.veja-tambem-widget .article-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
}
.veja-tambem-widget .article-card__excerpt {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}
.veja-tambem-widget .article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: auto;
}