/* single */
.blog--article
{
    position: relative;
    width: 100%;
    height: auto;
}


.blog--article .articles-single-001
{
    position: relative;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.blog--article .articles-single-001--title
{
    position: relative;
    width: 100%;
    height: auto;
    font-size: var(--typography-title-middle-font-size--sm);
    line-height: var(--typography-title-middle-line-height--sm);
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: var(--default-regular);
}

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

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

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

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

.blog--article .articles-single-001--info
{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--default-regular);
}

.blog--article .articles-single-001--date
{
    font-size: var(--typography-label-small-font-size--sm);
    line-height: var(--typography-label-small-line-height--sm);
    font-weight: 300;
}

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

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

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

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

.blog--article .articles-single-001--category
{
    font-size: var(--typography-label-small-font-size--sm);
    line-height: var(--typography-label-small-line-height--sm);
    font-weight: 600;
    color: var(--default-regular);
}

@media(min-width: 768px)
{
    .blog--article .articles-single-001--category
    {
        font-size: var(--typography-label-small-font-size--md);
        line-height: var(--typography-label-small-line-height--md);
    }
}

@media(min-width: 992px)
{
    .blog--article .articles-single-001--category
    {
        font-size: var(--typography-label-small-font-size--lg);
        line-height: var(--typography-label-small-line-height--lg);
    }
}

@media(min-width: 1200px)
{
    .blog--article .articles-single-001--category
    {
        font-size: var(--typography-label-small-font-size--xl);
        line-height: var(--typography-label-small-line-height--xl);
    }
}

@media(min-width: 1400px)
{
    .blog--article .articles-single-001--category
    {
        font-size: var(--typography-label-small-font-size--xxl);
        line-height: var(--typography-label-small-line-height--xxl);
    }
}

.blog--article .articles-single-001--post
{
    position: relative;
    width: 100%;
    height: auto;
}

.blog--article .articles-single-001--post-image
{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    object-position: center;
}

.blog--article .articles-single-001--post-text
{
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    font-size: var(--typography-text-middle-font-size--sm);
    line-height: var(--typography-text-middle-line-height--sm);
    font-weight: var(--typography-text-middle-font-weight--sm);
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--default-regular);
}

@media(min-width: 768px)
{
    .blog--article .articles-single-001--post-text
    {
        font-size: var(--typography-text-middle-font-size--md);
        line-height: var(--typography-text-middle-line-height--md);
    }
}

@media(min-width: 992px)
{
    .blog--article .articles-single-001--post-text
    {
        font-size: var(--typography-text-middle-font-size--lg);
        line-height: var(--typography-text-middle-line-height--lg);
    }
}

@media(min-width: 1200px)
{
    .blog--article .articles-single-001--post-text
    {
        font-size: var(--typography-text-middle-font-size--xl);
        line-height: var(--typography-text-middle-line-height--xl);
    }
}

@media(min-width: 1400px)
{
    .blog--article .articles-single-001--post-text
    {
        font-size: var(--typography-text-middle-font-size--xxl);
        line-height: var(--typography-text-middle-line-height--xxl);
    }
}

.blog--article .articles-single-001--post-text h2
{
    font-size: var(--typography-title-small-font-size--sm);
    line-height: var(--typography-title-small-line-height--sm);
}

@media(min-width: 768px) 
{
    .blog--article .articles-single-001--post-text h2
    {
        font-size: var(--typography-title-small-font-size--md);
        line-height: var(--typography-title-small-line-height--md);
    }
}

@media(min-width: 992px) 
{
    .blog--article .articles-single-001--post-text h2
    {
        font-size: var(--typography-title-small-font-size--lg);
        line-height: var(--typography-title-small-line-height--lg);
    }
}

@media(min-width: 1200px) 
{
    .blog--article .articles-single-001--post-text h2
    {
        font-size: var(--typography-title-small-font-size--xl);
        line-height: var(--typography-title-small-line-height--xl);
    }
}

@media(min-width: 1400px) 
{
    .blog--article .articles-single-001--post-text h2
    {
        font-size: var(--typography-title-small-font-size--xxl);
        line-height: var(--typography-title-small-line-height--xxl);
    }
}


.blog--article .articles-single-001--author
{
    position: relative;
    width: 100%;
    max-width: 580px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 25px;
    margin-top: 50px;
}

.blog--article .articles-single-001--author-image
{
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;

}

.blog--article .articles-single-001--author-image-img
{
    width: 100%;
    max-width: 80px;
    border-radius: 50%;
    overflow:hidden;
}

