

/*      Bloglist        */

.smhi-blog-list {
    margin: 3rem 0;
    list-style: none;
}

.smhi-blog-list li {
    width: 100%;
}

.smhi-blog-list .smhi-card__meta {
    position: relative;
}

.smhi-card__author {
    width: 3.5rem;
    height: 3.5rem;
    overflow: hidden;
    position: absolute;
    border-radius: 62.5rem;
    padding: .5rem;
    background-color: var(--colorZenith);
    right: 1.5rem;
    top: -2.5rem;
}

.smhi-card__author img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
    border-radius: 62.5rem;
}

.smhi-card--no-img .smhi-card__author {
    top: -1rem;
}

.smhi-blog-list li:hover .smhi-card__author {
    background-color: var(--color-sky-10);
}


@media screen and (min-width: 64.0625rem) {
    .smhi-blog-list li {
        max-width: calc((100%/3) - 1rem);
    }

    .smhi-section--bg-img {
        padding-bottom: 12rem;
    }
}

@media screen and (max-width: 64rem) and (min-width: 48rem) {

    .smhi-blog-list li {
        max-width: calc((100%/2) - 1rem);
    }

    .smhi-section--bg-img {
        padding-bottom: 7rem;
    }

}

@media screen and (min-width: 48rem) {
    .smhi-blog-list {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;

    }
}

@media screen and (max-width: 47.9375rem) {
    .smhi-blog-list li {
        margin-bottom: 1rem;
    }

    .smhi-section--bg-img {
        padding-bottom: 7rem;
    }
}