/* Spine Treatment Card Widget Styles */

.treatment-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e6edf2;
    border-radius: 14px;
    padding: 26px 22px 14px;
    min-height: 268px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    border-color: #b7835e;
    background: #FDFAF7;
    box-shadow: 0 14px 35px rgba(28, 43, 56, 0.08);
    transform: translateY(-3px);
}

.treatment-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 54px;
    height: 2px;
    background: #b7835e;
}

.treatment-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 18px;
    color: #dde8ef;
    font-weight: 400;
}

.treatment-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #1d2b38;
    margin-bottom: 4px;
    margin: 0 0 4px 0;
}

.treatment-subtitle {
    font-size: 11px;
    color: #b7835e;
    margin-bottom: 12px;
    margin: 0 0 12px 0;
}

.treatment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 17px;
    padding: 0 12px;
    border-radius: 50px;
    background: #eef4f7;
    color: #435768;
    font-size: 8px;
    margin-bottom: 26px;
}

.treatment-description {
    font-size: 12px;
    line-height: 1.55;
    color: #33495c;
    max-width: 300px;
    margin-bottom: 14px;
    margin: 0 0 14px 0;
}

.treatment-tags {
    font-size: 9px;
    line-height: 1.5;
    color: #7e9aad;
    margin-bottom: 60px;
    margin: 0 0 60px 0;
}

.treatment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    background: #071826;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.treatment-button:hover {
    background: #b7835e;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {
    .treatment-card {
        padding: 20px 16px 12px;
        min-height: auto;
    }

    .treatment-number {
        top: 14px;
        right: 16px;
        font-size: 16px;
    }

    .treatment-title {
        font-size: 16px;
    }

    .treatment-description {
        max-width: 100%;
    }

    .treatment-tags {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .treatment-card {
        padding: 18px 14px 12px;
    }

    .treatment-title {
        font-size: 15px;
    }

    .treatment-badge {
        min-width: 70px;
        font-size: 7px;
    }
}
