/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by Blog page.
 * File         : blog.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Blog Page Styles
----------------------------------------------------*/
body {
    overflow-x: visible;
}

.post-filter-btn li a {
    color: rgba(var(--white), 1);
    font-size: calc(var(--font-base) + 2);
    padding: 3px 12px;
    display: inline-block;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.5s;
}
.post-filter-btn li a:hover {
    color: rgba(var(--brand), 1);
}
.post-filter-btn li.active a {
    border-color: rgba(var(--brand), 1);
    color: rgba(var(--brand), 1);
}
.blog-masonry {
    transition: height 0.4s ease;
    overflow: hidden;
}

.blog-item {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.blog-item.isotope-hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}
/* details page css */
.blog-details-thumbnails img {
    max-height: 600px;
    min-height: 600px;
    object-fit: cover;
    height: auto;
}
.blog-details-thumbnails {
    position: relative;
}
.blog-details-thumbnails:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--black), 0.7);
}
.blog-details-overview {
    margin-top: -100px;
    position: relative;
}
.blog-details-overview-inner {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
}
.post-author-info {
    border: 1px solid rgba(var(--white), 0.1);
    backdrop-filter: blur(7px);
    background-color: rgba(var(--black), 0.05);
    max-width: 350px;
    width: 100%;
}
.publisher-social-menu li a {
    min-height: 40px;
    min-width: 40px;
    transition: 0.5s;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--white), 0.1);
}
.publisher-social-menu li a:hover {
    background-color: rgba(var(--brand), 0.8);
    transform: translateY(-5px);
}

.blog-details-content h1,
.blog-details-content h2,
.blog-details-content h3,
.blog-details-content h4,
.blog-details-content h5,
.blog-details-content h6 {
    margin-bottom: 22px;
}
.blog-details-content p,
.blog-details-content img {
    margin-bottom: 18px;
}
.blog-details-content img {
    width: 100%;
    border-radius: 10px;
}
.toc-link {
    color: rgba(var(--white), 0.6);
    font-size: 16px;
    font-weight: 500;
    background-color: rgba(var(--white), 0.1);
    display: block;
    padding: 4px 8px;
    border-radius: 5px;
    margin-bottom: 8px;
}
.toc-box {
    position: sticky;
    top: 100px;
}
.toc-link.active,
.toc-link:hover {
    background-color: rgba(var(--brand), 1);
    color: rgba(var(--white), 1);
}
