/* Patient Card Section Styles */
.page-template-page-deflatehae-patient .patient-card-section-wrapper {
    position: absolute;
    padding: 0;
    z-index: 10;
    max-width: 1194px;
    width: 100%;
    margin: -250px auto 0;
    left: 50%;
    transform: translateX(-50%);
}

.page-template-page-deflatehae-patient .patient-card-shadow-wrapper {
    position: relative;
    max-width: 1194px;
    margin: 0 auto;
    filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.25));
}

.page-template-page-deflatehae-patient .patient-card-container {
    position: relative;
    background-color: var(--color-white);
    width: 100%;
    padding: 80px 40px;
    clip-path: var(--clip-path-smooth-bowl);
}

.page-template-page-deflatehae-patient .patient-card-heading {
    text-align: center;
    font-size: var(--font-size-patient-card-heading);
    line-height: var(--font-lh-patient-card-heading);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-template-page-deflatehae-patient .patient-card-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.page-template-page-deflatehae-patient .patient-card-column {
    flex: 1;
    text-align: center;
    position: relative;
}

/* Add divider lines between columns */
.page-template-page-deflatehae-patient .patient-card-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--color-nav-gray);
}

.page-template-page-deflatehae-patient .patient-card-icon {
    width: 147px;
    height: 147px;
    margin: 0 auto 20px;
}

.page-template-page-deflatehae-patient .patient-card-title {
    font-size: 26px;
    line-height: 50px;
    font-weight: 700;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.page-template-page-deflatehae-patient .patient-card-text {
    font-size: var(--font-size-body-text);
    line-height: var(--font-lh-body-text);
    margin: 0;
}

.page-template-page-deflatehae-patient .patient-card-divider {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    color: var(--color-blue);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .page-template-page-deflatehae-patient .patient-card-section-wrapper {
        padding: 0 40px;
        margin-top: -215px;
    }

    .page-template-page-deflatehae-patient .patient-card-container {
        padding: 60px 30px;
    }

    .page-template-page-deflatehae-patient .patient-card-icon {
        width: 120px;
        height: 120px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .page-template-page-deflatehae-patient .patient-card-section-wrapper {
        margin-top: -475px;
        padding: 0 35px;
    }
    .page-template-page-deflatehae-patient .patient-card-container {
        padding: 40px 20px;
        clip-path: var(--clip-path-mobile-bowl);
    }

    .page-template-page-deflatehae-patient .patient-card-columns {
        flex-direction: column;
        gap: 40px;
    }

    .page-template-page-deflatehae-patient .patient-card-column {
        position: relative;
        padding-bottom: 0;
    }

    .page-template-page-deflatehae-patient .patient-card-column:last-child {
        padding-bottom: 0;
    }

    .page-template-page-deflatehae-patient .patient-card-column .patient-card-divider {
        display: block;
        width: 180px;
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
        top: 190px;
    }

    .page-template-page-deflatehae-patient .patient-card-column:not(:last-child)::after {
        display: none;
    }

    .page-template-page-deflatehae-patient .patient-card-heading {
        margin-bottom: 30px;
    }

    .page-template-page-deflatehae-patient .patient-card-title {
        font-size: 26px;
        line-height: 50px;
    }
} 