#li-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #f5f2ee;
  border-radius: 8px;
}

/* Navbar */
#li-navbar {
  grid-column: 1 / -1;
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.li-logo {
  font-size: 28px;
  font-weight: bold;
  color: #0a66c2;
}

.li-search {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #eef3f8;
}

.li-nav-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
  color: #666;
  font-size: 12px;
}

/* Cards */
.li-card {
  background: white;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e0e0e0;
}

/* Profile sidebar */
#li-profile {
  text-align: center;
}

.li-banner {
  height: 60px;
  background: linear-gradient(135deg, #f0a500, #0a66c2);
  border-radius: 8px 8px 0 0;
  margin: -16px -16px 12px -16px;
}

.li-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-top: -40px;
  border: 3px solid white;
  background: #ccc;
}

#li-profile h2 {
  margin: 8px 0 4px;
  font-size: 16px;
}

#li-profile p {
  margin: 2px 0;
  font-size: 12px;
  color: #666;
}

.li-company {
  margin-top: 8px !important;
  font-weight: 600;
  color: #333 !important;
}

/* Feed */
#li-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.li-post h3 {
  margin: 8px 0 4px;
  font-size: 15px;
}

.li-post p {
  margin: 4px 0;
}

.li-date {
  color: #666;
  font-size: 12px;
}

.li-company{
  color: #666;
  font-size: 12px;
}

.li-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.li-post-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
}

.li-post-header span {
  color: #999;
  font-size: 12px;
}

/* News sidebar */
#li-news h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.li-news-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.li-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.li-news-list li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}

.li-view-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0a66c2;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.li-view-btn:hover {
  background-color: #004182;
}