.section-single .single-header {
    gap: 30px;
    margin-bottom: 30px;
}

.section-single .single-header .single-author,
.section-single .single-header .single-date {
    font-size: 14px;
    line-height: 14px;
    opacity: 0.8;
}

.section-single .single-header .single-date {
    position: relative;
}

.section-single .single-header .single-date:before {
    content: '';
    position: absolute;
    display: block;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    background-color: var(--primary-color);
}

.section .post-image a {
    display: block;
    font-size: 0;
    transition: opacity var(--default-animation);
}

.section .post-image a:hover {
    opacity: 0.8;
}

.section .post-image a img {
    max-width: 100%;
    height: auto;
}

.section .post-info .post-title {
    margin-top: 20px;
}

.section .post-info .post-title a {
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity var(--default-animation);
}

.section .post-info .post-title a:hover {
    opacity: 0.8;
}

.section .post-info .post-description p {
    font-size: 14px;
    line-height: 22px;
    color: var(--primary-color);
    opacity: 0.8;
}

.section .post-info .post-info-footer {
    justify-content: flex-end;
    gap: 30px;
}

.section .post-info .post-author,
.section .post-info .post-date {
    font-size: 12px;
    line-height: 12px;
    opacity: 0.8;
}

.section .post-info .post-date {
    position: relative;
}

.section .post-info .post-date:before {
    content: '';
    position: absolute;
    display: block;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    background-color: var(--primary-color);
}