.blogs .post-card,
.post {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 var(--shadow-size) 0 rgba(0, 0, 0, .85);
    border-radius: 0.5rem;
}

.latest-post {
    width: 100%;
}

.recent-post {
    width: 100%;
}

.recent-post .post-card {
    box-shadow: none;
}

.recent-post .post-container .post-card .card-head {
    width: 40%;
}

.recent-post .post-container .post-card .card-body {
    width: 60%;
}

.recent-post .post-image {
    object-fit: contain;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0.5rem;
}

.latest-post .post-card .card-head img {
    width: 100%;
    object-fit: contain;
    padding: 1rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 1.5rem;
}

.post-card .card-body {
    padding: 1rem;
}

.post .post-card .card-body {
    padding-top: 0;
    color: var(--fg-clr-dark);
}

.post .post-time {
    color: var(--fg-clr-dark);
}

.post .post-card .card-head img {
    width: 100%;
    object-fit: contain;
    padding: 1rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: all ease 300ms;
}

.post-body {
    opacity: 0.8 !important;
}

.post-time {
    opacity: 0.6 !important;
}

div.blogs a {
    text-decoration: none;
    color: var(--fg-clr-dark);
}

.post:hover img {
    transform: scale(1.05);
}

.full-post .table-card {
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

body.light-mode .full-post .table-card {
    border: 2px solid rgba(0, 0, 0, 0.4);
}

.full-post .table-card a {
    color: rgba(255, 255, 255, 0.7);
}

.full-post .table-card .card-body {
    border-top: 2px solid rgba(255, 255, 255, 0.4);
}

body.light-mode .full-post .table-card .card-body {
    border-top: 2px solid rgba(0, 0, 0, 0.4);
}

.full-post .table-card .card-header a,
.full-post .table-card .card-body {
    transition: all ease 300ms;
}

body.light-mode .full-post .table-card .card-header a {
    color: var(--fg-clr-light);
}

.full-post .table-card.collapsed .card-header a {
    transform: rotate(180deg);
}

.full-post .table-card.collapsed .card-body {
    height: 0;
    padding: 0;
    overflow: hidden;
}

body.light-mode div.table-of-contents li a {
    color: var(--fg-clr-light);
}

.post-navigation a {
    padding: 1rem;
    border-radius: 1rem;
    border: 2px solid var(--brand-clr-1);
    color: var(--brand-clr-1);
    font-weight: bold;
}

.price-table {
    width: 100%!important;
    margin: auto;
}

.price-table th,
.price-table td {
    padding: 0.5rem 1rem;
    border: 1px solid;
}

.price-table th {
    background-color: red;
    font-weight: bold;
    text-transform: uppercase;
}

.price-table tr:last-child {
    background-color: rgb(255,128,128);
    font-weight: bold;
}

p span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
ul span,
ol span {
    font-family: unset!important;
    font-size: unset!important;
}

.full-post img {
    width: 100% !important;
    height: auto !important;
    max-height: calc(100vh - var(--navbar-height) - 10rem);
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    div.blogs {
        max-width: var(--max-vw);
    }

    .latest-post {
        width: 70%;
    }

    .recent-post {
        width: 30%;
    }

    .recent-post .post-container {
        height: calc(100vh - 50rem);
        overflow-y: scroll;
    }

    .recent-post .post-container {
        scrollbar-color: red transparent;
        scrollbar-width: thin;
        z-index: 1;
    }

    .recent-post .post-container::-webkit-scrollbar-thumb {
        border-radius: 5px;
    }

    .recent-post .post-container .post-card .card-head,
    .recent-post .post-container .post-card .card-body {
        width: 100%;
    }
}