.vvj-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: inherit;
    font-family: inherit;
}

.vvj-header h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 2.75vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.vvj-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.vvj-filter-field {
    flex: 1 1 220px;
    min-width: 200px;
}

.vvj-filter-select,
.vvj-search-input {
    width: 100%;
    min-height: 50px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    background: transparent;
    color: inherit;
    font: inherit;
}

.vvj-search-input {
    display: block;
}

.vvj-job-list {
    display: block;
}

.vvj-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vvj-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.vvj-card:hover {
    /* transform: translateY(-2px); */
    border-color: rgba(0, 0, 0, 0.12);
}

.vvj-card-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: center;
}

.vvj-meta-item {
    display: inline-block;
    margin-right: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
}

.vvj-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(0, 115, 230, 0.1);
    color: var(--primary-color, #0165d8);
    font-size: 0.92rem;
    font-weight: 600;
}

.vvj-card-title {
    margin: 0 0 1rem;
    font-size: 1.45rem;
    line-height: 1.2;
}

.vvj-card-title a {
    color: inherit;
    text-decoration: none;
}

.vvj-description-preview {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.75;
    margin-bottom: 1rem;
    max-height: 5.5rem;
    overflow: hidden;
}

.vvj-expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    color: rgba(0, 0, 0, 0.82);
    margin-bottom: 1rem;
    font-family: inherit;
    line-height: 1.85;
    font-weight: 400;
}

.vvj-card.expanded .vvj-expanded-content {
    max-height: none;
}

.vvj-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
}

.vvj-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: none;
}

.vvj-button:hover {
    /* transform: translateY(-1px); */
}

.vvj-button--primary {
    background-color: var(--primary-color, #1961d6);
    color: #ffffff;
}

.vvj-button--secondary {
    background-color: transparent;
    color: var(--primary-color, #1961d6) !important;
    border-color: rgba(25, 97, 214, 0.18);
}

.vvj-button--secondary:hover {
    background-color: #000000;
    color: #ff9900;
    border-color: rgba(0, 0, 0, 0.3);
}

.vvj-button--primary:hover {
    background-color: var(--primary-color, #1961d6);
    color: #ffffff;
}

.vvj-empty-message {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: rgba(244, 245, 247, 0.9);
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    font-size: 1rem;
}

.vvj-pagination {
    margin-top: 2rem;
    text-align: center;
}

.vvj-pagination-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vvj-pagination-item {
    display: inline-flex;
}

.vvj-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background-color: transparent;
    color: var(--primary-color, #1961d6);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.vvj-pagination-link:hover {
    background-color: var(--primary-color, #1961d6);
    color: #ffffff;
    border-color: var(--primary-color, #1961d6);
}

.vvj-pagination-current {
    background-color: var(--primary-color, #1961d6);
    color: #ffffff;
    border-color: var(--primary-color, #1961d6);
    cursor: default;
}

.vvj-pagination-current:hover {
    background-color: var(--primary-color, #1961d6);
    color: #ffffff;
}

@media (max-width: 720px) {
    .vvj-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .vvj-card-actions {
        justify-content: stretch;
    }

    .vvj-button {
        width: 100%;
    }
}
