/* ==================================== */
/* 招生信息港样式表 - 优化版本 */
/* 修复样式冲突，提升WordPress兼容性 */
/* ==================================== */

/* 使用更具体的选择器，避免与主题样式冲突 */
.recruitment-hub-container * {
    box-sizing: border-box !important;
}

.recruitment-hub-container {
    max-width: 1400px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif !important;
    background: #f8f9fa !important;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
    font-size: 16px;
}

/* 顶部导航栏 */
.recruitment-hub-container .top-nav {
    background: white !important;
    border-radius: 12px !important;
    padding: 20px 30px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border: 1px solid #e8e8e8;
}

.recruitment-hub-container .nav-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0;
}

.recruitment-hub-container .nav-links {
    display: flex !important;
    gap: 20px !important;
    margin: 0;
    padding: 0;
    list-style: none;
}

.recruitment-hub-container .nav-link {
    text-decoration: none !important;
    color: #333 !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.recruitment-hub-container .nav-link:hover,
.recruitment-hub-container .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

/* 英雄区域 */
.recruitment-hub-container .hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 16px !important;
    padding: 50px 40px !important;
    color: white !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    position: relative !important;
    overflow: hidden !important;
}

.recruitment-hub-container .hero-section::before {
    content: '';
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') !important;
    opacity: 0.3 !important;
    pointer-events: none;
}

.recruitment-hub-container .hero-content {
    position: relative !important;
    z-index: 1 !important;
}

.recruitment-hub-container .hero-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 15px 0 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.recruitment-hub-container .hero-subtitle {
    font-size: 1.2rem !important;
    opacity: 0.95 !important;
    margin: 0 0 30px 0 !important;
}

.recruitment-hub-container .hero-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
    margin: 0;
    padding: 0;
}

.recruitment-hub-container .stat-item {
    text-align: center !important;
    display: block;
}

.recruitment-hub-container .stat-number {
    font-size: 2rem !important;
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 5px !important;
}

.recruitment-hub-container .stat-label {
    font-size: 1rem !important;
    opacity: 0.9 !important;
    margin: 0;
}

/* 搜索区域 */
.recruitment-hub-container .search-section {
    background: white !important;
    border-radius: 16px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid #e8e8e8;
}

.recruitment-hub-container .search-tabs {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 25px !important;
    border-bottom: 2px solid #f0f0f0 !important;
    padding-bottom: 15px !important;
    flex-wrap: wrap;
}

.recruitment-hub-container .search-tab {
    padding: 10px 25px !important;
    background: transparent !important;
    border: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    position: relative !important;
    color: #666 !important;
    transition: all 0.3s ease !important;
    outline: none;
}

.recruitment-hub-container .search-tab:hover {
    color: #667eea !important;
}

.recruitment-hub-container .search-tab.active {
    color: #667eea !important;
}

.recruitment-hub-container .search-tab.active::after {
    content: '';
    position: absolute !important;
    bottom: -17px !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 3px 3px 0 0 !important;
}

.recruitment-hub-container .search-box {
    display: flex !important;
    gap: 15px !important;
    max-width: 900px !important;
    margin: 0 auto 25px !important;
    flex-wrap: wrap;
}

.recruitment-hub-container .search-input {
    flex: 1 !important;
    padding: 15px 20px !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    min-width: 250px;
    font-family: inherit;
}

.recruitment-hub-container .search-input:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

.recruitment-hub-container .search-btn {
    padding: 15px 35px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    font-family: inherit;
}

.recruitment-hub-container .search-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3) !important;
}

.recruitment-hub-container .filter-section {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.recruitment-hub-container .filter-tag {
    padding: 10px 22px !important;
    background: #f8f9fa !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: #333 !important;
    outline: none;
    font-family: inherit;
}

.recruitment-hub-container .filter-tag:hover {
    border-color: #667eea !important;
    color: #667eea !important;
    background: #fff;
}

.recruitment-hub-container .filter-tag.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

/* 院校网格 */
.recruitment-hub-container .institutions-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)) !important;
    gap: 25px !important;
    margin-bottom: 40px !important;
}

