/* Patient Support CSS */

/* Global Styles */


h1.heading-section__head {
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    text-align: center;
    letter-spacing: 0.4px;
    color: #193965;
    margin: 75px 0 30px;
}

.heading-section__links-container {
    max-width: 938px;
    margin: 0 auto;
}

.heading-section__links-wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1132px;
    margin: 0 auto;
    gap: 32px;
}


.heading-section__links {
    width: 100%;
    background: #193965;
    padding: 60px 0;
}

p.heading-section__links-copy {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    /*text-align: center;*/
    margin: 0 0 35px;
}

p.heading-section__links-link {
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    text-align: center;
    color: #193965;
    background: #CCDDF1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.heading-section__links ul.bullet-list{
    margin: 0;
    padding-left: 28px;
}
.heading-section__links ul.bullet-list li{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
}

.content-section {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

h2.content-section__head {
    font-size: 30px;
    font-weight: 800;
    color: #193965;
    line-height: 38px;
    text-align: center;
    margin: 50px 0 30px;
    display: none;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 453px);
    gap: 32px 40px;
    justify-items: center;
    justify-content: center;
    margin: 80px 0 50px;
}

.resources-grid__card {
    display: flex;
    flex-direction: column;
    width: 453px;
    height: 432px;
    padding: 40px;
    background: #E2ECF7;
}

.resources-grid__card-image {
    width: 120px;
    height: 120px;
    align-self: center;
    margin: 0 0 32px;
    display: flex;
    justify-content: center;
}

.resources-grid__card-image img {
    max-height: 120px;
}

.resources-grid__card-title h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.24px;
    text-align: center;
    color: #193965;
    margin: 0 0 6px;
}

.resources-grid__card-copy p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #333;
    margin: 0 0 25px;
}

.resources-grid__card-cta {
    display: flex;
    background: #1B66F5;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 8px 24px;
    width: fit-content;
    margin: 0 auto;
    transition: 150ms;
    margin-top: auto;
    cursor: pointer;
}

a.resources-grid__card-cta-link {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    gap: 16px;
}
.resources-grid__card-cta:hover{
    background-color: #1741B6;
}
span.resources-grid__cta-icon img {
    width: 24px;
    height: 24px;
}
span.resources-grid__cta-icon img.arrow-icon{
    position: relative;
    top: -2px;
    transition: transform 150ms;
}
.resources-grid__card-cta:hover span.resources-grid__cta-icon img.arrow-icon{
    left: 8px;
}
.resources-grid__card.resources-grid__card--full-width {
    flex-direction: row;
    align-items: flex-start;
    grid-column: span 2;
    width: 100%;
    height: 234px;
    gap: 32px;
}

.resources_gird__card--wide-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.resources-grid__card--full-width.resources-grid__card-image {
    align-self: flex-start;
}

.resources-grid__card--full-width .resources-grid__card-title h3 {
    line-height: 1;
    margin: 0 0 6px;
}


.resources-grid__card--full-width .resources-grid__card-copy p {
    text-align: left;
    margin: 0 0 27px;
}

.resources_gird__card--wide-column .resources-grid__card-cta {
    margin: 0 0 28px;
    width: 200px;
}

/* Desktop Only Styles */

/* Mobile Only Styles */

@media screen and (max-width: 997px) {

    .heading-section__links-container {
        max-width: 100%;
        margin: 0px 10px 0 15px;
    }


    h1.heading-section__head {
        font-size: 30px;
        letter-spacing: 0.3px;
        line-height: 34px;
        /* margin: 35px 0 35px; */
    }
    
    .resources-grid {
        display: flex;
        flex-direction: column;
        column-gap: 32px;
        margin: 0 15px;
        padding: 65px 0 65px;
    }
    .resources-grid__card {
        width: 100%;
        height: auto;
    }

    .heading-section__links-wrap {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    p.heading-section__links-copy {
        font-weight: 400;
        padding-right: 5px;
    }

    h2.content-section__head {
        font-size: 26px;
        line-height: 32px;
        letter-spacing: 0.52px;
    	padding: 0 20px;
    }

    .resources-grid__card-title h3 {
        letter-spacing: -0.1px;
    }

    .resources-grid__card.resources-grid__card--full-width {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: auto;
        padding:40px 31px;
        gap: 0;
    }

    .resources-grid__card--full-width .resources-grid__card-copy p {
        text-align: center;
        margin: 0 0 27px;
    }

    .resources_gird__card--wide-column .resources-grid__card-cta {
        margin: 0 auto;
        width: 200px;
    }

    .resources-grid__card-cta {
        white-space: nowrap;
        padding: 8px 20px;
    }

    .nowrap-cta {
        /* width: auto; */
        margin: 0px auto;
        white-space: nowrap;
    }

	.resources_gird__card--wide-column{
		    align-items: center;
            margin: 0 auto;
    }

    p.heading-section__links-link {
        padding: 16px 5px;
    }

}

@media screen and (max-width: 991px) {
    h1.heading-section__head{
        margin: 35px 0 35px;
    }
}
@media screen and (max-width: 460px) {
    .nowrap-cta {
        width: auto;
        margin: 0px -30px;
        white-space: nowrap;
    }
}
@media screen and (max-width: 374px) {
    a.resources-grid__card-cta-link {
        font-size: 15px;
        line-height: 20px;
    }
    .resources-grid__card{
        padding: 20px;
    }
    span.resources-grid__cta-icon img {
        width: 20px;
        height: 20px;
    }
    .nowrap-cta {
        margin: 0px auto;
        white-space: normal;
    }
}