#moodHub.section_wrapper {
    padding: 16px 16px 128px 16px;
}

.breadcrumb {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.breadcrumb a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    color: var(--sage);
}

.breadcrumb span {
    font-size: 14px;
    font-weight: 600;
    color: var(--sage);
}

#moodHub .title {
    text-align: left;
}

#moodHub .description {
    text-align: left;
}

#moodHub .card_container {
    flex-direction: column;
}

#moodHub .description {
    max-width: 60ch;
    margin: 0 auto;
}

#moodHub .card_cta_link {
    min-height: 270px;
    justify-content: space-between;
    padding: 16px;
    background-color: var(--light);
    border: 1px solid var(--sage);
    border-radius: 16px;
    transition: 0.3s ease-in-out;
}

#moodHub .card_cta_link:focus,
#moodHub .card_cta_link:active {
    background-color: var(--sage);
}

#moodHub .card_icon {
    width: 96px;
    height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background-color: var(--light);
    border-radius: 50%;
}

#moodHub .card_title {
    text-align: left;
    transition: 0.3s ease-in-out;
}

#moodHub .card_cta_link:focus .card_title,
#moodHub .card_cta_link:active .card_title {
    color: var(--light);
}

#moodHub .card_description {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: var(--sage);
    transition: 0.3s ease-in-out;
}

#moodHub .card_cta_text {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--sage);
    background-color: var(--light);
    border: 1px solid var(--sage);
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

#moodHub .card_cta_link:focus .card_description,
#moodHub .card_cta_link:active .card_description {
    color: var(--light);
}

@media only screen and (min-width: 768px) {
    #moodHub.section_wrapper {
        padding: 32px 32px 128px 32px;
    }

    #moodHub .title {
        text-align: left;
    }

    #moodHub .description {
        width: 100%;
        max-width: initial;
        text-align: left;
    }

    #moodHub .card_container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    #moodHub .card {
        width: calc(50% - 16px);
    }

    #moodHub .card_cta_link {
        min-height: 270px;
    }
}

@media only screen and (min-width: 960px) {
    #moodHub.section_wrapper {
        padding: 64px 64px 128px 64px;
    }

    #moodHub .card_cta_link:hover {
        background-color: var(--sage);
    }

    #moodHub .card_cta_link:hover .card_title {
        color: var(--light);
    }

    #moodHub .card_cta_link:hover .card_description {
        color: var(--light);
    }
}

@media only screen and (min-width: 1280px) {
    #moodHub .card {
        width: calc(33% - 7px);
    }
}