body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at top, rgba(0, 153, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: -1;
}

.blog-banner {
    padding-top: 100px;
}

.post-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;

}

.post-date {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.widget-title {
    margin-bottom: 16px;
}


.post-thumbnail {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 32px;
    border-radius: 16px;
}

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


@media (max-width: 768px) {
    .mil-breadcrumbs {
        margin-bottom: 30px;
    }

    .post-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

}

.post-content * {
    color: rgba(255, 255, 255, 0.9) !important;
}

.post-content h1 {
    font-size: 32px;
}

.post-content h2 {
    font-size: 28px;
}

.post-content h3 {
    font-size: 24px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin-bottom: 8px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .post-content h1 {
        font-size: 24px;
    }

    .post-content h2 {
        font-size: 20px;
    }

    .post-content h3 {
        font-size: 18px;
    }
}

.post-content p {
    text-align: justify;
    margin-bottom: 16px;
}

.post-content a,
.post-content a span {
    color: var(--color-primary) !important;
}

.post-content a:hover,
.post-content a span:hover {
    color: var(--color-primary) !important;
}

.post-content ul,
.post-content ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

.post-content ul li,
.post-content ol li {
    margin-bottom: 8px;
    text-align: justify;
}

.sidebar-widget {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}


.related-posts-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px) {
    .sidebar-widget {
        padding: 16px;
    }

    .related-posts-container {
        gap: 12px;
    }
}

.related-post-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.related-post-card .related-post-thumbnail {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
    width: 100px;
    border-radius: 8px;
}

.related-post-card .related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-card .related-post-info {
    flex-grow: 1;
}

.related-post-card .related-post-date {
    font-size: 10px;
    opacity: 0.8;
    margin-bottom: 0;
}

.related-post-card .related-post-title {
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.related-post-card:hover .related-post-title {
    color: var(--color-primary);
}

/* share */

.share-container {
    display: flex;
    gap: 16px;
}

.share-container .share-icon {
    text-decoration: none;
    color: var(--color-primary);
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
}

.share-container .share-icon:hover {
    background-color: var(--color-primary-dark);
}

.share-container svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.share-mobile {
    padding-bottom: 32px;
}

.share-mobile .share-container {
    gap: 12px;
}

.share-mobile .share-container .share-icon {
    height: 32px;
    width: 32px;
}

.share-mobile .share-container svg {
    width: 16px;
    height: 16px;
}

/* attachment */
.post-content img {
    margin-top: 16px;
    width: 100%;
    height: auto;
}

.attachment a {
    pointer-events: none;
    cursor: default;
}

.attachment__caption {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6)
}

.attachment__name,
.attachment__size {
    display: none;
}

/* .post-content table style  */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.8rem;
}

.post-content th,
.post-content td {
    border: 1px solid #ccc;
    padding: 8px;
}

.post-content th {
    background-color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.post-content table p {
    text-align: left;
    margin-bottom: 0.8rem;
}