.horizontal-scrollable-authors-container,
.horizontal-scrollable-categories-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.horizontal-scrollable-authors,
.horizontal-scrollable-categories {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    width: 100%;
}

.horizontal-scrollable-authors::-webkit-scrollbar,
.horizontal-scrollable-categories::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.horizontal-scrollable-authors ul,
.horizontal-scrollable-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    width: 100%; /* Ensures the ul fits within the container */
}

.horizontal-scrollable-authors li,
.horizontal-scrollable-categories li {
    display: inline-block;
    margin-right: 20px;
    text-align: center;
}

.horizontal-scrollable-authors a,
.horizontal-scrollable-categories a {
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.author-img,
.category-img {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    margin-top: 5px;
}

.author-name,
.category-name {
    display: block;
    margin-bottom: 5px;
    font-size: 10px; /* Smaller font size */
    color: #555;
}

.author-list img,
.category-list img {
    border-radius: 100%;
}

.likebtn-container {
    display: inline-block!important;
}

.timeline-post .random-posts-list li.odd {
    background-color: #f9f9f9; /* Example background color for odd posts */
}

.timeline-post .random-posts-list li.even {
    background-color: #fff; /* Example background color for even posts */
}
/* Ensures author image and name are positioned next to the post title */
.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wp-block-post-title {
    font-size: 18px;
    color: #333;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 18px; /* Space between avatar and name */
}

/* Author image styles */
.author-info img {
    border-radius: 100%;
    height: 25px;
    width: 25px;
	margin-top: -69px;
}

/* Specific styling for infinite scroll to adjust margin for author image */
.random-posts-list .wp-block-post-author__avatar img {
    margin-top: -5px; /* Adjust this if needed to align with title */
}
/* Center-align the entire post meta section with flexbox */
.wp-block-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure the like button container respects the centering */
.likebtn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ensures it takes full width within flexbox */
}
.wp-block-post-title {
	color: #272727;
    font-size: 12px!important;
    font-style: normal;
    font-weight: 700;
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.post-link:hover .wp-block-post-content {
    text-decoration: underline;
}
.wp-block-post-content {
    pointer-events: auto;
    margin: 10px 0;
}
.post-thumbnail {
    margin-bottom: 10px;
}