/* Top Disclaimer - Join In */
.syw-disclaimer-top {
    font-size: 0.95em;
    color: #444;
    background: #fafafa;
    padding: 12px 18px;
    border-left: 4px solid #ff7a00; /* Join In orange */
    margin-bottom: 22px;
    border-radius: 6px;
    line-height: 1.5;
}

/* Bottom Disclaimer - Join In */
.syw-disclaimer-bottom {
    font-size: 1em;
    color: #222;
    background: #f7f7f7;
    padding: 18px 22px;
    border-left: 4px solid #ff7a00;
    margin-top: 28px;
    line-height: 1.6;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.syw-disclaimer-bottom a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.syw-disclaimer-bottom a:hover {
    color: #ff7a00;
}

/* Responsive */
@media (max-width: 768px) {
    .syw-disclaimer-top,
    .syw-disclaimer-bottom {
        font-size: 0.95em;
        padding: 14px 16px;
    }
}

.listing-packages-wrapper-single {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 1rem;
  overflow: hidden;  /* ensures rounded corners */
  margin: 2rem 0;
}

/* Individual package sections */
.package-card {
  flex: 1;
  padding: 2rem;
  text-align: center;
  border-right: 1px solid #ddd; /* vertical line between columns */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Remove the border on the last card */
.package-card:last-child {
  border-right: none;
}

/* Launch offer highlight */
.package-launch-offer {
  background: #fff8dc;   /* light cream/yellow */
  color: #256b47;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  margin-top: 1.2rem;
}

/* Price at bottom */
.package-price {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #2a3b2f;
}

/* Responsive */
@media (max-width: 1024px) {
  .listing-packages-wrapper-single {
    flex-direction: column;
  }
  .package-card {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  .package-card:last-child {
    border-bottom: none;
  }
}
/* Equal height boxes with aligned buttons */
.pricing-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
    justify-content: space-between;
}

/* Content area grows */
.pricing-item-header,
.pricing-item-body {
    flex-grow: 0;
}

.pricing-item-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Features list takes available space */
.pricing-item ul,
.pricing-item-features {
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Button stays at bottom */
.pricing-item-footer {
    margin-top: auto;
    padding-top: 20px;
}

/* Ensure button doesn't have competing margins */
.pricing-item .button {
    margin-bottom: 0;
}
/* Target the specific package (e.g., first, second, or third) */
.select-plan.button-2.cts-trigger-buy-new {
    font-size: 0 !important;
}

.select-plan.button-2.cts-trigger-buy-new::before {
    content: "Join the Movement";
    font-size: 16px;
}