.ec-live-tours {
  max-width: 1180px;
  margin: 0 auto 64px;
  padding: 0 22px;
}
.ec-live-tours-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.ec-live-tours-head span {
  display: block;
  color: #c9470b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ec-live-tours-head h2 {
  margin: 8px 0 7px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.035em;
}
.ec-live-tours-head p {
  margin: 0;
  color: #66717e;
  line-height: 1.65;
}
.ec-live-tours-head > a {
  flex: 0 0 auto;
  color: #c9470b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.ec-live-tour-status {
  min-height: 22px;
  margin-bottom: 12px;
  color: #66717e;
  font-size: 13px;
}
.ec-live-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.ec-live-tour-card {
  overflow: hidden;
  border: 1px solid #e5e8ec;
  border-radius: 8px;
  background: #fff;
  color: #18202a;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(18, 30, 44, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ec-live-tour-card:hover {
  transform: translateY(-3px);
  border-color: #f26722;
  box-shadow: 0 16px 38px rgba(18, 30, 44, .11);
}
.ec-live-tour-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f5f6;
}
.ec-live-tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ec-live-tour-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff1e8, #f4f5f6);
  color: #f26722;
  font-size: 38px;
  font-weight: 900;
}
.ec-live-tour-image > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(20, 26, 33, .82);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.ec-live-tour-body {
  padding: 17px;
}
.ec-live-tour-body small {
  display: block;
  min-height: 18px;
  color: #c9470b;
  font-size: 12px;
  font-weight: 800;
}
.ec-live-tour-body h3 {
  min-height: 50px;
  margin: 8px 0 16px;
  font-size: 18px;
  line-height: 1.38;
}
.ec-live-tour-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid #eceef1;
}
.ec-live-tour-bottom strong {
  font-size: 15px;
}
.ec-live-tour-bottom span {
  color: #c9470b;
  font-size: 13px;
  font-weight: 800;
}
.ec-live-tour-loader,
.ec-live-tour-empty {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid #e5e8ec;
  border-radius: 8px;
  background: #f7f8fa;
  color: #66717e;
  text-align: center;
}
.ec-live-tour-empty strong {
  display: block;
  margin-bottom: 8px;
  color: #18202a;
  font-size: 20px;
}
.ec-live-tour-empty p {
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.65;
}
.ec-live-tour-empty a {
  display: inline-flex;
  padding: 11px 15px;
  border-radius: 6px;
  background: #f26722;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 900px) {
  .ec-live-tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .ec-live-tours-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .ec-live-tour-grid {
    grid-template-columns: 1fr;
  }
}
