.career .career__img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .career .g-5 {
        --bs-gutter-x: 0;
    }

    .career .g-4 {
        --bs-gutter-x: 0;
    }
}
.career__content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.career__highlights {
    list-style: none;
    margin-top: 20px;
    padding-left: 0;
}

.career__highlights li {
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    color: #222;
    font-weight: 500;
}

.career__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    color: #f29f05; /* Tyremart highlight color */
    font-weight: bold;
}
.jobs {
    padding-bottom: 100px;
}
.job-card {
    position: relative;
    display: block;
    border: 1px solid var(--crank-bdr-color);
    border-radius: 20px;
    padding: 30px 30px 25px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 1;

    background-color: #f4f4f4;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--crank-base);
}

.job-card:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.job-card__top {
    margin-bottom: 10px;
}

.job-card__title {
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--crank-black);
    transition: all 0.5s ease;
}

.job-card__title:hover {
    font-size: 20px;

    color: var(--crank-base);
}
.job-card__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.job-card__meta li {
    font-size: 0.92rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-card__icon {
    font-style: normal;
    font-size: 1rem;
}

.job-card__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
    .job-card__meta {
        grid-template-columns: 1fr;
    }
    .job-card {
        padding: 18px;
    }
}

/* job details  */

.job-details__info {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 20px;
    top: 20px;
    position: sticky;
}
.job-details__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    text-align: left;
    display: inline-block;
}

/* Job Details List */
.job-details__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-details__list li {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    /* border-bottom: 1px dashed #f29f05; */
    padding-bottom: 20px;

    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.job-details__list i {
    color: var(--crank-base);
    color: #333;
    font-size: 18px;
    min-width: 24px;
}

.job-details__list strong {
    margin-right: 5px;
    color: #333;
}
.job-details__content {
    /* background-color: #f4f4f4;
    padding: 25px;
    border-radius: 20px; */
    line-height: 1.6;
}

.job-details__heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-left: 4px solid #f29f05;
    padding-left: 12px;
}

.job-details__content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
}

.job-details__content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #333;
    position: relative;
}

.job-details__content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.job-details__content ul li {
    font-size: 16px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.job-details__content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f29f05;
    font-size: 14px;
}

.apply-form-wrap {
    background-color: #f4f4f4;
    border-radius: 30px;
    padding: 30px;
}
