.jkc-linkedin-feed {
  /* margin: 40px 0; */
}

/* .jkc-linkedin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.jkc-linkedin-header h3 {
  font-weight: 700;
  font-size: 2rem;
  margin: 0;
} */

.jkc-li-btn {
  background: #282d3b;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jkc-linkedin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* .jkc-linkedin-card {
  background: #f8f9fa;
  border-radius: 15px 15px 15px 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
} */

.jkc-li-top {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
}

.jkc-li-icon svg {
  width: 30px;
  height: 30px;
  fill: #e4002b;
}

.jkc-li-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.jkc-li-meta strong {
  font-size: 0.9rem;
  color: #333;
}

.jkc-li-time {
  font-size: 0.75rem;
  color: #999;
}

.jkc-li-image-wrap {
  width: 100%;
  overflow: hidden;
}

.jkc-li-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.jkc-linkedin-card:hover .jkc-li-image-wrap img {
  transform: scale(1.05);
}

.jkc-li-content {
  padding: 15px;
  font-size: 0.9rem;
  color: #666;
  flex-grow: 1;
}

.jkc-li-footer {
  padding: 10px 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #666;
}

.jkc-li-link {
  color: #2867b2; /* LinkedIn Blue */
  text-decoration: none;
  font-size: 1.2rem;
}

/* ... existing styles ... */

/* Remove Grid, use Flex for Carousel */
.jkc-linkedin-track {
  display: flex;
  gap: 24px; /* Matches JS gap */
  width: max-content; /* Allow track to stretch */
  cursor: grab;
}

.jkc-linkedin-track:active {
  cursor: grabbing;
}

/* Pagination Dots */
.jkc-linkedin-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.jkc-linkedin-dots button.active {
  background: #e6b839; /* Brand Red */
  transform: scale(1.2);
}
