.karriere-results {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.karriere-link {
    text-decoration: none;
    color: inherit;
}

.karriere-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 8px;
    margin-top: 8px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.karriere-item:hover {
    background-color: #f9f9f9;
}

.karriere-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.karriere-firma {
    font-size: 0.8em;
    color: #808080;
    margin-bottom: 4px;
}

.karriere-title {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 4px;
}

.karriere-meta {
    font-size: 0.8em;
    color: #808080;
}

.karriere-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; /* Fester Platz für den Pfeil */
}

.karriere-arrow .dashicons {
    font-size: 20px;
}