.card-aihot .card-content {
  position: relative;
}

.aihot-headline {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px !important;
}

.aihot-headline > i {
  color: var(--scene-cream);
}

.aihot-window {
  margin-left: auto;
  padding: 3px 8px;
  border: 1px solid rgba(232, 214, 164, 0.42);
  border-radius: 999px;
  background: rgba(223, 127, 98, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

#aihot-container {
  min-height: 180px;
}

.aihot-list {
  display: grid;
  gap: 4px;
}

.aihot-item {
  position: relative;
  padding: 10px 8px 10px 22px;
  border-radius: 12px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.aihot-item::before {
  position: absolute;
  top: 17px;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--scene-mint);
  box-shadow: 0 0 0 4px rgba(155, 201, 172, 0.14);
  content: '';
}

.aihot-item:hover {
  background: rgba(155, 201, 172, 0.14);
  transform: translateX(2px);
}

.aihot-featured {
  margin-bottom: 5px;
  padding: 14px;
  border: 1px solid rgba(232, 214, 164, 0.34);
  background: linear-gradient(135deg, rgba(22, 59, 56, 0.38), rgba(63, 116, 108, 0.24));
}

.aihot-featured::before {
  display: none;
}

#aside-content .card-aihot .aihot-title {
  display: -webkit-box;
  overflow: hidden;
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.48;
  text-shadow: 0 1px 4px rgba(22, 59, 56, 0.78);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#aside-content .card-aihot .aihot-title:hover {
  color: var(--scene-cream) !important;
}

.aihot-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.4;
}

.aihot-origin {
  overflow: hidden;
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aihot-score {
  flex: none;
  color: var(--scene-cream);
  font-weight: 700;
}

.aihot-reason {
  display: -webkit-box;
  overflow: hidden;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.58;
  text-shadow: 0 1px 3px rgba(22, 59, 56, 0.72);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.aihot-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(232, 214, 164, 0.22);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

#aside-content .card-aihot .aihot-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--scene-cream) !important;
  font-weight: 700;
}

.aihot-skeleton {
  display: grid;
  gap: 10px;
}

.aihot-skeleton span {
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(155, 201, 172, 0.1), rgba(232, 214, 164, 0.22), rgba(155, 201, 172, 0.1));
  background-size: 220% 100%;
  animation: aihot-loading 1.4s ease-in-out infinite;
}

#aside-content .card-aihot .aihot-error {
  display: grid;
  min-height: 180px;
  place-items: center;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.76rem;
  text-align: center;
}

@keyframes aihot-loading {
  to { background-position: -220% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .aihot-item,
  .aihot-skeleton span {
    transition: none;
    animation: none;
  }
}
