
.blog-post__content,
.blog-post__introduction {
    --font-size: var(--root-font-size); /* Reset, use REM */
}

.blog-post__date {
    --border-color: var(--root-color-border);
    --color: var(--root-color-text);
    --font-family: inherit;
    --font-size: 1em; /* Mobile 16px / > Mobile 18px */
    --font-style: normal;
    --font-weight: var(--root-font-weight--bold);
    --line-height: inherit;
}

.blog-post__date .icon {
    --width: 1em;
    --fill: currentColor;
}



.blog-post__content,
.blog-post__introduction {
}

.blog-post__date {
    display: block;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top-width: 0.125rem;
    border-top-style: solid;
}

.blog-post__date .icon {
    vertical-align: middle;
    margin-right: 0.5rem;
}



.blog-post__content,
.blog-post__introduction {
    font-size: var(--font-size, 1rem);
}

.blog-post__date {
    border-top-color: var(--border-color, grey);
    color: var(--color, black);
    font-family: var(--font-family, inherit);
    font-weight: var(--font-weight, bold);
    font-size: var(--font-size, 1em);
    font-style: var(--font-style, normal);
    line-height: var(--line-height, inherit);
}

.blog-post__date .icon {
    width: var(--width, 1em);
    min-width: var(--width, 1em);
    fill: var(--fill, currentColor);
}


