/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/


/* .pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    color: #37517e;
}

.pricing h4 {
    font-size: 48px;
    color: #37517e;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: #47b2e4;
    font-size: 18px;
    display: block;
} */

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.buy-btn {
    box-shadow: 0 3px 20px -2px rgba(9, 20, 43, 0.1);
    background: #157af5;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
    background: #47b2e4;
    color: #fff;
}

.pricing .featured {
    border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
    background: #47b2e4;
    color: #fff;
}

.pricing .featured .buy-btn:hover {
    background: #23a3df;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}


/* ======= Kategori Dokumen ======= */

.jdih-categories {
    background-color: white;
}

.category-card {
    display: block;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    text-align: center;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.category-icon {
    margin-bottom: var(--item-spacing);
}

.category-icon i {
    font-size: var(--icon-lg);
    color: var(--primary-color);
}

.category-card h5 {
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: var(--h5-font-size);
}

.category-count {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: block;
}


/* ======= Dokumen Card ======= */

.document-card {
    height: 100%;
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.document-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px var(--card-padding);
    border-bottom: 1px solid var(--gray-200);
}

.document-date {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.document-body {
    padding: var(--card-padding);
    flex-grow: 1;
}

.document-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: var(--h5-font-size);
    margin-bottom: 15px;
    line-height: 1.4;
}

.document-title a {
    color: var(--gray-800);
    text-decoration: none;
}

.document-title a:hover {
    color: var(--primary-color);
}

.document-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.document-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.document-meta div i {
    color: var(--primary-color);
    width: 14px;
    text-align: center;
    font-size: var(--icon-sm);
}

.document-footer {
    padding: 12px var(--card-padding);
    border-top: 1px solid var(--gray-200);
    background-color: var(--gray-100);
}