/* Remotive Jobs - Stylesheet */

.remotive-jobs-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.remotive-job-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.remotive-job-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.remotive-job-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.remotive-company-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.remotive-job-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
}

.remotive-job-title a {
    color: #1a1a2e;
    text-decoration: none;
}

.remotive-job-title a:hover {
    color: #0070f3;
}

.remotive-company-name {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.remotive-job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.remotive-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.remotive-category  { background: #eff6ff; color: #1d4ed8; }
.remotive-type      { background: #f0fdf4; color: #166534; }
.remotive-location  { background: #fef9c3; color: #854d0e; }
.remotive-salary    { background: #fdf4ff; color: #7e22ce; }

.remotive-date {
    margin: 0;
    font-size: 12px;
    color: #9ca3af;
}

.remotive-apply-btn {
    display: inline-block;
    margin-top: auto;
    padding: 9px 18px;
    background: #0070f3;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease;
}

.remotive-apply-btn:hover {
    background: #005acb;
}

.remotive-attribution {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 10px;
}

.remotive-attribution a {
    color: #6b7280;
    text-decoration: underline;
}

.remotive-no-jobs {
    color: #6b7280;
    font-style: italic;
}