.inoforest-post-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inoforest-post-info--inline {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.inoforest-post-info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    position: relative;
    min-height: 24px;
}

.inoforest-post-info-item--inline {
    display: inline-flex;
    margin-right: 0;
}

.inoforest-post-info-icon,
.inoforest-post-info-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    flex-shrink: 0;
}

.inoforest-post-info-avatar img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.inoforest-post-info-icon i,
.inoforest-post-info-icon svg,
.inoforest-post-info-icon .icon-element {
    display: block;
}

.inoforest-post-info-icon .icon-element {
    font-size: inherit;
    width: 1em;
    height: 1em;
}

.inoforest-post-info-text {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 1.2em;
}

.inoforest-post-info-text a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.inoforest-post-info-prefix {
    margin-right: 5px;
    opacity: 0.8;
}

.inoforest-post-info-text a:hover {
    text-decoration: underline;
}

.inoforest-post-info-item:not(:last-child):after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 1px;
    background-color: #ddd;
}

.inoforest-post-info--inline .inoforest-post-info-item:not(:last-child):after {
    left: auto;
    top: 50%;
    right: -7.5px;
    width: 1px;
    height: 100%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .inoforest-post-info {
        gap: 8px;
    }
    
    .inoforest-post-info-item {
        gap: 6px;
    }
}
