/* Published Tourist Ready showcase cards. This layer is additive to tourist-ready-mvp.css. */
.touristReadyPage .readyPublishedSection {
  display: grid;
  gap: 24px;
}

.touristReadyPage .readyPublishedGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.touristReadyPage .readyPublishedCard {
  display: grid;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(16, 183, 170, .2);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 61, 72, .09);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.touristReadyPage .readyPublishedCard:hover,
.touristReadyPage .readyPublishedCard:focus-visible {
  transform: translateY(-4px);
  border-color: #10b7aa;
  box-shadow: 0 20px 42px rgba(17, 61, 72, .16);
}

.touristReadyPage .readyPublishedAttractionCard {
  border-color: rgba(185, 127, 34, .28);
  background: #fffdf8;
}

.touristReadyPage .readyPublishedAttractionCard:hover,
.touristReadyPage .readyPublishedAttractionCard:focus-visible {
  border-color: #b97f22;
  box-shadow: 0 20px 42px rgba(117, 76, 18, .14);
}

.touristReadyPage .readyPublishedMedia {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #dff9f6, #f4fbfa);
}

.touristReadyPage .readyPublishedMedia img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.touristReadyPage .readyPublishedMediaFallback {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e4f9f6, #fff);
}

.touristReadyPage .readyPublishedBody {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.touristReadyPage .readyPublishedEyebrow {
  color: #008c85;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.touristReadyPage .readyPublishedAttractionCard .readyPublishedEyebrow {
  color: #8f5f16;
}

.touristReadyPage .readyMerchantCard .readyPublishedEyebrow {
  color: #a7f3d0;
}

.touristReadyPage .readyPublishedBody h3 {
  margin: 0;
  color: #142638;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.35;
}

.touristReadyPage .readyPublishedDescription {
  min-height: 2.8em;
  color: #5e7081;
  line-height: 1.45;
}

.touristReadyPage .readyPublishedAction,
.touristReadyPage .readyPublishedMore {
  color: #008c85;
  font-weight: 800;
}

.touristReadyPage .readyPublishedAction::after,
.touristReadyPage .readyPublishedMore::after {
  content: ' →';
}

.touristReadyPage .readyPublishedMore {
  justify-self: start;
  text-decoration: none;
}

.touristReadyPage .readyPublishedActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.touristReadyPage .readyPublishedActions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #b9dfdb;
  border-radius: 10px;
  text-decoration: none;
}

.touristReadyPage .readyPublishedActions .readyPublishedPlans {
  color: #fff;
  border-color: #008c85;
  background: #008c85;
  font-weight: 800;
}

.touristReadyPage .readyPublishedEmpty {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 24px;
  border: 1px dashed rgba(16, 183, 170, .42);
  border-radius: 20px;
  color: #5e7081;
  text-align: center;
}

.touristReadyPage .readyPublishedSection .readyCategoryFilters {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .touristReadyPage .readyPublishedGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .touristReadyPage .readyPublishedSection {
    gap: 18px;
  }

  .touristReadyPage .readyPublishedGrid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .touristReadyPage .readyPublishedBody {
    padding: 16px;
  }

  .touristReadyPage .readyPublishedActions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .touristReadyPage .readyPublishedActions a {
    width: 100%;
  }
}
