.afb-imd-list {
  display: grid;
  gap: 10px;
  margin: 15px 0;
}

.afb-imd-item {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  padding: 10px 15px;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease;
}

.afb-imd-item:hover {
  background-color: #e6f0ff;
}

.afb-imd-date {
  position: relative;
  overflow: hidden;
  background: #5875AB;
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  margin-inline-end: 12px;
  text-align: center;
  min-width: 50px;
  user-select: none;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.2);
}

.afb-imd-date::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -150%;
  width: 150%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #E3A332, transparent);
  animation: slideGradient 4s linear infinite;
  border-radius: 4px 4px 0 0;
  pointer-events: none;
}

@keyframes slideGradient {
  0% {
    left: -150%;
  }
  100% {
    left: 100%;
  }
}

.afb-imd-date .day {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.afb-imd-date .month {
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1.1px;
}

.afb-imd-title {
  font-size: 14px;
  color: #333;
}
