.JC-PostGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.JC-PostCard-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.JC-IndexContainer .JC-PostCard-box:first-child {
    grid-column: 1 / 3;
}

.JC-PostCard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.JC-PostCard-box {
    width: 100%;
    border-radius: 14px;
    background: var(--secondBG);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border);
    transition: var(--transition-v2);
    position: relative;
    outline: 2px solid transparent;
}

.JC-PostCard-box:hover {
    transition: var(--transition-v2);
    transform: scale(1.005)translateY(-8px);
    outline: 2px solid var(--accent);
}

.JC-PostCard-hr {
    margin: 0px;
    border: inherit;
    background: #c5c7d1;
    height: 2px;
    width: 35px;
    display: flex;
    border-radius: 8px;
    align-items: center;
}

.JC-PostCard-image {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.JC-PostCard-tag {
    display: flex;
    align-items: center;
    gap: 15px;
}

.JC-PostCard-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
}

.tag-color {
    background: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    padding: 0px 8px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--body);
}

.JC-PostCard-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    border-top: 1px solid var(--border);
}

.JC-ArticleHeader .JC-PostCard-info {
    border-bottom: 1px solid var(--border);
}

.JC-PostCard-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.JC-PostCard-title {
    font-size: 28px;
    font-family: var(--font-concert);
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: var(--textShadow);
}

.JC-PostCard-excerpt {
    font-size: 15px;
    color: var(--grey);
    line-height: 23px;

    height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post-card-meta-date {
    color: var(--grey);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

.JC-Article {
    position: relative;
}

.JC-ArticleCard {
    width: 100%;
    outline: 2px solid transparent;
    position: relative;
}

.JC-ArticleHeader-top-frame {
    position: absolute;
    top: -20px;
    width: 100%;
    transform: scale(1.1);
    z-index: 5;
    left: -10px;
}

.JC-ArticleHeader-bottom-frame {
    position: absolute;
    bottom: -20px;
    width: 100%;
    transform: scale(1.1);
    z-index: 5;
    left: -10px;
}

.JC-ArticleHeader-top-frame,
.JC-ArticleHeader-bottom-frame,
.JC-ArticleHeader-top-frame img,
.JC-ArticleHeader-bottom-frame img {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none; 
}

/*
.JC-PostCard-top-frame {
    position: absolute;
    top: -40px;
    width: 100%;
    transform: scale(1.1);
    z-index: 5;
    left: -10px;
}

.JC-PostCard-bottom-frame {
    position: absolute;
    bottom: -40px;
    width: 100%;
    transform: scale(1.1);
    z-index: 5;
    left: -10px;
}

.JC-PostCard::after {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    background-size: contain;
    height: 100%;
    width: calc(100% + 76px);
    left: -48px;
    background-image: url(https://i.ibb.co/VRTpYGX/3.png);
}
*/
.JC-ArticleHeader {
    display: flex;
    flex-direction: column;
    padding-top: 35px;
    position: relative;
    z-index: 6;
}

.JC-ArticleCard-title {
    font-size: 54px;
    font-family: var(--font-concert);
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: var(--textShadow);
    padding: 15px;
    text-align: center;
    padding-bottom: 35px;
}

.JC-PostCard-info-between {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
}

.JC-PostCard-info-between .post-card-meta-date {
    font-size: 14px;
}

.JC-ArticleCard-image {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
}

.JC-ArticleCard-image .article-image > img {
    border-radius: 24px;
    box-shadow: var(--box-shadow-v2);
}

.JC-ArticleContent {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    z-index: 5;
}

.JC-AuthorCard {
    margin-top: 60px;
    border-top: 1px solid #c5c7d1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 25px 0px 35px;
    gap: 10px;
    position: relative;
    z-index: 6;
}

.JC-AuthorTitle {
    font-size: 28px;
    font-family: var(--font-concert);
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: var(--textShadow);
    text-align: center;
    padding-bottom: 15px;
}

.author-avatar {
    height: 65px;
    width: 65px;
    background: var(--accent);
}

.JC-AuthorName a {
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
}

.JC-AuthorName a:hover {
    color: var(--accentHover);
    font-size: 18px;
    font-weight: 700;
}

.JC-TagContainer {
    width: 100%;
}

.JC-PostMargin {
    margin-top: 50px;
}

.JC-PostPadding {
    padding: 35px;
}

.JC-ArticleCard-desc {
    text-align: center;
    font-size: 18px;

    font-size: 18px;
    font-weight: 500;
    margin-top: -10px;
}

.JC-ButtonStore {
    padding: 0px 25px;
}

.JC-ContainerBar-left > ol, ul {
    padding: 0px;
}

.nav {
    display: flex;
    align-items: center;
    list-style: none;
    width: 100%;
    position: relative;
    text-align: center;
    gap: 10px;
}

.nav-home {
    line-height: inherit;
    padding: 0px;
}

.nav > li+li {
    padding: 0px;
    margin: 0px;
}

.nav > li > a {
    height: 50px;
    background: rgb(255,230,108);
    border-radius: 14px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgb(215,185,35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
    gap: 10px;
    min-width: 100px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--body);
    transition: var(--transition);
    z-index: 10;
    position: relative;
}

.nav > li > a:hover, .nav > li > a:focus {
    color: var(--body);
    background: rgb(255,239,161);
    transition: var(--transition);
}

.nav-store > a {
    min-width: 140px;
    color: #fff !important;
    background: var(--accentHover) !important;
    text-shadow: var(--textShadow);
    font-family: var(--font-concert);
    letter-spacing: 3px;
    font-size: 20px;
    background-color: #5669ad !important;
}

.nav-store > a:hover {
    color: #fff !important;
    background-color: rgb(36, 45, 139) !important;
}

.JC-PageHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 25px;
}

.JC-PageHeader .article-title {
    color: #fff;
}

.JC-StaffSections {
    margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
   .JC-IndexContainer .JC-PostCard-box:first-child {
        grid-column: auto;
    }

    .JC-ArticleCard-image {
        width: 90%;
    }

    .JC-ArticleContent {
        width: 90%;
    }

    .JC-Container {
        width: 100%;
    }

    .JC-ContainerContent::after {
        display: none;
    }

    .JC-ArticleHeader-top-frame {
        left: -5px;
        transform: scale(1.2);
    }

    .JC-ArticleHeader-bottom-frame {
        left: -5px;
        transform: scale(1.2);
    }
}

@media only screen and (max-width: 1050px) {
    .JC-PostGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 800px) {
    .JC-ContainerBar-center {
        display: none;
    }

    .JC-ContainerBar-between {
        display: flex;
    }

    .JC-MobileMenu {
        display: flex;
    }

    .JC-navBar {
        height: auto;
        padding: 15px;
    }
}

@media only screen and (max-width: 650px) {
    .JC-PostGrid {
        grid-template-columns: repeat(1, 1fr);
    }

    .JC-ArticleContent {
        width: 80%;
        line-height: inherit;
    }

    .JC-ArticleCard-title {
        font-size: 42px;
    }

    .JC-AuthorTitle {
        font-size: 24px;
    }
}

@media only screen and (max-width: 450px) {
    .JC-ArticleCard-title {
        font-size: 36px;
    }
}