/* Styles for Bokun Activities widget */

.bokun-activities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr; /* 1 card per row on mobile */
  gap: 24px;
}

@media (min-width: 768px) {
  .bokun-activities {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on desktop/tablet */
  }
}

.bokun-activity {
  background-color: #151719;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden; /* round image corners */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding-bottom: 10px;
}

.bokun-activity:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.bokun-activity .activity-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f3f3f3;
  overflow: hidden;
}

.bokun-activity .activity-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bokun-activity .activity-title {
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 16px 16px 8px;
  padding-top: 16px;
}

.bokun-activity .activity-title a {
  color: inherit;
  text-decoration: none;
}

.bokun-activity .activity-title a:hover {
  text-decoration: underline;
}

.bokun-activity .activity-description {
  margin: 0 16px 16px;
  color: #555;
  font-size: 0.95rem;
}

.bokun-activity .activity-url {
  margin: auto auto 16px;
}

/* Empty state */
/*.bokun-activities-empty {*/
/*  padding: 12px 16px;*/
/*  background: #fff3cd;*/
/*  border: 1px solid #ffeeba;*/
/*  color: #856404;*/
/*  border-radius: 8px;*/
/*}*/