#stilling-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.filter-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.filter-button {
    padding: 0.5rem 1rem;
    background: #f2f2f2;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.filter-button.active {
    background: #003087;
    color: white;
}
.stilling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.stilling-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.stilling-card h3 a {
    color: #003087;
    font-size: 1.25rem;
    text-decoration: none;
}
.stilling-card p {
    color: #666;
    margin: 1rem 0;
}
.stilling-card .meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}
.stilling-card .read-more {
    font-weight: bold;
    color: #003087;
    text-decoration: none;
}
