.cpd-wrapper {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #ccc;
  font-family: sans-serif;
}

.cpd-layout {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cpd-left {
  flex: 0 0 40%;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.cpd-img {
  width: 150px;
  border: 1px solid #ccc;
}

.cpd-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cpd-price {
  font-size: 18px;
  font-weight: bold;
}

.cpd-price.disabled {
  color: gray;
  font-style: italic;
}

.cpd-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cpd-btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  text-align: center;
}

.cpd-btn.green {
  background-color: #8bc34a;
  color: #fff;
}

.cpd-right {
  flex: 1;
}

.cpd-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.cpd-description {
  font-size: 15px;
  line-height: 1.6;
}

.cpd-description a {
  color: #0073aa;
  text-decoration: underline;
}

.cpd-note {
  font-size: 14px;
  color: #999;
  font-style: italic;
}