.blog-page ul {
    padding-left: 1.5rem;
}
.blog-page ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    display: list-item;
}

.breadcrumb a {
    color: var(--black-color);
    text-decoration: underline;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--main-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--black-color);
    padding-inline: 0.2rem;
}

.breadcrumb-item+.breadcrumb-item {
    padding: 0;
}

.breadcrumb-item.active {
    color: var(--black-color);
    font-weight: 600;
}

.blog-page-header {
    text-align: left;
    margin-bottom: 1.5rem;
}


.hero-section {
    height: 400px;
    justify-content: center;
    align-items: flex-start;
}

.hero-section .hero-content {
    max-width: 1200px;
    margin-right: auto;
}

.hero-section h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white-color);
    text-align: left;
}

.blog-details-content h2 {
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--third-color);
}

.blog-details-content img {
    border-radius: 12px;
    width: 100%;
    margin: 20px 0;
    max-height: 400px;
    object-fit: cover;
    box-shadow: var(--box-shadow);
}

.blog-details-content p, .blog-page-header  p {
    /* letter-spacing: 1px; */
    font-size: 18px !important;;
    line-height: 24px !important;;
    text-transform: capitalize;
    /* color: var(--second-color); */
    color: #000 !important;;
    font-family: var(--font-family);
    margin-bottom: 20px;
    font-weight: 400;
}

.blog-details-content a {
    color: var(--main-color);
    text-decoration: underline;
    font-weight: 600;
}

.sidebar {
    max-width: 400px;
    margin: 0 auto;
}

.sidebar-section {
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-section .section-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 20px;
    font-weight: 700;
    color: var(--third-color);
    margin-bottom: 10px;
    padding-bottom: 15px;
    line-height: 24px;
    border-bottom: 1px solid var(--border-color);
}

.section-icon {
    color: var(--danger-color);
    width: 24px;
    height: 24px;
}

/* Categories Section */
.categories-list {
    list-style: none;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    padding-left: 8px;
}

.category-name {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-item:hover .category-name {
    color: var(--main-color);
}

.category-count {
    color: var(--para-color);
    font-size: 14px;
    font-weight: 500;
}

/* Related Posts Section */
.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-card:hover {
    background-color: var(--light-background);
}

.post-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-title {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.post-card:hover .post-title {
    color: var(--main-color);
}

.related-blogs {
    margin: 30px 0;
}

.related-blogs h2 {
    font-weight: 700;
    font-size: 26px;
    margin: 1rem 0;
    color: var(--third-color);
}
