/* helpful articles */
.carousel {
    width: fit-content;
}

.carousel-track-container {
    max-width: 1100px;
}

.container {
    width: 95%;
}

.article-newsletter {
    width: 80%;
    height: 85vh;
}

#toolbar {
    display: none;
}

.research_articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.research-link {
    /* width: 32%; */
    margin-bottom: 30px;

    a {
        font-size: 18px;
        font-weight: bold;
        color: blue;
        text-decoration: underline;
    }

    a:hover {
        color: rgb(113, 113, 255);
    }
}

/* Physician Resources */
.developmental-articles {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    /* gap: 20px; */
}

.developmental-checklist-section {
    width: 70%;
    margin-bottom: 5vh;
}

.download-links {
    margin: 0 auto;
    font-size: 22px;
    color: #6fa04c;
    line-height: 26px;
}

.download-links:hover {
    text-decoration: underline;
}

.family-support-waiver {

    height: 90%;
    width: 100%;
}

#english-spanish-translate-button {
    margin: 10px auto;
}

.developmental-screenings {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    gap: 20px;
}

.developmental-screenings aside {
    width: 45%;
}

.developmental-screenings a {
    color: #0000EE;
}

.developmental-screenings a:hover {
    text-decoration: underline;
}

.developmental-screenings a:visited {
    color: #551A8B;
}

/* Page width formatting */

@media (max-width: 800px) {
    .container {
        width: 95%;
    }

    .carousel {
        width: 90%;
    }

    .entire_team {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .developmental-screenings {
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        gap: 15px;
    }

    .developmental-screenings aside {
        width: 95%;
    }
}

@media (max-width: 450px) {
    .container {
        width: 97%;
    }

    .carousel {
        width: 96%;
    }

    .prev,
    .next {
        height: 10%;
        top: 60% !important;
    }

    .article-newsletter {
        height: 45vh;
        width: 100%;
    }

    .research_articles {
        gap: 12px;
    }

    .research_articles article {
        width: 47.5%;
    }
}