/* Artigos relacionados */

.blog--articles-related
{
    position: relative;
    width: 100%;
    height: auto;
    padding: var(--section-padding-middle--sm);
    background-color: #F7F9FC;
    margin-top: 30px;

}

@media(min-width: 768px)
{
    .blog--articles-related
    {
        padding: var(--section-padding-middle--md);
    }
}

@media(min-width: 992px)
{
    .blog--articles-related
    {
        padding: var(--section-padding-middle--lg);
    }
}

@media(min-width: 1200px)
{
    .blog--articles-related
    {
        padding: var(--section-padding-middle--xl);
    }
}

@media(min-width: 1400px)
{
    .blog--articles-related
    {
        padding: var(--section-padding-middle--xxl);
    }
}

.blog--articles-related .blog--articles-related-title
{
    font-size: var(--typography-title-middle-font-size--sm);
    line-height: var(--typography-title-middle-line-height--sm);
    font-weight: var(--typography-title-middle-font-weight--sm);
    margin-bottom: 30px;
    text-align: center;
}

@media(min-width: 768px)
{
    .blog--articles-related .blog--articles-related-title
    {
        font-size: var(--typography-title-middle-font-size--md);
        line-height: var(--typography-title-middle-line-height--md);
    }
}

@media(min-width: 992px)
{
    .blog--articles-related .blog--articles-related-title
    {
        font-size: var(--typography-title-middle-font-size--lg);
        line-height: var(--typography-title-middle-line-height--lg);
    }
}

@media(min-width: 1200px)
{
    .blog--articles-related .blog--articles-related-title
    {
        font-size: var(--typography-title-middle-font-size--xl);
        line-height: var(--typography-title-middle-line-height--xl);
    }
}

@media(min-width: 1400px)
{
    .blog--articles-related .blog--articles-related-title
    {
        font-size: var(--typography-title-middle-font-size--xxl);
        line-height: var(--typography-title-middle-line-height--xxl);
    }
}

.blog--articles-related .articles-list-001--cards {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: auto;
    grid-gap: 20px;
    justify-content: center;
    justify-items: center;

}@media(min-width: 768px)
{
    .blog--articles-related .articles-list-001--cards
    {
        grid-template-columns: auto auto;
        grid-gap: 25px;

    }

}@media(min-width: 992px)
{
    .blog--articles-related .articles-list-001--cards
    {
        justify-items: flex-start;
        grid-gap: 35px;

    }

}@media(min-width: 1200px)
{
    .blog--articles-related .articles-list-001--cards
    {
        grid-gap: 20px;
        grid-template-columns: auto auto auto;
        justify-content: flex-start;
    }
}@media(min-width: 1400px)
{
    .blog--articles-related .articles-list-001--cards
    {
        grid-gap: 45px;
    }
}

.blog--articles-related .articles-list-001--column-3 {
    grid-template-columns: auto;
}@media(min-width: 768px)
{
    .blog--articles-related .articles-list-001--column-3 {
        grid-template-columns: auto auto;
    }
}@media(min-width: 992px)
{
    .blog--articles-related .articles-list-001--column-3 {
        grid-template-columns: auto auto;
    }
}@media(min-width: 1200px)
{
    .blog--articles-related .articles-list-001--column-3 {
        grid-template-columns: auto auto auto;
    }
}@media(min-width: 1400px)
{
    .blog--articles-related .articles-list-001--column-3 {
        grid-template-columns: auto auto auto;
    }
}

.blog--articles-related .articles-list-001--card
{
    position: relative;
    width: 100%;
    max-width: 370px;
    height: auto;
    border: 1px solid #E2E2E2;
    background-color: #FFFFFF;
    text-decoration: none;
    color: var(--default-regular);
}


@media(min-width: 768px)
{
    .blog--articles-related .articles-list-001--card
    {
        height: 530px;
    }
}

@media(min-width: 1200px)
{
    .blog--articles-related .articles-list-001--card:hover
    {
        outline: 5px solid var(--primary-regular);
        transition: outline 150ms;
    }

}

.blog--articles-related .articles-list-001--card-image
{
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #EEE;
}

.blog--articles-related .articles-list-001--card-tag
{
    position: absolute;
    width: 100%;
    height: auto;
    top: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

}

.blog--articles-related .articles-list-001--card-tag-content
{
    position: relative;
    width: fit-content;
    max-width: 90%;
    overflow: hidden;
    height: auto;
    padding: 6px 17px 6px 17px;
    background-color: var(--secondary-regular);
    color: var(--secondary-contrast);
    border-radius: 50px;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
}

