

/* CARD */
.cdsco-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.cdsco-title {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 25px;
  text-align:center;
}



/* FLOAT IMAGE BLOCK */
.cdsco-float {
  float: left;
  width: 220px;
  margin-right: 25px;
  margin-bottom: 15px;
  text-align: center;
}

/* IMAGE */
.cdsco-float img {
  width: 100%;
  max-width: 180px;
  margin-bottom: 10px;
}

/* BUTTON */
.cdsco-float {
  float: right;
  width: 220px;
  margin: 0 0 20px 25px;
  text-align: center;
  position: relative;
  z-index: 10; /* IMPORTANT */
}

.cdsco-float img {
  width: 100%;
  margin-bottom: 15px;
  display: block;
}

.cdsco-btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--primary-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  z-index: 20; /* 🔥 higher than other elements */
  cursor: pointer;
}

.cdsco-btn:hover {
  background: var(--accent-red);
}

/* FIX OVERLAP ISSUES */
.cdsco-content {
  position: relative;
  z-index: 1;
}

/* CONTENT */
.cdsco-content p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

/* SUBTITLE */
.cdsco-subtitle {
  color: var(--primary-blue);
  margin-top: 20px;
  font-weight: 700;
}

/* LIST */
.cdsco-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.cdsco-list li {
  margin-bottom: 8px;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .cdsco-float {
    float: none;
    width: 100%;
    margin: 0 auto 20px;
  }

  .cdsco-float img {
    max-width: 150px;
  }

}