.vacancies-modern-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.vacancy-card-modern {
    background: var(--white);
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
}

.vacancy-card-modern:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.08);
}

/* Эффект нажатия (Active State) */
.vacancy-card-modern:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
}

.card-header-flex {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.vacancy-company-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 700;
}

.company-logo-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 1px solid transparent;
}

.title-area {
    flex: 1;
    min-width: 0;
}

.title-area h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #1e293b;
    line-height: 1.3;
}

.vacancy-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag-salary {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.tag-pill {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}