
/* Container styling */
.therapy-card.disabled {
  opacity: 0.6;               /* Visually gray out the component */
  pointer-events: none;       /* Prevent any mouse interactions */
  cursor: not-allowed;        /* Show a 'not allowed' cursor */
}

.therapy-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border-color);
    margin: 2rem auto;
    font-family: sans-serif;
}

/* Top section with colored background & illustration */
.therapy-card-illustration {
  background: linear-gradient(90deg, #f7f7f4, #73b5b578 80%);
  text-align: center;
  padding: 1.5rem 1rem;
}

/* Ensure the illustration scales properly */
.therapy-card-illustration img {
  max-width: 120px;
  height: auto;
}

/* Bottom content section */
.therapy-card-content {
  padding: 1.2rem;
}

/* Headline styling */
.therapy-card-content h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Paragraph styling */
.therapy-card-content p {
  margin-bottom: 1.25rem;
  line-height: 1.4;
  color: #333333;
}

/* Button styling */
.therapy-button {
    display: flex; /* Use flexbox for centering */
    align-items: center; /* Vertically center text */
    justify-content: center; /* Horizontally center text */
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    width: 100%;
    text-align: center; /* Ensure text aligns */
}


.therapy-button:hover,
.therapy-button:focus,
.therapy-button:active {
  opacity: 0.9;
    color: #ffffff; /* Keep the text color white */
    text-decoration: none; /* Ensure no underline appears */
}
