@charset "UTF-8";

.job-special-view-body{
	margin-top:15px;
	margin-bottom:15px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 28px 24px 32px;
    overflow: hidden;
}

.job-special-view-body img {
	opacity: 1;
	width: 100%;
}

.page-header-section {
    padding: 40px 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* Job Special Content Section */
.job-special-content {
    background: #ffffff;
    padding: 40px 0 60px;
    min-height: 600px;
}

.board_wrap {
    width: 100%;
}

.board_wrap.thumb {
    margin-bottom: 30px;
}

/* Search Wrap */
.search_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: nowrap;
}

.search_wrap form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 800px;
    flex-wrap: nowrap;
}

.s_select {
    min-width: 120px;
}

.s_select select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.s_select select:focus {
    outline: none;
    border-color: #02733E;
    box-shadow: 0 0 0 3px rgba(2, 115, 62, 0.1);
}

.s_input {
    flex: 1;
    max-width: 400px;
}

.s_input input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.s_input input:focus {
    outline: none;
    border-color: #02733E;
    box-shadow: 0 0 0 3px rgba(2, 115, 62, 0.1);
}

.s_btn button {
    padding: 10px 30px;
    background: linear-gradient(135deg, #02733E 0%, #078C03 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.s_btn button:hover {
    background: linear-gradient(135deg, #078C03 0%, #02733E 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 115, 62, 0.3);
}

.s_btn button:active {
    transform: translateY(0);
}

/* Board Thumbnail List */
.board_thumb_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.board_item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.board_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.thumb_img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.thumb_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.board_item:hover .thumb_img img {
    transform: scale(1.05);
}

.thumb_img a {
    display: block;
    width: 100%;
    height: 100%;
}

.thumb_txt {
    padding: 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.thumb_txt a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.thumb_txt a:hover {
    color: #02733E;
}

/* Pagination */
.page_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
}

.page-link:hover:not(.active):not(.disabled) {
    background: #02733E;
    color: white;
    border-color: #02733E;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(2, 115, 62, 0.2);
}

.page-link.active {
    background: #02733E;
    color: white;
    border-color: #02733E;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(2, 115, 62, 0.3);
}

.page-link.prev,
.page-link.next {
    padding: 8px 12px;
    min-width: 40px;
}

.page-link.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
}

.page-link.disabled:hover {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
    transform: none;
    box-shadow: none;
}

.page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    color: #666;
    font-size: 14px;
    user-select: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.empty-state i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 18px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .board_thumb_list {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .search_wrap {
        flex-wrap: wrap;
    }
    
    .search_wrap form {
        flex-wrap: wrap;
    }
    
    .s_select {
        min-width: 100px;
    }
    
    .s_input {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .board_thumb_list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .thumb_img {
        height: 150px;
    }
    
    .thumb_txt {
        padding: 15px;
        min-height: 70px;
    }
    
    .thumb_txt a {
        font-size: 14px;
    }
    
    .page_wrap {
        gap: 3px;
    }
    
    .page-link {
        min-width: 35px;
        height: 35px;
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .page-ellipsis {
        min-width: 35px;
        height: 35px;
        padding: 6px 10px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .board_thumb_list {
        grid-template-columns: 1fr;
    }
    
    .search_wrap {
        padding: 15px;
    }
    
    .search_wrap form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .s_select,
    .s_input {
        width: 100%;
        max-width: 100%;
    }
    
    .s_btn {
        width: 100%;
    }
    
    .s_btn button {
        width: 100%;
        padding: 12px 20px;
        margin-bottom: 5px;
    }
}

