.job-offers__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.job-offers__item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.2s ease;
}

.job-offers__item:hover {
    border-color: #333;
}

.job-offers__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    padding: 24px;
}

.job-offers__title {
    font-size: 24px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    margin: 0 !important;
    flex: 1;
}

.job-offers__location {
    font-size: 18px;
    color: #666;
    flex: 0 0 auto;
    margin: 0 24px;
}

.job-offers__link {
    font-size: 18px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.job-offers__link::after {
    width: 20px !important;
    height: auto !important;
    background-repeat: no-repeat !important;
    margin-left: 12px !important;
}

.job-offers__link:hover .job-offers__link::after {
    right: -5px;
}

@media screen and (max-width: 768px) {
    .job-offers__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px;
    }

    .job-offers__location {
        margin: 0;
    }

    .job-offers__link {
        font-size: 14px;
    }

    .job-offers__link::after {
        width: 14px !important;
        margin-left: 8px !important;
    }
}
