.jobCardCustom {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #0000000f;
    margin: 20px 0;
    direction: rtl;
}

.jobCardCustom-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

/* info */
.jobCardCustom-info {
    display: block;
    width: 100%;
}

.bookmark-btn {
    flex-direction: row;
    align-items: center;
}

.job-post-meta {
    flex-direction: row;
    margin-bottom: 0px;
    align-items: center;
}

.jobCardCustom-title {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 8px;
    color: #000000;
    font-weight: 500;
}

.jobCardCustom-desc {
    font-size: clamp(13px, 1.5vw, 16px);
    color: #1b1a1aad;
    margin-bottom: 15px;
    line-height: 1.6;
}

.jobCardCustom-meta-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-top: 15px;
}

.jobCardCustom-meta {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 143px;
}
.jobCardCustom-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* buttons */
.jobCardCustom-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.jobCardCustom-apply {
    background: #fe6c1d;
    color: #fff;
    border: none;
    padding: 8px 26px;
    border-radius: 6px;
    cursor: pointer;
    font-size: clamp(13px, 1.5vw, 16px);
    display: flex;
    gap: 6px;
    align-items: center;
}

.jobCardCustom-save {
    background: transparent;
    border: 1px solid #c4b1d7;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    color: #0e0e0e;
    font-size: clamp(13px, 1.5vw, 16px);
    display: flex;
    gap: 10px;
    align-items: center;
}

/* logo */
.jobCardCustom-logo {
    width: 123px;
    height: 123px;
    border-radius: 50%;
    background: #eaecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #344054;
    flex-shrink: 0;
}

.jobdetailsCard {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #00000012;
    border-radius: 10px;
    padding: 28px 20px;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    margin: 20px 0;
}

/* item */
.jobdetailsItem {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    padding: 0 60px;
}
.jobdetailsItem::after {
    content: "";
    position: absolute;
    top: 50%;
    inset-inline-end: 0;
    transform: translateY(-50%);
    width: 1.5px;
    height: 45px;
    background: #0000001a;
}

.jobdetailsItem:last-child::after {
    display: none;
}

.jobdetailsDivider {
    display: none;
}

/* icon */
.jobdetailsIcon {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    flex-shrink: 0;
}

/* text */
.jobdetailsContent {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.jobdetailsLabel {
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 400;
    color: #7c8493;
}

.jobdetailsValue {
    margin: 0;
    font-size: clamp(16px, 1.7vw, 20px);
    color: #0f5bc3;
    font-weight: 500;
}

/* divider */
.jobdetailsDivider {
    width: 1.5px;
    height: 45px;
    background: #0000001a;
    flex-shrink: 0;
}

/* responsive */

@media (max-width: 768px) {
    .jobCardCustom-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .company-info {
        flex-direction: column;
    }
    .flex-sec {
        flex-direction: column;
    }
    .bookmark-btn {
        flex-direction: row;
        align-items: center;
    }

    .jobCardCustom-meta-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .jobCardCustom-actions {
        justify-content: space-between;
        width: 100%;
    }

    .jobCardCustom-logo {
        align-self: flex-start;
    }
    .jobCardCustom-meta {
        margin-right: 0 !important;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }
    .jobdetailsCard {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 14px;
    }

    .jobdetailsItem {
        padding: 0 14px 16px 0;
    }

    .jobdetailsItem::after {
        content: "";
        position: absolute;

        width: 1px;
        height: 45px;

        background: #0000001a;

        top: 50%;
        left: -7px;

        transform: translateY(-50%);
    }

    .jobdetailsItem:nth-child(even)::after {
        display: none;
    }
}

@media (max-width: 500px) {
    .job-card-header {
        flex-direction: column !important;
        gap: 15px !important;
    }
    .bookmark-btn {
        flex-direction: row !important;
        align-items: center !important;
    }
    .job-post-meta {
        flex-direction: row !important;
        margin-bottom: 0px !important;
        align-items: center !important;
    }
}
.jobdetailslist-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #00000012;
    margin: 20px 0;
}

.jobdetailslist-section {
    margin: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 10px;
    padding: 20px;
}

.jobdetailslist-title {
    font-size: clamp(24px, 2vw, 28px);
    font-weight: 500;
    color: #000000;
    margin-bottom: 14px;
}

.jobdetailslist-description {
    font-size: clamp(16px, 1.2vw, 20px);
    color: #000000;
    line-height: 1.5;
}

.jobdetailslist-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.jobdetailslist-items {
    padding-right: 22px;
}

.jobdetailslist-items li {
    margin-bottom: 1px;
    font-size: clamp(16px, 1.2vw, 20px);
    color: #000000;
    line-height: 1.5;
}

/* Responsive */

@media (max-width: 768px) {
    .jobdetailslist-container {
    }
    .jobCardCustom-meta {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .jobdetailslist-container {
        border-radius: 8px;
    }
}
.jobdetailslist-items {
    padding-right: 22px;
    list-style-type: disc;
}

/* Prevent horizontal overflow from Google Adsense and injected/rich-text content on mobile */
ins.adsbygoogle,
.google-anno-skip,
iframe {
    max-width: 100% !important;
}

.jobdetailslist-section * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}
