:root {
    --blog-primary: #111827;
    --blog-muted: #6b7280;
    --blog-border: #e5e7eb;
    --blog-bg: #f9fafb;
    --blog-card: #fff
}


.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.blog-card {
   overflow: hidden;
    border: 1px solid #089e9e;
    border-radius: 10px;
    display: flex;
    background-color: #fff;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    transition: .3s ease-in-out;
}

.blog-card:hover {
    background-color: #f5f5f5;
    transform: scale(1.04);
    box-shadow: 0 0 15px 1px #089e9e1f;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.blog-card-body {
    padding: 18px
}

.blog-card a {
    text-decoration: none;
}



.blog-card time {
    display: block;
    color: var(--blog-muted);
    font-size: 14px
}

.post-layout {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px
}

.post-main img {
    max-width: 100%;
    height: auto
}

.post-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
    max-height: calc(100vh - 40px);
    overflow: auto
}

.toc a.active {
    font-weight: 700
}

.latest-card {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: inherit;
    text-decoration: none
}

.blog-single-page section{
width: 100%;
}

.latest-card img {
    width: 60px;
    height: 60px;
    object-fit: cover
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px
}

nav#toc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-layout a{
	color: #089e9e;
	transition: 0.3s ease-in-out;
}

.single-layout a:hover{
	color: #000;
}

#toc-list a{
    border-bottom: 1px dashed #089e9e;
    padding-bottom:5px;
    color: #089e9e;
    transition: 0.3s ease-in-out;
}

#toc-list a:hover{
    border-bottom-color: #000;
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: .4s;
    padding: 0 20px;
    line-height: 1.6;
    color: #000;
    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 100%;
    padding: 15px 20px;
    text-align: justify;
}




.content-container .faq-item {
    margin-bottom: 0;
}

.table-wrapper {
    overflow-x: auto
}

table {
    width: 100%;
    border-collapse: collapse
}

td,
th {
    border: 1px solid var(--blog-border);
    padding: 10px
}

@media(max-width:768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .post-layout {
        grid-template-columns: 1fr
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .post-sidebar {
        position: static;
        max-height: none
    }
    .blog-single-page .single-layout article{
    gap: 20px;
    }
    .inner-columns {
    display: flex !important;
    flex-direction: column;
}
}

@media(max-width:480px) {

    .blog-grid,
    .related-grid {
        grid-template-columns: 1fr
    }

}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.category-card {
    display: block;
    background: var(--blog-card);
    border: 1px solid var(--blog-border);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: var(--blog-primary);
    transition: .2s
}

.category-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transform: translateY(-2px)
}

.category-card h3 {
    margin: 0 0 8px
}

.category-card span,
.category-card small {
    display: block;
    color: var(--blog-muted);
    margin-top: 8px
}

.category-card p {
    color: var(--blog-muted)
}

@media(max-width:768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .category-grid {
        grid-template-columns: 1fr
    }
}