/* Loader */
.jobs__loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.jobs__spinner {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.jobs__spinner-circle {
    width: 100%;
    height: 100%;
    border: 3px solid #e0e0e0;
    border-top-color: #333;
    border-radius: 50%;
    animation: eitJobsSpin 0.8s linear infinite;
}

@keyframes eitJobsSpin {
    to {
        transform: rotate(360deg);
    }
}

.jobs__loader-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Job list */
.jobs__item {
    margin-bottom: 60px;
}

.jobs__item:last-child {
    padding-bottom: 0;
}

/* Header */
.jobs__item-header {
    margin-bottom: 12px;
}

.jobs__item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.jobs__item-meta > div {
    display: flex;
    align-items: center;
}

.jobs__item-meta span {
    display: inline-flex;
    font-size: 14px;
    color: #666;
}

.jobs__item-meta svg {
    width: 12px;
    height: 12px;
    margin-right: 6px;
}

/* Footer / Link */
.jobs__item-footer {
    margin-top: 16px;
    text-align: right;
}

/* Empty / Error states */
.jobs__empty,
.jobs__error {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 15px;
}

.jobs__error {
    color: #c00;
}
