/* ========== 生态构建平台页面样式 ========== */

/* 覆盖Banner主题色 - 天蓝色系 */
:root {
    --primary-color: #0284c7;
    --gradient-primary: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    --banner-gradient: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0ea5e9 100%);
    --banner-glow-color: rgba(14, 165, 233, 0.3);
    --banner-btn-primary-bg: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --banner-btn-primary-shadow: rgba(14, 165, 233, 0.4);
    --banner-btn-primary-shadow-hover: rgba(14, 165, 233, 0.5);
}

/* 页面特定Banner背景（带图片） */
.talent-banner {
    background: 
        linear-gradient(135deg, rgba(3, 105, 161, 0.92) 0%, rgba(2, 132, 199, 0.88) 50%, rgba(14, 165, 233, 0.85) 100%),
        url('/public/images/banner-talent.jpeg') center/cover no-repeat;
}

/* 数据统计 */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: #e0f2fe;
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.stat-card .value {
    font-size: 36px;
    font-weight: 700;
    color: #0284c7;
    margin-bottom: 8px;
}

.stat-card .label {
    font-size: 14px;
    color: #0369a1;
}

/* 招聘职位 */
.jobs-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-title {
    margin-bottom: 48px;
}

.section-title::before {
    display: none;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    text-align: center;
}

.section-title p {
    font-size: 14px;
    color: #64748b;
    text-align: center;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.job-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    transition: all 0.3s;
}

