/* Admin styles */
.kira-featured-toggle {
  text-decoration: none;
  color: #ccc;
  display: inline-block;
  transition: all 0.2s;
}

.kira-featured-toggle:hover,
.kira-featured-toggle.active {
  color: #ffb900;
}

.kira-featured-toggle .dashicons {
  font-size: 20px;
  width: 20px;
  height: 20px;
}

/* Widget styles matching theme */
.kira-featured-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.kira-featured-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.kira-featured-item:hover {
  transform: translateX(5px);
}

.kira-featured-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.kira-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.kira-featured-item:hover .kira-featured-thumb img {
  transform: scale(1.1);
}

.kira-featured-info {
  flex: 1;
}

.kira-featured-info h6 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-weight: 600;
}

.kira-featured-info h6 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kira-featured-info h6 a:hover {
  color: #2C5F7C;
}

.kira-featured-date {
  color: #888;
  font-size: 0.85rem;
}

.kira-featured-date i {
  color: #C38D5F;
  margin-right: 0.3rem;
}