/* =========================================
   WOUND CARE: ADVANCED THERAPIES SECTION
   ========================================= */

.paragraph--type--therapies {
    padding-bottom: 3rem;
    background-color: #f7fafb;
}

/* Hide Technical Labels */
.paragraph--type--therapies .field__label,
.paragraph--type--list-therapies .field__label {
    display: none !important;
}

/* Grid Container */
.field--name-field-list-therapies-section .field__items {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Therapy Card */
.paragraph--type--list-therapies {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.paragraph--type--list-therapies:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Teal Tag/Badge (e.g., DEBRIDEMENT) */
.field--name-field-tag-therapy-list {
    display: inline-block;
    background: #e6f4f1;
    color: #3d8b7a;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    width: fit-content;
}

/* Therapy Title */
.field--name-field-title-therapy-list {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Therapy Description */
.field--name-field-description-therapy-list p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Custom Bullet List */
.field--name-field-list-detail-therpy-se-u ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.field--name-field-list-detail-therpy-se-u li {
    font-size: 15px;
    color: #475569;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}
@media (max-width: 1100px) {
    .field--name-field-list-therapies-section .field__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .field--name-field-list-therapies-section .field__items {
        grid-template-columns: 1fr;
    }

    .paragraph--type--therapies {
        padding: 60px 0;
    }
}