.job-card:hover {
    border-color: #0284c7;
    box-shadow: 0 8px 30px rgba(2, 132, 199, 0.12);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.job-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.job-salary {
    font-size: 18px;
    font-weight: 700;
    color: #0284c7;
}

.job-company {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.job-company img {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 8px;
}

.job-company .name {
    font-size: 14px;
    color: #64748b;
}

.job-company .type {
    font-size: 12px;
    color: #94a3b8;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.job-tag {
    padding: 4px 10px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 4px;
    font-size: 12px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.job-location {
    font-size: 13px;
    color: #94a3b8;
}

.btn-apply {
    padding: 8px 20px;
    background: #0284c7;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.btn-apply:hover {
    background: #0369a1;
}

/* 培训服务 */
.training-section {
    padding: 60px 0;
    background: white;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.training-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.training-card:hover {
    border-color: #0284c7;
}

.training-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.training-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.training-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.training-card .count {
    font-size: 12px;
    color: #0284c7;
}

/* 人才政策 */
.policy-section {
    padding: 60px 0;
    background: #f8fafc;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.policy-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.policy-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-card h3 span {
    font-size: 24px;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #64748b;
}

.policy-card li:last-child {
    border-bottom: none;
}

.policy-card li::before {
    content: '✓';
    color: #0284c7;
    margin-right: 8px;
}

/* 政策解读 */
.policy-interpretation-section {
    padding: 60px 0;
    background: white;
}

.policy-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.policy-tab {
    padding: 10px 24px;
    background: #f1f5f9;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

.policy-tab:hover {
    border-color: #0284c7;
    color: #0284c7;
}

.policy-tab.active {
    background: #0284c7;
    border-color: #0284c7;
    color: white;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-list {
    display: none;
}

.policy-list.active {
    display: block;
}

.policy-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.policy-item:hover {
    border-color: #0284c7;
    box-shadow: 0 4px 20px rgba(2, 132, 199, 0.1);
}

.policy-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.policy-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.policy-badge.national { background: #fef3c7; color: #d97706; }
.policy-badge.province { background: #dbeafe; color: #2563eb; }
.policy-badge.city { background: #dcfce7; color: #16a34a; }
.policy-badge.district { background: #f3e8ff; color: #9333ea; }

.policy-date {
    font-size: 13px;
    color: #94a3b8;
}

.policy-item h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.policy-item > p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.policy-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.policy-tags span {
    padding: 4px 10px;
    background: white;
    color: #0284c7;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #bae6fd;
}

.policy-link {
    font-size: 14px;
    color: #0284c7;
    font-weight: 500;
    text-decoration: none;
}

.policy-link:hover {
    color: #0369a1;
}

.policy-more {
    text-align: center;
    margin-top: 32px;
}

.btn-more {
    display: inline-block;
    padding: 12px 32px;
    background: white;
    color: #0284c7;
    border: 1px solid #0284c7;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-more:hover {
    background: #0284c7;
    color: white;
}

/* 行业交流活动 */
.events-section {
    padding: 60px 0;
    background: #f8fafc;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s;
}

.event-card:hover {
    border-color: #0284c7;
    box-shadow: 0 8px 30px rgba(2, 132, 199, 0.12);
    transform: translateY(-4px);
}

.event-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.event-status.ongoing { background: #dcfce7; color: #16a34a; }
.event-status.upcoming { background: #dbeafe; color: #2563eb; }

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    margin-bottom: 16px;
}

.event-date .day {
    font-size: 32px;
    font-weight: 700;
    color: #0284c7;
    line-height: 1;
}

.event-date .month {
    font-size: 13px;
    color: #64748b;
}

.event-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.event-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
}

.btn-event {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-event:hover {
    background: linear-gradient(135deg, #0369a1, #075985);
}

/* 生态伙伴招募 */
.partner-recruit-section {
    padding: 60px 0;
    background: white;
}

.partner-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-type-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.partner-type-card:hover {
    border-color: #0284c7;
    box-shadow: 0 12px 40px rgba(2, 132, 199, 0.15);
    transform: translateY(-4px);
}

.partner-type-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.partner-type-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.partner-type-card > p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.partner-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.partner-benefits li {
    padding: 8px 0;
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-benefits li::before {
    content: '✓';
    color: #0284c7;
    font-weight: 600;
}

.btn-join {
    width: 100%;
    padding: 12px;
    background: #0284c7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-join:hover {
    background: #0369a1;
}

/* 响应式 */
@media (max-width: 1200px) {
    .jobs-grid { grid-template-columns: repeat(2, 1fr); }
    .training-grid { grid-template-columns: repeat(2, 1fr); }
    .policy-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-types { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .jobs-grid { grid-template-columns: 1fr; }
    .training-grid { grid-template-columns: 1fr; }
    .policy-grid { grid-template-columns: 1fr; }
    .policy-tabs { flex-wrap: wrap; }
    .events-grid { grid-template-columns: 1fr; }
    .partner-types { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; gap: 12px; }
    .job-card { padding: 16px; }
    .job-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .job-tags { flex-wrap: wrap; }
    .training-card { padding: 16px; }
    .event-card { padding: 16px; }
}

@media (max-width: 480px) {
    .hero-content { padding: 60px 0 40px; }
    .hero-title { font-size: 22px; }
    .hero-desc { font-size: 13px; }
    .stat-item .value { font-size: 28px; }
    .section-title { font-size: 20px; }
    .job-card { padding: 12px; }
    .job-title { font-size: 14px; }
    .job-salary { font-size: 16px; }
    .job-actions { flex-direction: column; width: 100%; }
    .job-actions .btn-apply { width: 100%; text-align: center; }
    .training-card { flex-direction: column; }
    .training-thumb { width: 100%; height: 120px; }
    .policy-card { padding: 16px; }
    .event-card { flex-direction: column; }
    .event-banner { height: 120px; }
    .partner-types { gap: 8px; }
    .partner-type { padding: 12px; font-size: 13px; }
}

/* ========== 生态构建平台标签页样式 ========== */
.talent-tabs {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.talent-tabs .tabs-wrapper {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
}

.talent-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.talent-tab svg {
    flex-shrink: 0;
}

.talent-tab:hover {
    background: #f1f5f9;
    color: #0284c7;
}

.talent-tab.active {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.tab-content {
    display: none !important;
    padding: 24px;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.event-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.event-card:hover {
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.15);
    transform: translateY(-2px);
}

.event-banner {
    width: 50%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.event-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.event-detail {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 10px;
    line-height: 1.4;
}

.event-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #94a3b8;
}

.event-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    width: fit-content;
}

.event-status.open {
    background: #dcfce7;
    color: #16a34a;
}

.event-status.review {
    background: #fef3c7;
    color: #d97706;
}

.event-status.closed {
    background: #f1f5f9;
    color: #64748b;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-banner {
        width: 100%;
        height: 160px;
    }
    
    .event-detail {
        padding: 20px;
    }
    
    .event-title {
        font-size: 16px;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 8px;
    }
}

.achievement-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.achievement-card:hover {
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.15);
    transform: translateY(-2px);
}

.achievement-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: #0284c7;
}

.achievement-detail {
    flex: 1;
    min-width: 0;
}

.achievement-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.4;
}

.achievement-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.achievement-meta {
    display: flex;
    gap: 16px;
}

.achievement-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #94a3b8;
}

.achievement-status {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-left: 20px;
    flex-shrink: 0;
}

.achievement-status.open {
    background: #dcfce7;
    color: #16a34a;
}

.achievement-status.review {
    background: #fef3c7;
    color: #d97706;
}

.achievement-status.closed {
    background: #f1f5f9;
    color: #64748b;
}

@media (max-width: 768px) {
    .achievement-card {
        align-items: flex-start;
    }
    
    .achievement-icon {
        margin-bottom: 16px;
    }
    
    .achievement-status {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .achievement-meta {
        flex-direction: column;
        gap: 8px;
    }
}

.content-section {
    background: #fff;
}

/* 列表样式 */
.item-list {
    display: flex;
    flex-direction: column;
}

.item-row {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: background 0.2s;
}

.item-row:last-child {
    border-bottom: none;
}

.item-row:hover {
    background: #f8fafc;
    margin: 0 -16px;
    padding: 16px;
}

.item-status {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-right: 16px;
    flex-shrink: 0;
}

.item-status.open {
    background: #e6f7ff;
    color: #0284c7;
}

.item-status.closed {
    background: #f5f5f5;
    color: #999;
}

.item-status.review {
    background: #fffbe6;
    color: #d48806;
}

.item-info {
    flex: 1;
    min-width: 0;
}

.item-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.4;
}

.item-excerpt {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #94a3b8;
}

.item-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.item-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s;
}

.item-row:hover .item-arrow {
    color: #0284c7;
    transform: translateX(4px);
}

/* 合作伙伴网格 */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.partner-card:hover {
    border-color: #0284c7;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
    transform: translateY(-4px);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.partner-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.partner-desc {
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .item-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-status {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .item-arrow {
        display: none;
    }
}

.talent-tab svg {
    width: 18px;
    height: 18px;
}

.tab-content {
    display: none !important;
}

.tab-content.active {
    display: block !important;
}

/* 合作伙伴网格 */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.partner-card:hover {
    border-color: #0284c7;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
    transform: translateY(-4px);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
}

.partner-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.partner-desc {
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .item-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .item-status {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .item-arrow {
        display: none;
    }
    .talent-tabs .tabs-wrapper{
        scrollbar-width: none;
    }
    .tab-content{padding:24px 0;}
    .event-card{padding: 0;}
}
