.weblogPost {
    margin-bottom: var(--articleMarginBottomSmall);
}

.weblogPost__imageWrapper {
    max-height: 400px;
    overflow: hidden;
    background-color: var(--baseLight300);
}

.weblogPost__image {
    display: block;
    width: 100%;
}

.weblog__tagWrapper {
    margin-bottom: 1.5rem;
}

.weblog__tag {
    padding: 0 1rem;
    font-size: .7rem;
}

.weblogPost__metaInfo {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
}

.weblogPost__title {
    font-size: var(--h2Size);
    color: var(--baseDark100);
}

.weblogPost .weblog__dateWrapper {
    flex: 1 0 150px;
    width: 105px;
    margin-right: 2rem;
    padding: 1.5rem;
}

.weblogPost .weblog__date {
    font-size: 1rem;
    word-break: break-word;
}

.weblogPost__introduction {
    margin-bottom: 2rem;
}

.weblogPost__text {
    margin-bottom: var(--articleMarginBottomSmall);
}

.weblogPost__share {
    display: flex;
    align-items: center;
}

.weblogPost__shareTitle {
    margin: 0 .5rem 0 0;
}

.weblogPost__shareButtons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
}

.weblogPost__shareButton {
    display: block;
    width: 32px;
    height: 32px;
    margin-right: .5rem;
    fill: #fff;
    background-color: #005a83;
}

.weblogPost__shareButton.--twitter {
    background-color: #339dc5;
}

.weblogPost__shareButton.--linkedin {
    background-color: #314b7e;
}

.weblogPost__shareButton.--email {
    background-color: var(--baseDark900);
}

.weblogComments__react {
    padding: 1rem;
    background-color: var(--baseLight300);
}

.weblogComments__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.weblogComments__comment {
    margin-bottom: var(--articleMarginBottomSmall);
    padding-bottom: var(--articleMarginBottomSmall);
    border-bottom: 1px solid var(--baseLight300);
}

.weblogComments__meta {
    display: flex;
    align-items: center;
    font-size: var(--labelSize);
}

.weblogComments__author {
    font-weight: 600;
    font-size: var(--bodySize);
}

.weblogComments__avatar {
    display: block;
    margin-right: 1rem;
    border-radius: 50%;
}

.weblogComments__meta + p {
    margin-left: calc(48px + 1rem); /* 48px is the width of the image, plus 1rem for the margin-right on the image */
}

@media (min-width: 768px) {
    .weblogPost__metaInfo {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .weblogPost .weblog__dateWrapper {
        flex: 0 0 105px;
        width: auto;
        height: 150px;
    }
}
