.job-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.job-main {
    flex: 2;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    margin-top: 40px;
}

.job-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.job-header .logo {
    width: 60px;
    height: 60px;
}

.job-title {
    margin: 0;
    font-size: 20px;
}

.salary {
    color: #007bff;
    font-weight: bold;
    display: block;
    margin-top: 4px;
}

.job-info {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #eef2f7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.job-meta-cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.meta-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9fb;
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 150px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    gap: 20px;
    border: 1px solid #e6eaf0;
}

.meta-card .icon {
    font-size: 22px;
    color: #004120;
    min-width: 26px;
    text-align: center;
}

.meta-card .label {
    font-size: 13px;
    color: #777;
}

.meta-card .value {
    font-weight: 600;
    color: #1a1a1a;
}

.skills {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills span {
    background: #d8f5e0;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.job-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.job-description h3 {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 14px;
}

.job-description ul {
    margin-left: 20px;
}

.job-description p,
.job-description ul li {
    color: #000;
    line-height: 30px;
}

.job-sidebar {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.job-sidebar h3 {
    font-size: clamp(20px, 2vw, 30px);
    margin-bottom: 16px;
}

.company-info {
    text-align: center;
}

.company-info .logo {
    width: 70px;
    margin-bottom: 10px;
}

.map img {
    width: 100%;
    margin-top: 16px;
    border-radius: 8px;
}

.job-contact h4 {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 20px;
    margin-top: 20px;
}

.related-jobs {
    margin-top: 20px;
}

.related-jobs h4 {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 20px;
    margin-top: 40px;
}

.suggested-job {
    display: block;
    background: #f9f9f9;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 4px solid rgb(76, 175, 80);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.suggested-job:hover {
    background: #d0f0dc;
    color: #004120;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .job-container {
        flex-direction: column;
    }

    .job-meta {
        flex-direction: column;
    }
}

@media screen and (max-width: 600px) {
    .job-meta-cards {
        flex-direction: column;
    }
}   

@media screen and (max-width: 575px) {
    .job-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
