.resource-container-inner{
    padding-block: 40px;
}
.resource-heading{
    font-size: 20px;
    margin: 0;
    padding: 0;
}
.resource-sub-text{
    color: #555;
    font-family: var(--font-family-base-v1);
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 1px;
}
.articles-container{
    margin-bottom: 40px;
}
.article-grid{
    list-style: none;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
}
.article-grid li article{
    height: 100%;
}
.article-grid li article a{
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    height: 330px;
    position: relative;
    overflow: hidden;
}
.article-grid .article-cta a{
    background: #212121;
    color: var(--white);
    display: flex;
    font-size: 22px;
    font-weight: normal;
    line-height: 32px;
    padding: 20px;
    text-align: center;
}
.article-grid .article-cta a:hover{
    text-decoration: none;
}
.article-grid .article-cta button{
    background: var(--c-brand-01);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    margin-top: auto;
    outline: none;
    padding: 14px 10px;
    flex-basis: 100%;
}
.article-img-wrapper{
    height: 136px;
    margin: 0;
    padding: 0;
    width: 100%;
}
.article-img-wrapper img{
    border-radius: 3px 3px 0 0;
    width: 100%;
}
.article-title-copy{
    background: var(--white);
    height: calc(100% - 40px);
    position: absolute;
    top: 136px;
    left: 0;
    overflow-y: auto;
    padding: 22px 20px 0;
    transition: top 500ms ease;
}
.article-title{
    color: #182642;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    padding: 0;
    word-break: break-word;
}
.article-copy{
    color: #182642;
    font-family: var(--font-family-base-v1);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 8px;
}
.article-label{
    background: #fcfcfc;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    font-family: var(--font-family-base-v1);
    color: var(--blue);
    font-size: 1.6rem;
    font-weight: 700;
    margin: auto 0 0 0;
    padding: 6px 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.article-label::after{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #e5e5e5;
    border-right: 2px solid #e5e5e5;
    transform: rotate(45deg);
    margin-left: auto;
}
.article-grid li article a:hover .article-label::after{
    border-color: var(--black);
}
.article-grid li article a:hover .article-title-copy{
    top: 0;
}
.article-grid li:first-child{
    grid-column: span 2;
    grid-row: span 2;
}
.article-grid li:first-child article a{
    height: 100%;
}
.article-grid li:first-child .article-img-wrapper{
    height: 280px;
    width: 100%;
    overflow: hidden;
}
.article-loader{
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 330px;
    position: relative;
    text-align: center;
}
.article-loader .spinner{
    height: 2.5em;
    width: 2.5em;
    animation: spinAround .5s linear infinite;
    border-radius: 290486px;
    border-color: transparent transparent #666 #666;
    border-style: solid;
    border-width: 5px;
    content: "";
    display: block;
}
.article-loader div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.article-see-more{
    background: #c0bfbf;
    border: none;
    border-bottom: 2px solid #aaa;
    border-radius: 2px;
    color: #fff;
    display: flex;
    gap: 6px;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-family-base-v1);
    font-weight: 700;
    line-height: 20px;
    font-size: 14px;
    margin: 40px auto 0;
    padding: 4px 12px;
}
.article-see-more::after{
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(135deg);
    margin-left: auto;
    position: relative;
    top: -1px;
}
.article-see-more:hover{
    background: #aaa;
    border-color: #6b6b6b;
}

@media (min-width: 768px) {
    .article-grid li:first-child .article-title-copy{
        top: 280px;
    }
    .article-grid li:first-child .article-title{
        font-size: 50px;
        font-weight: 600;
        line-height: 50px;
    }
    .article-grid li:first-child .article-copy{
        font-size: 20px;
        line-height: 1.25;
        margin-top: 20px;
    }
}
@media (max-width: 991px) {
    .article-grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .article-grid li:first-child{
        grid-column: auto;
        grid-row: auto;
    }
    .article-grid{
        grid-template-columns: repeat(1, 1fr);
    }
}

@keyframes spinAround {
    from {transform: rotate(0deg)}
    to {transform: rotate(359deg)}
}