.blog--articles-related .articles-list-001--card-img
{
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
}

.blog--articles-related .articles-list-001--card-contents
{
    position: relative;
    width: auto;
    height: auto;
    padding: 30px;
}

@media(min-width: 768px)
{
    .blog--articles-related .articles-list-001--card-contents
    {

    }
}

.blog--articles-related .articles-list-001--card-title
{
    font-size: var(--typography-label-middle-font-size--sm);
    line-height: var(--typography-label-middle-line-height--sm);
    font-weight: bold;
}

@media(min-width: 768px)
{
    .blog--articles-related .articles-list-001--card-title
    {
        font-size: var(--typography-label-middle-font-size--md);
        line-height: var(--typography-label-middle-line-height--md);
    }
}

@media(min-width: 992px)
{
    .blog--articles-related .articles-list-001--card-title
    {
        font-size: var(--typography-label-middle-font-size--lg);
        line-height: var(--typography-label-middle-line-height--lg);
    }
}

@media(min-width: 1200px)
{
    .blog--articles-related .articles-list-001--card-title
    {
        font-size: var(--typography-label-middle-font-size--xl);
        line-height: var(--typography-label-middle-line-height--xl);
    }
}

@media(min-width: 1400px)
{
    .blog--articles-related .articles-list-001--card-title
    {
        font-size: var(--typography-label-middle-font-size--xxl);
        line-height: var(--typography-label-middle-line-height--xxl);
    }
}

.blog--articles-related .articles-list-001--card-description
{
    font-size: var(--typography-description-small-font-size--sm);
    line-height: var(--typography-description-small-line-height--sm);
    font-weight: var(--typography-description-small-font-weight--sm);
    margin-top: 10px;
}

@media(min-width: 768px)
{
    .blog--articles-related .articles-list-001--card-description
    {
        font-size: var(--typography-description-small-font-size--md);
        line-height: var(--typography-description-small-line-height--md);
        font-weight: var(--typography-description-small-font-weight--md);
    }
}

@media(min-width: 992px)
{
    .blog--articles-related .articles-list-001--card-description
    {
        font-size: var(--typography-description-small-font-size--lg);
        line-height: var(--typography-description-small-line-height--lg);
        font-weight: var(--typography-description-small-font-weight--lg);
    }
}

@media(min-width: 1200px)
{
    .blog--articles-related .articles-list-001--card-description
    {
        font-size: var(--typography-description-small-font-size--xl);
        line-height: var(--typography-description-small-line-height--xl);
        font-weight: var(--typography-description-small-font-weight--xl);
    }
}

@media(min-width: 1400px)
{
    .blog--articles-related .articles-list-001--card-description
    {
        font-size: var(--typography-description-small-font-size--xxl);
        line-height: var(--typography-description-small-line-height--xxl);
        font-weight: var(--typography-description-small-font-weight--xxl);
    }
}


.blog--articles-related .articles-list-001--card-footer
{
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid #E2E2E2;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;

}

@media(min-width: 768px)
{
    .blog--articles-related .articles-list-001--card-footer
    {
        position: absolute;
        bottom: 0;
        left:0;
    }
}

.blog--articles-related .articles-list-001--card-date
{
    color: #A0A8AB;
    font-size: var(--typography-label-small-font-size--sm);
    line-height: var(--typography-label-small-line-height--sm);
    font-weight: 400;
}

@media(min-width: 768px)
{
    .blog--articles-related .articles-list-001--card-date
    {
        font-size: var(--typography-label-small-font-size--md);
        line-height: var(--typography-label-small-line-height--md);
    }
}

@media(min-width: 992px)
{
    .blog--articles-related .articles-list-001--card-date
    {
        font-size: var(--typography-label-small-font-size--lg);
        line-height: var(--typography-label-small-line-height--lg);
    }
}

@media(min-width: 1200px)
{
    .blog--articles-related .articles-list-001--card-date
    {
        font-size: var(--typography-label-small-font-size--xl);
        line-height: var(--typography-label-small-line-height--xl);
    }
}

@media(min-width: 1400px)
{
    .blog--articles-related .articles-list-001--card-date
    {
        font-size: var(--typography-label-small-font-size--xxl);
        line-height: var(--typography-label-small-line-height--xxl);
    }
}

