body:has(.knewscommunity-novabb-thread-single--featured) .knewscommunity-jobs-highlight-mockup .jobs-grid, body:has(.knewscommunity-novabb-thread-single--featured) .single-region-btns {
    display: none !important;
}

/*----- START 구인구직 temp CSS -----*/
/* 1. The Grid Layout */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    grid-template-rows: auto; 
    gap: 8px;
    margin-bottom: .5rem;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) { .jobs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }

/* 2. Card Styling */
.knewscommunity-jobs-highlight-card {
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    flex-direction: column;
	aspect-ratio: 16 / 8;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 180px;
}

/* Image Container for Featured Box */
.jobs-img-container {
    flex: 1;
    overflow: hidden;
}
.jobs-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. Header Classes (Backgrounds) */
.jobs-header {
    padding: 2px 10px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.bg-office { background-color: #3e90b8; }
.bg-sales { background-color: #5d3eb8; }
.bg-manage { background-color: #2b7489; }
.bg-restaurant { background-color: #f38a3a; }
.bg-finance { background-color: #1b5ba1; }
.bg-tech { background-color: #927b4e; }
.bg-service { background-color: #2e894c; }

/* 4. Body Content Styling */
.jobs-body {
    padding: 6px 7px;
    flex: 1;
}

.jobs-title {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 4px;
    line-height: 1.3;
    color: #111;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jobs-desc {
    font-size: 0.8rem;
    color: #333;
    margin: 2px 0;
	line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jobs-contact {
    font-size: 0.8rem;
    font-weight: 700;
	margin-bottom: 0;
    margin-top: auto; /* Pushes contact to bottom of body */
    color: #333;
}

/* 5. Special Promo Box */
.jobs-promo-box {
    justify-content: center;
    align-items: center;
    text-align: center;
}
.jobs-promo-box img {
	width: 100%; height: auto; margin-bottom: 10px;
}
.jobs-promo-text {
	font-weight: 700; font-size: 0.9rem;
}
/*----- END 구인구직 temp CSS -----*/