/* ========================= Blog Sidebar Start =================== */
.common-sidebar-wrapper {
    position: sticky;
    top: 120px;
    padding: 32px 24px;
    background-color: hsl(var(--section-bg));
    border-radius: 8px;
}

@media screen and (max-width: 1199px) {
    .common-sidebar-wrapper {
        padding: 24px;
    }
}

.common-sidebar {
    margin-bottom: clamp(1.5rem, 0.891rem + 1.268vw, 2rem);
}

.common-sidebar:last-of-type {
    margin-bottom: 0;
}

.common-sidebar__title {
    position: relative;
    margin-bottom: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
    padding-bottom: 8px;
    border-bottom: 1px solid hsl(var(--gray-five));
}

/* Category Style */
.category-list__item {
    margin-bottom: 12px;
    transition: 0.2s linear;
}

.category-list__item:hover {
    margin-left: 8px;
}

.category-list__item:last-child {
    margin-bottom: 0;
}

/* Tag */
.tag-list__link {
    color: hsl(var(--body-color));
    background-color: hsl(var(--white));
}

.tag-list__link:hover {
    background-color: hsl(var(--main));
    color: hsl(var(--static-white));
}

/* Tag End */
/* Latest Blog Css  */
.latest-blog {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    border-radius: 5px;
    overflow: hidden;
}

.latest-blog:last-of-type {
    margin-bottom: 0px;
}

.latest-blog__thumb {
    width: 80px;
    height: 80px;
    display: flex;
    overflow: hidden;
    border-radius: 5px;
}

@media screen and (max-width: 424px) {
    .latest-blog__thumb {
        width: 60px;
    }
}

.latest-blog__thumb a {
    display: block;
    height: 100%;
    width: 100%;
}

.latest-blog__content {
    width: calc(100% - 80px);
    padding-left: 16px;
}

@media screen and (max-width: 424px) {
    .latest-blog__content {
        width: calc(100% - 60px);
    }
}
/* Latest Blog Css End */
/* ========================= Blog Sidebar End =================== */
/* =========================== Blog Section Css Start ========================== */
.post-item {
    background-color: hsl(var(--white));
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.post-item:hover .post-item__thumb img {
    transform: scale(1);
}

.post-item__thumb {
    max-height: 294px;
    overflow: hidden;
}

.post-item__thumb img {
    transform: scale(1.1);
    transition: 0.2s linear;
}

.post-item__content {
    padding: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
}

.post-item__top {
    gap: clamp(1rem, -1.998rem + 4vw, 1.5rem);
}

.post-item__tag {
    padding: 8px 16px;
    background-color: #F5F7F9;
}

.post-item__title {
    margin: 24px 0 32px;
}

.post-item__title .link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================== Blog Section Css End ==========================/* ======================= Blog Details Section Start ========================= */
.blog-details::before, .blog-details::after {
    position: absolute;
    content: "";
    width: 573px;
    height: 355px;
    background: linear-gradient(152deg, rgba(246, 246, 246, 0.2) 17.12%, rgba(5, 228, 242, 0.2) 105.91%);
    filter: blur(100px);
    left: 24px;
    top: 0;
    z-index: -1;
}

.blog-details::after {
    background: linear-gradient(152deg, rgba(246, 246, 246, 0.2) 17.12%, rgba(94, 53, 242, 0.2) 105.91%);
    left: auto;
    right: 40px;
}

/* blog details top Start */
.blog-details-top {
    max-width: 1040px;
}

.blog-details-top__desc {
    max-width: 746px;
}

.blog-details-top__thumb img {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
}

/* blog details top End */
/* blog details content Start */
.blog-details-content__thumb {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    max-height: 460px;
}

.blog-details-content__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-text {
    padding: 0 8px;
    padding-right: 24px;
    border-left: 4px solid hsl(var(--main));
    position: relative;
}

.quote-text__icon {
    position: absolute;
    right: 0;
    top: 0;
}

.post-tag__link {
    padding: 5px 12px;
    background-color: hsl(var(--section-bg));
}

.post-tag__link:hover {
    color: hsl(var(--static-white)) !important;
    background-color: hsl(var(--main));
}

/* blog details content End */
/* Advisor Start */
.advisor {
    border-radius: 8px;
}

.advisor__thumb {
    width: clamp(3.75rem, 0.707rem + 6.339vw, 6.25rem);
    height: clamp(3.75rem, 0.707rem + 6.339vw, 6.25rem);
    border-radius: 50%;
    overflow: hidden;
}

/* Advisor End */
/* ======================= Blog Details Section End ========================= */