/* Post Meta Block Styles */
.post-meta-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Alignment options */
.post-meta-left {
    justify-content: flex-start;
}

.post-meta-center {
    justify-content: center;
}

.post-meta-right {
    justify-content: flex-end;
}

/* Individual meta items */
.post-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-meta-item.post-meta-author {
    gap: 14px;
}

.post-meta-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.post-meta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icons */
.post-meta-icon {
    width: 16px;
    height: 16px;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Labels and values */
.post-meta-label {
    color: #15171C;
    font-family: var(--fb-global-fb_customtypo_qr3bm--font-family);
    font-size: var(--fb-global-fb_customtypo_qr3bm--font-size);
    line-height: var(--fb-global-fb_customtypo_qr3bm--font-line-height);
    margin: 0px 0px 0px 0px;
    border: none;
    transition: all .3s ease-in-out;
}

.post-meta-value {
    color: #15171C;
    font-family: var(--fb-global-fb_customtypo_qr3bm--font-family);
    font-size: var(--fb-global-fb_customtypo_qr3bm--font-size);
    line-height: var(--fb-global-fb_customtypo_qr3bm--font-line-height);
    margin: 0px 0px 0px 0px;
    border: none;
    transition: all .3s ease-in-out;
}

.post-meta-date .post-meta-value,
.post-meta-comments .post-meta-value {
    color: #404655;
    font-family: var(--fb-global-fb_customtypo_1lkbz--font-family);
    font-size: var(--fb-global-fb_customtypo_1lkbz--font-size);
    font-weight: var(--fb-global-fb_customtypo_1lkbz--font-weight);
    line-height: var(--fb-global-fb_customtypo_1lkbz--font-line-height);
    margin: 0px 0px 0px 0px;
    border: none;
    transition: all .3s ease-in-out;
}

/* Author value styling */
.post-meta-author .post-meta-value {
    color: #1f2937;
    font-weight: 600;
}

/* Hover effects */
.post-meta-item:hover .post-meta-icon {
    color: #6b7280;
}

.post-meta-item:hover .post-meta-value {
    color: #1f2937;
}

/* Responsive design */
@media (max-width: 768px) {
    .post-meta-block {
        gap: 15px;
        font-size: 13px;
    }

    .post-meta-avatar {
        width: 28px;
        height: 28px;
    }

    .post-meta-icon {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .post-meta-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .post-meta-center {
        align-items: center;
    }

    .post-meta-right {
        align-items: flex-end;
    }
}

/* Block editor specific styles */
.block-editor-page .post-meta-block {
    border: 1px dashed #e5e7eb;
    background-color: #f9fafb;
    border-radius: 4px;
    padding: 15px;
}