/* === file: /css/ppid-cards.css === */

/* Grid Layout */
.ppid-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Section Title*/
.section-title{
    color: var(--e-global-color-4a628ed); /* Navy Blue */
    font-family: 'Poppins';
}

/* The Card Itself */
.ppid-doc-card {co
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    height: 100%;
}

.ppid-doc-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #C5A059; /* Minang Gold */
}

/* Header: Title + Icon */
.doc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.doc-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--e-global-color-4a628ed); /* Navy Blue */
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s;
}

.doc-title-link {
    text-decoration: none;
    flex: 1;
    margin-right: 10px;
}

.doc-title-link:hover .doc-title {
    color: #C5A059;
}

.doc-card-header .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Meta Data Row */
.doc-meta {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.doc-badge-ver {
    background-color: #f3f4f6;
    color: #4b5563;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-right: 8px;
    border: 1px solid #e5e7eb;
    font-size: 10px;
}

/* Description */
.doc-excerpt {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Footer */
.doc-card-footer {
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #4b5563;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #9ca3af;
}

.doc-action-btn {
    font-size: 18px;
    color: #164B7E;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s;
}

.doc-action-btn:hover {
    color: #C5A059;
    transform: translateX(3px);
}