.jaexplore-sortable-table .jaexplore-drag-handle {
    cursor: move;
    display: inline-flex;
    align-items: center;
}

.jaexplore-sortable-table tr.dragging {
    opacity: 0.7;
}

.jaexplore-save-order-wrap {
    display: block;
}

.jaexplore-save-order {
    min-width: 140px;
}

.jaexplore-save-order--dirty {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Explore item detail page */
.ja-explore-item {
    max-width: 56rem;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

.ja-explore-item__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.ja-explore-item__back:hover {
    color: #fff;
}

.ja-explore-item__card {
    background: #121721;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
}

.ja-explore-item__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b0f16;
}

.ja-explore-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ja-explore-item__body {
    padding: 1.5rem 1.5rem 2rem;
}

.ja-explore-item__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ja-explore-item__type {
    margin: 0 0 0.35rem;
    color: #9ca3af;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ja-explore-item__title {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
}

.ja-explore-item__funded {
    margin: 0 0 0.75rem;
    color: #c2edf0;
    font-size: 0.95rem;
}

.ja-explore-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.25rem;
}

.ja-explore-item__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.ja-explore-item__desc {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.65;
}

.ja-explore-item__desc p:last-child {
    margin-bottom: 0;
}

body.ja-d2y-explore-page .opp-card__link {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    min-height: 200px;
    color: inherit;
    text-decoration: none;
}

body.ja-d2y-explore-page .gift-card__link {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

body.ja-d2y-explore-page .gift-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 767px) {
    body.ja-d2y-explore-page .opp-card__link {
        flex-direction: column;
        min-height: 0;
    }
}

@media (min-width: 768px) {
    .ja-explore-item {
        padding-top: 2rem;
    }

    .ja-explore-item__body {
        padding: 2rem 2.25rem 2.5rem;
    }
}