.blog--article .articles-single-001--author-content
{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.blog--article .articles-single-001--author-name
{
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    margin-bottom: 7px;
}

.blog--article .articles-single-001--author-description
{
    font-size: 12px;
    line-height: 17px;
    font-weight: 300;
}


/* Social media*/

.blog--article .articles-single-001--social-media {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
    gap: 30px;

}@media(min-width: 768px)
{
    .blog--article .articles-single-001--social-media {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: unset;
    }
}

.blog--article .articles-single-001--social-media-btn-back
{
    width: 100%;
}

@media(min-width: 1200px)
{
    .blog--article .articles-single-001--social-media-btn-back
    {
        align-self: flex-start;
    }
}



.blog--article .button-001 {
    position: relative;
    width: 100%;
    height: var(--button-height--sm);
    font-size: var(--button-font-size--sm);
    line-height: var(--button-line-height--sm);
    gap: var(--button-gap--sm);
    font-weight: var(--button-font-weight);
    padding: var(--button-padding);
    border-radius: var(--button-radius);
    background-color: var(--primary-regular);
    color: var(--primary-contrast);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    word-wrap: anywhere;
    text-decoration: none;
    white-space: nowrap;
    border:0;
}@media(min-width: 768px)
{
    .blog--article .button-001 {
        width: fit-content;
        height: var(--button-height--md);
        font-size: var(--button-font-size--md);
        line-height: var(--button-line-height--md);
        gap: var(--button-gap--md);
    }
}@media(min-width: 992px)
{
    .blog--article .button-001 {
        height: var(--button-height--lg);
        font-size: var(--button-font-size--lg);
        line-height: var(--button-line-height--lg);
        gap: var(--button-gap--lg);
    }
}@media(min-width: 1200px)
{
    .blog--article .button-001 {
        height: var(--button-height--xl);
        font-size: var(--button-font-size--xl);
        line-height: var(--button-line-height--xl);
        gap: var(--button-gap--xl);
    }
}@media(min-width: 1400px)
{
    .blog--article .button-001 {
        height: var(--button-height--xxl);
        font-size: var(--button-font-size--xxl);
        line-height: var(--button-line-height--xxl);
        gap: var(--button-gap--xxl);
    }
}

.blog--article .button-001--svg {
    width: 10px;
}@media(min-width: 768px)
{
    .blog--article .button-001--svg {
        width: 11.5px;
    }
}@media(min-width: 992px)
{
    .blog--article .button-001--svg {
        width: 12px;
    }
}@media(min-width: 1200px)
{
    .blog--article .button-001--svg {
        width: 12.5px;
    }
}@media(min-width: 1400px)
{
    .blog--article .button-001--svg {
        width: 13px;
    }
}

.blog--article .button-001--svg-path
{
    fill: var(--primary-contrast);
}


.blog--article .button-001-full
{
    width: 100%;
}



/* social media */
.blog--article .social-media-share-001
{
    position: relative;
    width: 100%;
    height: auto;
}

.blog--article .social-media-share-001--wrap
{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog--article .social-media-share-001--wrap-direction-row {
    flex-direction: row;
    gap: 10px;
}@media(min-width: 768px)
{
    .blog--article .social-media-share-001--wrap-direction-row {
        gap: 12px;
    }
}@media(min-width: 992px)
{
    .blog--article .social-media-share-001--wrap-direction-row {
        gap: 14px;
    }
}@media(min-width: 1200px)
{
    .blog--article .social-media-share-001--wrap-direction-row {
        gap: 16px;
    }
}@media(min-width: 1400px)
{
    .blog--article .social-media-share-001--wrap-direction-row {
        gap: 18px;
    }
}

.blog--article .social-media-share-001--wrap-direction-column {
    flex-direction: column;
    gap: 6px;
}@media(min-width: 768px)
{
    .blog--article .social-media-share-001--wrap-direction-column {
        gap: 8px;
    }
}@media(min-width: 992px)
{
    .blog--article .social-media-share-001--wrap-direction-column {
        gap: 9px;
    }
}@media(min-width: 1200px)
{
    .blog--article .social-media-share-001--wrap-direction-column {
        gap: 10px;
    }
}@media(min-width: 1400px)
{
    .blog--article .social-media-share-001--wrap-direction-column {
        gap: 12px;
    }
}

.blog--article .social-media-share-001--label {
    position: relative;
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: var(--typography-label-middle-font-size--sm);
    line-height: var(--typography-label-middle-line-height--sm);
}@media(min-width: 768px)
{
    .blog--article .social-media-share-001--label {
        font-size: var(--typography-label-middle-font-size--md);
        line-height: var(--typography-label-middle-line-height--md);
    }
}@media(min-width: 992px)
{
    .blog--article .social-media-share-001--label {
        font-size: var(--typography-label-middle-font-size--lg);
        line-height: var(--typography-label-middle-line-height--lg);
    }
}@media(min-width: 1200px)
{
    .blog--article .social-media-share-001--label {
        font-size: var(--typography-label-middle-font-size--xl);
        line-height: var(--typography-label-middle-line-height--xl);
    }
}@media(min-width: 1400px)
{
    .blog--article .social-media-share-001--label {
        font-size: var(--typography-label-middle-font-size--xxl);
        line-height: var(--typography-label-middle-line-height--xxl);
    }
}

.blog--article .social-media-share-001--items
{
    position: relative;
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.blog--article .social-media-share-001--item
{
    position: relative;
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    text-decoration: none;
    margin:0;
    padding: 0;
}

.blog--article .social-media-share-001--item-svg {
    width: 30px;
    height: auto;
    border-radius: 5px;
}@media(min-width: 768px)
{
    .blog--article .social-media-share-001--item-svg {
        width: 32px;
    }
}@media(min-width: 992px)
{
    .blog--article .social-media-share-001--item-svg {
        width: 34px;
    }
}@media(min-width: 1200px)
{
    .blog--article .social-media-share-001--item-svg {
        width: 36px;
    }
}@media(min-width: 1400px)
{
    .blog--article .social-media-share-001--item-svg {
        width: 38px;
    }
}
