/* Custom banner */

.top-banner {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-branding-primary);
    padding-bottom: 2rem;
}

.top-banner h1 {
    margin: 1.5rem;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.2;
}

.top-banner h1 span {
    font-weight: normal;
}


.top-banner .cards {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.circle-number {
    display: inline-block;
    min-width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--color-branding-primary);
    color: white;
    text-align: center;
    line-height: 4rem;
    font-size: 2rem;
    font-weight: bold;
}

.top-banner .card .copy {
    text-align: center;
    margin: 2rem 0;
}

.top-banner p.topline {
    color: var(--color-branding-primary);
    margin: 0;
    font-weight: bold;
}

.top-banner .card .copy {
    text-align: center;
    margin: 0 1.5rem;
    color: var(--color-dark-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-banner .card .copy strong {
    color: #000;
}

.top-banner .card .copy a {
   text-decoration: underline;
   color: var(--color-dark-gray);
}

.top-banner .copy-inner-wrap {
    text-align: left;
}

.top-banner .card img {
  display: none;
  width: 100%;
}

.top-banner .card:first-child img {
    display: block;
    margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {

    .top-banner {
        margin-bottom: 0;
        border-bottom: unset;
        padding-bottom: 0;
    }

    .top-banner .card img {
        display: block;
    }
    
    .top-banner .card {
        display: flex;
    }

    .top-banner .card > *, .top-banner .card img {
        width: 50%;
    }

    .top-banner .card .copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .top-banner .copy-inner-wrap {
        text-align: center;
    }

    .top-banner .card:first-child img {
        margin-bottom: 0;
    }

    .top-banner .card:nth-child(2) {
        display: flex;
        flex-direction: row-reverse;
    }

    .top-banner span {
        display: inline;
        padding-right: 1rem;
    }

    .top-banner .cards {
        gap: 0;
    }
}

@media only screen and (min-width: 1024px) {

    .top-banner {
        max-width: var(--width-content-max);
        width: calc(100% - 4rem);
        margin: 5rem auto;
    }

    .top-banner .cards {
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

    .top-banner .card:nth-child(2),
    .top-banner .card {
        display: flex;
        flex-direction: column;
        -webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.4);
        -moz-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.4);
        box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.4);
    }

    .top-banner .card > *, .top-banner .card img {
        width: 100%;
    }

    .top-banner .card .copy {
        width: calc(100% - 4rem);
        margin: 2rem;
    }

    #maincontent .pa-launcher-wrapper {
        display: block;
    }

    

}