/* 院校卡片 */
.recruitment-hub-container .institution-card {
    background: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    cursor: pointer !important;
    border: 1px solid #e8e8e8 !important;
    position: relative;
}

.recruitment-hub-container .institution-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
    border-color: #667eea !important;
}

.recruitment-hub-container .card-header {
    padding: 20px !important;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%) !important;
    border-bottom: 1px solid #e8e8e8 !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.recruitment-hub-container .institution-logo {
    width: 70px !important;
    height: 70px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
    border: 3px solid white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    flex-shrink: 0 !important;
    background: #fff;
}

.recruitment-hub-container .institution-info {
    flex: 1 !important;
    min-width: 0;
}

.recruitment-hub-container .institution-name {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.3 !important;
    word-wrap: break-word;
}

.recruitment-hub-container .institution-meta {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    margin: 0;
    padding: 0;
}

.recruitment-hub-container .meta-tag {
    padding: 3px 10px !important;
    border-radius: 10px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    display: inline-block;
}

.recruitment-hub-container .meta-tag.location {
    background: #e8f4f8 !important;
    color: #2980b9 !important;
}

.recruitment-hub-container .meta-tag.level {
    background: #fef5e7 !important;
    color: #d68910 !important;
}

.recruitment-hub-container .meta-tag.type {
    background: #eafaf1 !important;
    color: #27ae60 !important;
}

.recruitment-hub-container .card-body {
    padding: 20px !important;
}

.recruitment-hub-container .info-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
}

.recruitment-hub-container .info-item {
    display: flex !important;
    flex-direction: column !important;
}

.recruitment-hub-container .info-label {
    font-size: 0.8rem !important;
    color: #888 !important;
    margin-bottom: 4px !important;
    font-weight: 500 !important;
}

.recruitment-hub-container .info-value {
    font-size: 1rem !important;
    color: #333 !important;
    font-weight: 600 !important;
}

.recruitment-hub-container .programs-section {
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 1px solid #f0f0f0 !important;
}

.recruitment-hub-container .programs-title {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.recruitment-hub-container .programs-title::before {
    content: '🎵' !important;
}

.recruitment-hub-container .programs-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0;
    padding: 0;
}

.recruitment-hub-container .program-item {
    padding: 5px 12px !important;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%) !important;
    color: #667eea !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.recruitment-hub-container .program-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-color: transparent !important;
}

.recruitment-hub-container .card-footer {
    padding: 15px 20px !important;
    background: #f8f9fa !important;
    border-top: 1px solid #e8e8e8 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.recruitment-hub-container .update-info {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #888 !important;
    font-size: 0.85rem !important;
}

.recruitment-hub-container .update-info::before {
    content: '🕐' !important;
}

.recruitment-hub-container .view-details-btn {
    padding: 8px 20px !important;
    background: white !important;
    color: #667eea !important;
    border: 2px solid #667eea !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-family: inherit;
}

.recruitment-hub-container .view-details-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

.recruitment-hub-container .view-details-btn::after {
    content: '→' !important;
    transition: transform 0.3s ease !important;
}

.recruitment-hub-container .view-details-btn:hover::after {
    transform: translateX(4px) !important;
}

/* 无结果提示 */
.recruitment-hub-container .no-results {
    text-align: center !important;
    padding: 60px 20px !important;
    background: white !important;
    border-radius: 16px !important;
    margin-bottom: 40px !important;
}

.recruitment-hub-container .no-results-icon {
    font-size: 3rem !important;
    margin-bottom: 15px !important;
    display: block;
}

.recruitment-hub-container .no-results h3 {
    color: #333 !important;
    margin-bottom: 10px !important;
    font-size: 1.3rem !important;
}

.recruitment-hub-container .no-results p {
    color: #888 !important;
    font-size: 1rem !important;
    margin: 0;
}

/* 详情模态框 */
.recruitment-hub-container .modal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.7) !important;
    z-index: 99999 !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
}

.recruitment-hub-container .modal.active {
    display: flex !important;
}

