.program-card-d {
  display: flex;
  align-items: center;
  background-color: #1f2123;
  color: white;
  padding: 20px 30px;
  height: 50px;
  border-radius: 50px;
  width: fit-content;
  width: 440px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.diamond-badge {
  width: 48px;
  height: 48px;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 34px;
  border-radius: 12px;
  transform: rotate(45deg);
  margin-right: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.diamond-badge span {
  transform: rotate(-45deg);
}

.program-card-d .text-content {
  display: flex;
  flex-direction: column;
}

.program-card-d .title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.program-card-d .description {
  font-size: 14px;
  color: #ccc;
}
