.ol-res {
    --ol-res-bg: #fff;
    --ol-res-border: #e0e0e0;
    --ol-res-muted: #6b6e5c;
    width: 100%;
}

.ol-res__head {
    margin-bottom: 1.25rem;
}

.ol-res__body--loading {
    opacity: 0.55;
    pointer-events: none;
}

.ol-res__count {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #049f4d;
}

.ol-res__count .ol-res__count-num {
    font-weight: 700;
}

.ol-res__empty {
    margin: 0;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--ol-res-muted);
    border: 1px dashed var(--ol-res-border);
    border-radius: 12px;
    background: #fafafa;
}

.ol-res__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.ol-res__item {
    margin: 0;
}

.ol-res .job {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.2fr);
    column-gap: 1.25rem;
    row-gap: 0.5rem;
    align-items: center;
    width: 100%;
    min-height: 90px;
    height: 90px;
    padding: 0.85rem 1rem;
    box-sizing: border-box;
    background: var(--ol-res-bg);
    border: 1px solid var(--ol-res-border);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
}

.ol-res .job__title {
    grid-column: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: #000;
}

.ol-res .job__title::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}

.ol-res .job__category,
.ol-res .job__area {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: #7a7c69;
}

.ol-res .job__category {
    grid-column: 2;
    min-width: 0;
    justify-self: start;
    text-align: left;
}

.ol-res .job__location {
    grid-column: 3;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    width: 100%;
}

.ol-res .job__area {
    min-width: 0;
    text-align: left;
}

.ol-res .apply__icon {
    flex-shrink: 0;
    line-height: 0;
}

.ol-res .apply__icon svg {
    display: block;
}

.ol-res .job.job--area-color {
    border-color: var(--ol-res-border);
    transition: box-shadow 0.2s ease;
}

.ol-res .job.job--area-color .job__title {
    color: var(--ol-res-accent);
}

.ol-res .job.job--area-color .job__title::before {
    background: var(--ol-res-accent);
}

.ol-res .job.job--area-color:hover {
    box-shadow: 0 4px 16px color-mix(in srgb, var(--ol-res-accent) 35%, transparent);
}

.ol-res .job.job--area-color:hover .apply__icon circle {
    fill: var(--ol-res-accent);
    stroke: var(--ol-res-accent);
    opacity: 1;
}

.ol-res .job.job--area-color:hover .apply__icon path {
    fill: #fff;
}

.ol-res__foot {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.ol-res__summary {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #049f4d;
    text-align: center;
}

.ol-res__summary .ol-res__summary-num {
    font-weight: 700;
}

.ol-res__more {
    appearance: none;
    box-sizing: border-box;
    border: 2px solid #049f4d;
    background: #049f4d;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
    padding: 16px 40px;
    border-radius: 8px;
    cursor: pointer;
}

.ol-res__more:hover {
    background: #fff;
    color: #049f4d;
    border-color: #049f4d;
}

.ol-res__more:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(4, 159, 77, 0.35);
}

.ol-res__more:disabled,
.ol-res__more:disabled:hover {
    background: #049f4d;
    color: #fff;
    border-color: #049f4d;
    opacity: 0.55;
    cursor: wait;
}

@media (max-width: 767px) {
    .ol-res .job {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 90px;
    }

    .ol-res .job__title {
        grid-column: 1;
        gap: 0;
        font-size: 18px;
    }

    .ol-res .job__title::before {
        display: none;
        content: none;
    }

    .ol-res .job__category {
        grid-column: 1;
    }

    .ol-res .job__location {
        grid-column: 1;
        justify-content: space-between;
    }
}