.recruitment-hub-container .modal-content {
    background: white !important;
    border-radius: 16px !important;
    max-width: 900px !important;
    width: 100% !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    position: relative !important;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3) !important;
}

.recruitment-hub-container .modal-header {
    padding: 30px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    position: relative !important;
}

.recruitment-hub-container .close-btn {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    font-family: inherit;
}

.recruitment-hub-container .close-btn:hover {
    background: rgba(255,255,255,0.3) !important;
    transform: rotate(90deg) !important;
}

.recruitment-hub-container .modal-header-content {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding-right: 50px;
}

.recruitment-hub-container .modal-logo {
    width: 100px !important;
    height: 100px !important;
    border-radius: 16px !important;
    object-fit: cover !important;
    border: 3px solid rgba(255,255,255,0.3) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    flex-shrink: 0 !important;
    background: #fff;
}

.recruitment-hub-container .modal-title-section {
    flex: 1 !important;
    min-width: 0;
}

.recruitment-hub-container .modal-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
}

.recruitment-hub-container .modal-subtitle {
    font-size: 1rem !important;
    opacity: 0.95 !important;
    margin: 0 0 12px 0 !important;
}

.recruitment-hub-container .modal-meta-tags {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin: 0;
    padding: 0;
}

.recruitment-hub-container .modal-tag {
    padding: 4px 12px !important;
    background: rgba(255,255,255,0.2) !important;
    border-radius: 15px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    display: inline-block;
}

.recruitment-hub-container .modal-body {
    padding: 30px !important;
}

.recruitment-hub-container .detail-section {
    margin-bottom: 25px !important;
}

.recruitment-hub-container .detail-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 15px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #f0f0f0 !important;
}

.recruitment-hub-container .detail-icon {
    font-size: 1.2rem !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
}

.recruitment-hub-container .detail-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 0;
}

.recruitment-hub-container .detail-content {
    color: #555 !important;
    line-height: 1.7 !important;
    font-size: 0.95rem !important;
}

.recruitment-hub-container .detail-content ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
}

.recruitment-hub-container .detail-content li {
    margin-bottom: 8px !important;
    padding-left: 25px !important;
    position: relative !important;
}

.recruitment-hub-container .detail-content li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    color: #667eea !important;
    font-weight: 700 !important;
}

.recruitment-hub-container .info-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 15px !important;
    margin-top: 15px !important;
}

.recruitment-hub-container .info-card {
    padding: 15px !important;
    background: #f8f9fa !important;
    border-radius: 10px !important;
    text-align: center !important;
    border: 1px solid #e8e8e8 !important;
}

.recruitment-hub-container .info-card-label {
    font-size: 0.85rem !important;
    color: #888 !important;
    margin-bottom: 6px !important;
    font-weight: 500 !important;
}

.recruitment-hub-container .info-card-value {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #667eea !important;
}

.recruitment-hub-container .contact-info {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%) !important;
    padding: 20px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
}

.recruitment-hub-container .contact-row {
    display: flex !important;
    margin-bottom: 10px !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

.recruitment-hub-container .contact-row:last-child {
    margin-bottom: 0 !important;
}

.recruitment-hub-container .contact-label {
    font-weight: 600 !important;
    color: #333 !important;
    min-width: 70px !important;
    flex-shrink: 0;
}

.recruitment-hub-container .contact-value {
    color: #555 !important;
    flex: 1 !important;
    word-wrap: break-word;
}

.recruitment-hub-container .programs-detail {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 12px !important;
}

.recruitment-hub-container .program-detail-card {
    padding: 15px !important;
    background: #f8f9ff !important;
    border-radius: 10px !important;
    border: 1px solid rgba(102, 126, 234, 0.15) !important;
    transition: all 0.3s ease !important;
}

.recruitment-hub-container .program-detail-card:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-3px) !important;
}

.recruitment-hub-container .program-detail-name {
    font-weight: 600 !important;
    margin-bottom: 6px !important;
}

.recruitment-hub-container .program-detail-info {
    font-size: 0.85rem !important;
    opacity: 0.8 !important;
}

