
    /* Card container */
.tt-tour-card {
  background: #fff;
  padding: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 12px;
}

/* TITLE + PLANE */
.tt-tour-title-wrap {
  display: flex;
}

.tt-tour-title {
  position: relative;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color:#da4343;
}

.tt-tour-title-text {
  /* white-space: nowrap; */
	color: #333333;
}

.tt-tour-plane {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
}

.tt-plane-rope {
  display: inline-block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #ffc8a1, #ff6b1a);
  transform-origin: left center;
  animation: ropeStretch 0.7s ease-in-out infinite;

}

.tt-plane-icon {
  display: inline-block;
  margin-left: 6px;
  font-size: 20px;
  color: #ff6b1a;
  animation: planeFly 0.7s ease-in-out infinite;
}

.tt-tour-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
}

.tt-tour-list li {
  position: relative;
  padding: 8px 12px 8px 44px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: #f7f8ff;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease,
              box-shadow 0.2s ease;
}


/* Gradient circle = “go to” icon */
.tt-tour-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a3c, #ff3b6a);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%);   /* ✅ keep circle centered, even on 2 lines */
}

/* Arrow inside the circle – now pointing DOWN */
.tt-tour-list li::after {
  content: "▾";  /* or "⌄", "↓", "⯆" – pick what you like */
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #fff;
}


/* Hover state to feel clickable */
.tt-tour-list li:hover {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}
.tt-tour-list li strong{
  margin-right: 5px;
}

@keyframes planeFly {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(8px); }
  100% { transform: translateX(0); }
}

@keyframes ropeStretch {
  0%   { transform: scaleX(1); }
  50%  { transform: scaleX(1.12); }
  100% { transform: scaleX(1); }
}

/* TEXT + READ MORE + FADE */

/* Wrapper that controls visible height */
.tt-tour-text-wrap {
  position: relative;
  max-height: 150px;      /* show only first 100px */
  overflow: hidden;
}

/* Fading overlay – covers text + button and fades UPWARD */
.tt-tour-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(
    to top,
    #fff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;   /* button still clickable */
}

/* When expanded, remove height restriction & gradient */
.tt-tour-text-wrap.is-expanded {
  max-height: none;
}

.tt-tour-text-wrap.is-expanded .tt-tour-gradient {
  display: none;
}

.tt-tour-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.tt-tour-footer {
  display: flex;
  justify-content: flex-end;
}

.tt-readmore-btn, .tt-readless-btn {
  border: none;
  background: none;
  color: #ff3636;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}
.tt-readless-btn{
 display: none;
}

@media (max-width: 576px) {
  .tt-tour-title-text {
    font-size: 22px;
    white-space: normal;
  }
}
 