
/* SENSOY24 Update 12 */

.job-logo.has-company-logo {
    padding: 7px;
    background: #fff;
}

.job-logo.has-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.job-detail-company-logo {
    width: 150px;
    height: 90px;
    margin-bottom: 22px;
    padding: 10px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.job-detail-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-profile-box {
    margin-top: 42px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fafbfc;
}

.company-profile-box h2 {
    margin-top: 0;
}

.company-contact-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.company-contact-grid > * {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: #4f5966;
    font-size: 13px;
}

@media (max-width: 640px) {
    .company-contact-grid {
        grid-template-columns: 1fr;
    }
}
