#blog {
    width: 100%;
}

/* Blog records list */
#blog-list {
    display: flex;
    flex-direction: column;
}
.bl-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.bl-item:last-child {
    margin: 0;
}
.br-name h3,
.block-name h3 {
    font-size: var(--font-size-3xl);
    font-family: var(--font-family-lg);
    margin: 0;
}
.bl-item-image img {
    width: 100%;
    height: 100%;
}
.bl-item-image {
    flex: 1 1 50%;
}
.bl-item-name {
    margin-left: 2rem;
}

/* Blog record */
#blog-record {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
#br-image {
    flex: 1 1 50%;
}
#br-image img {
    max-width: 100%;
}
.br-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
    justify-content: center;
    align-items: flex-start;
}
.br-name {
    margin-bottom: 2rem;
    text-align: left;
}
#blog-list .br-name {
    text-align: center;
}
.br-name h1 {
    font-size: var(--font-size-3xl);
}
.br-content {
    text-align: center;
}
#blog-list .br-content {
    overflow: hidden;
    margin-bottom: 3rem;
    white-space: normal;
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
    font-size: var(--font-size-xl);
    font-family: var(--font-family-sm);
    line-height: 1.5rem;
    height: 4.6rem;
}
.br-text a {
    padding: 1.4rem 0;
    display: inline-block;
    width: 12rem;
    margin: 0 auto;
}

#blog-record .br-text {
    margin-top: 2rem;
}

#blog-record .br-content {
    text-align: justify;
    font-size: var(--font-size-xl);
    line-height: var(--line-height-md);
    font-family: var(--font-family-sm);
}

.bl-item:nth-child(even) {
    flex-direction: row-reverse;
}

.block-name {
    margin-bottom: 2rem;
}

.block-description {
    text-align: justify;
    font-size: var(--font-size-xl);
    line-height: var(--line-height-md);
    font-family: var(--font-family-sm);
    line-height: 1.5rem;
    height: 4.6rem;
    overflow: hidden;
    margin-bottom: 3rem;
    white-space: normal;
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
}


@media only screen and (max-width: 767px) {
    #blog-list .br-name {
        padding: 2rem 0 0;
    }

    .bl-item {
        margin: 0 0 3rem;
    }

    .br-content a {
        width: 16rem
    }
}

@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1400px) {
}
