.fob-events-list {
  display: grid;
  gap: 20px;
}
@keyframes fob-skeleton-loading {
  0% {
    background-color: #ededed;
  }
  100% {
    background-color: #dcdcdc;
  }
}
.fob-events-list .fob-skeleton-card .fob-skeleton-image {
  width: 100%;
  height: 250px;
  background: #ededed;
  border-radius: 12px;
  animation: fob-skeleton-loading 1s linear infinite alternate;
}
.fob-events-list .fob-skeleton-card .fob-skeleton-text {
  height: 14px;
  background: #ededed;
  border-radius: 4px;
  animation: fob-skeleton-loading 1s linear infinite alternate;
}
.fob-events-list .fob-skeleton-card .fob-skeleton-title {
  height: 24px;
  background: #ededed;
  border-radius: 4px;
  margin-bottom: 15px;
  width: 80%;
  animation: fob-skeleton-loading 1s linear infinite alternate;
}
.fob-events-list .fob-skeleton-card .fob-skeleton-button {
  height: 30px;
  width: 100px;
  background: #ededed;
  border-radius: 4px;
  animation: fob-skeleton-loading 1s linear infinite alternate;
}
.fob-events-list .fob-skeleton-card:nth-child(2) .fob-skeleton-image, .fob-events-list .fob-skeleton-card:nth-child(2) .fob-skeleton-text, .fob-events-list .fob-skeleton-card:nth-child(2) .fob-skeleton-title, .fob-events-list .fob-skeleton-card:nth-child(2) .fob-skeleton-button {
  animation-delay: 0.2s;
}
.fob-events-list .fob-skeleton-card:nth-child(3) .fob-skeleton-image, .fob-events-list .fob-skeleton-card:nth-child(3) .fob-skeleton-text, .fob-events-list .fob-skeleton-card:nth-child(3) .fob-skeleton-title, .fob-events-list .fob-skeleton-card:nth-child(3) .fob-skeleton-button {
  animation-delay: 0.4s;
}
.fob-events-list .fob-skeleton-card:nth-child(4) .fob-skeleton-image, .fob-events-list .fob-skeleton-card:nth-child(4) .fob-skeleton-text, .fob-events-list .fob-skeleton-card:nth-child(4) .fob-skeleton-title, .fob-events-list .fob-skeleton-card:nth-child(4) .fob-skeleton-button {
  animation-delay: 0.6s;
}
.fob-events-list.fob-cols-1 {
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}
.fob-events-list.fob-cols-2 {
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
}
.fob-events-list.fob-cols-3 {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.fob-events-list.fob-cols-4 {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
.fob-events-list .fob-event-image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.fob-events-list .fob-event-title {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 51px;
}
.fob-events-list i {
  color: var(--e-global-color-primary);
}
.fob-events-list .fob-event-date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.8;
}
.fob-events-list .fob-event-location {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.8;
}
.fob-events-list .fob-event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
}
.fob-events-list .fob-guest-count {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ef4444;
  padding: 6px 12px;
  border-radius: 0 12px 0 0;
  color: #fff;
}
.fob-events-list .fob-event-image {
  position: relative;
  display: flex;
}
.fob-events-list .fob-event-content {
  padding: 12px;
}
.fob-events-list .fob-event-footer a {
  color: #ef4444;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  padding: 0;
}
.fob-events-list .fob-event-footer a i {
  color: #ef4444;
  font-size: 14px;
}
.fob-events-list .fob-event-footer a:hover {
  text-decoration: underline;
}
.fob-events-list .fob-event-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.fob-events-list .fob-event-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}