/* Styling untuk berita di sisi kanan */
.side-news-container {
  background: #f8f9fa;
  padding: 20px;
  height: 100%;
}

/* Styling untuk tab */
.side-news-tabs {
  border-bottom: 2px solid #dee2e6;
  margin-bottom: 15px;
}

.side-news-tabs .nav-link {
  color: #6c757d;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.side-news-tabs .nav-link.active {
  color: #3498db;
  border-bottom: 2px solid #3498db;
  background: transparent;
}

.side-news-tabs .nav-link:hover {
  color: #3498db;
  border-bottom: 2px solid #3498db;
}

.side-news-tab-content {
  margin-top: 15px;
}

.side-news-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.side-news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.side-news-item a {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
}

.side-news-image {
  flex: 0 0 80px;
  margin-right: 12px;
}

.side-news-image img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

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

.side-news-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.side-news-meta {
  font-size: 0.8rem;
  color: #6c757d;
}

.side-news-item:hover .side-news-title {
  color: #3498db;
}

.side-news-item:hover {
  transition: all 0.3s ease;
}

.announcement-list {
  margin-top: 15px;
}