/* 文章链接区域 */
.recruitment-hub-container .article-links-section {
    margin-top: 25px !important;
    padding-top: 25px !important;
    border-top: 2px solid #f0f0f0 !important;
}

.recruitment-hub-container .article-links-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.recruitment-hub-container .article-links-title::before {
    content: '📰' !important;
}

.recruitment-hub-container .article-links {
    display: grid !important;
    gap: 12px !important;
}

.recruitment-hub-container .article-link-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 15px !important;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff9ff 100%) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    text-decoration: none !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
}

.recruitment-hub-container .article-link-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateX(5px) !important;
}

.recruitment-hub-container .article-link-icon {
    font-size: 1.5rem !important;
    width: 50px !important;
    height: 50px !important;
    background: white !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    flex-shrink: 0 !important;
}

.recruitment-hub-container .article-link-info {
    flex: 1 !important;
    min-width: 0;
}

.recruitment-hub-container .article-link-title {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
}

.recruitment-hub-container .article-link-desc {
    font-size: 0.85rem !important;
    opacity: 0.8 !important;
}

.recruitment-hub-container .article-link-arrow {
    font-size: 1.2rem !important;
    opacity: 0.6 !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0;
}

.recruitment-hub-container .article-link-item:hover .article-link-arrow {
    transform: translateX(5px) !important;
    opacity: 1 !important;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .recruitment-hub-container .institutions-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .recruitment-hub-container {
        padding: 15px !important;
    }

    .recruitment-hub-container .hero-title {
        font-size: 1.8rem !important;
    }

    .recruitment-hub-container .hero-subtitle {
        font-size: 1rem !important;
    }

    .recruitment-hub-container .hero-stats {
        gap: 20px !important;
    }

    .recruitment-hub-container .stat-number {
        font-size: 1.5rem !important;
    }

    .recruitment-hub-container .top-nav {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 15px 20px !important;
    }

    .recruitment-hub-container .nav-links {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .recruitment-hub-container .search-box {
        flex-direction: column !important;
    }

    .recruitment-hub-container .search-section {
        padding: 20px 15px !important;
    }

    .recruitment-hub-container .institutions-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .recruitment-hub-container .modal-header-content {
        flex-direction: column !important;
        text-align: center !important;
        padding-right: 0 !important;
    }

    .recruitment-hub-container .modal-title {
        font-size: 1.4rem !important;
    }

    .recruitment-hub-container .modal-body {
        padding: 20px !important;
    }

    .recruitment-hub-container .modal-header {
        padding: 25px 15px !important;
    }

    .recruitment-hub-container .info-cards {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    }

    .recruitment-hub-container .modal {
        padding: 10px !important;
    }

    .recruitment-hub-container .modal-content {
        max-height: 90vh !important;
    }
}

/* 加载动画 */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(15px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.recruitment-hub-container .institution-card {
    animation: fadeIn 0.5s ease-out !important;
}

/* 滚动条样式 */
.recruitment-hub-container .modal-content::-webkit-scrollbar {
    width: 6px !important;
}

.recruitment-hub-container .modal-content::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 3px;
}

.recruitment-hub-container .modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 3px;
}

/* 移除WordPress主题可能的冲突样式 */
.recruitment-hub-container h1,
.recruitment-hub-container h2,
.recruitment-hub-container h3,
.recruitment-hub-container h4,
.recruitment-hub-container h5,
.recruitment-hub-container h6 {
    font-weight: inherit;
    line-height: inherit;
    margin-top: 0;
}

.recruitment-hub-container p {
    margin-top: 0;
}

.recruitment-hub-container a {
    box-shadow: none !important;
}

.recruitment-hub-container button {
    box-shadow: none !important;
}

.recruitment-hub-container input {
    box-shadow: none !important;
}

/* 确保小标签不会被主题样式覆盖 */
.recruitment-hub-container small {
    font-size: inherit !important;
    color: inherit !important;
}

/* 修复可能的按钮样式冲突 */
.recruitment-hub-container button:focus,
.recruitment-hub-container button:active {
    outline: none !important;
}

/* 修复可能的链接下划线 */
.recruitment-hub-container a:hover {
    text-decoration: none !important;
}