.jbp-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0px;
}

.jbp-column {
    flex: 1;
    min-width: 300px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    background: #fff;
    transition: transform 0.3s ease;
}



.jbp-column h2 {
    font-size: 1.5em;
    margin: 0 0 10px;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
	font-weight: 600;
}

.jbp-posts {
    margin-bottom: 15px;
}

.jbp-post {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background: #fafafa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.jbp-post:hover {
    border-color: #d0d0d0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.jbp-post p {
    font-size: 0.9em;
    margin: 0px;
    font-weight: 600;
    line-height: 1.2;
}

.jbp-post p a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.jbp-custom-fields {
    font-size: 0.7em;
    color: #444;
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
    justify-content: left;
	margin-top:5px;
}

.jbp-custom-fields .jbp-field {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.jbp-custom-fields .jbp-field strong {
    font-weight: 700;
    margin-right: 0px;
}

.jbp-custom-fields .jbp-field i {
    color: #0073aa;
    font-size: 0.9em;
    margin-right: 0px;
}

.jbp-field-sep {
    color: #ccc;
    font-size: 0.8em;
}

.jbp-apply-button {
    padding: 2px 5px;
    font-size: 0.85em;
    text-decoration: none;
    border-radius: 4px;
    transition: filter 0.3s ease;
    white-space: nowrap;
}

.jbp-archive-button {
    display: block;
    text-align: center;
    padding: 5px 20px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    transition: filter 0.3s ease;
}
.jbp-archive-button:hover {
    filter: brightness(90%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* soft elevated shadow */

}

@media (max-width: 768px) {
    .jbp-column {
        min-width: 100%;
    }

        .jbp-custom-fields {
        align-items: flex-start;
        gap: 0 5px;
    }
	.jbp-post p {
    font-size: 1em;
}

    .jbp-field-sep {
        display: none;
    }

    .jbp-apply-button {
        margin-top: 0px;
        align-self: flex-start;
    }
}