/* styles.css */
/* 只影响 Highlight 区域内的列表链接 */
.highlight-card ul li a {
    text-decoration: none;
}
:root {
    --primary-color: #333333;
    --secondary-color: #3498db;
    --background-color: #ffffff;
}
body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: var(--background-color);
}

nav {
    background: #ffffff;
    padding: 1rem;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #e0e0e0;
    z-index: 9999;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

nav a.active {
    background: var(--secondary-color);
    color: white;
}

nav a:hover {
    color: #0056b3;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.hero {
    text-align: center;
    padding: 4rem 0;
    background: #ffffff;
    color: #333333;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.member-card {
    background: white;
    padding: 1rem;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 1rem;
}

.schedule-timeline {
    border-left: 2px solid var(--secondary-color);
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.3rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
}

footer {
    background: #ffffff;
    color: #333333;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* 在 styles.css 中添加以下样式 */
.committee-section {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-header {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.member-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.member-header {
    margin-bottom: 1rem;
}

.position {
    color: #666;
    font-size: 0.9rem;
}

.member-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.member-details li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    margin-top: 1rem;
}

.organizer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.organizer-card {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.organizer-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.organizer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievements {
    margin: 0.8rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.achievement-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Speaker Grid */
.speaker-grid {
  display: grid;
      grid-template-columns: repeat(3, 1fr); /* Three columns in the first row */
      grid-template-rows: auto auto;        /* Two rows */
      gap: 20px;                            /* Gap between items */

}

/* Speaker Card */
.speaker-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center; /* 居中对齐文本 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s; /* 鼠标悬浮效果 */
}

/* 悬浮效果 */
.speaker-card:hover {
    transform: translateY(-5px); /* 悬浮时上移 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 增大阴影 */
}

/* Speaker Avatar */
.speaker-card .avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* 圆形头像 */
    object-fit: cover; /* 图片填充保持比例 */
    margin-bottom: 15px; /* 图片与信息之间的间距 */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* 图像阴影 */
}

/* Speaker Info */
.speaker-info h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.speaker-info .affiliation {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

/* Speaker Bio */
.speaker-bio p {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.speaker-bio .expertise {
    margin-top: 10px;
}

.expertise-tag {
    display: inline-block;
    margin: 2px 5px;
    padding: 5px 10px;
    font-size: 12px;
    color: #fff;
    background-color: #007bfc;
    border-radius: 20px;
}

/* 鼠标悬浮链接样式 */
.speaker-card .profile-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #007bfc;
    text-decoration: none;
    font-weight: bold;
}

.speaker-card .profile-link i {
    margin-left: 5px; /* 图标与文字间距 */
    transition: transform 0.3s ease;
}

.speaker-card .profile-link:hover i {
    transform: translateX(3px); /* 鼠标悬浮时图标向右移动 */
}
.expertise-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .organizer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .organizer-photo {
        width: 80px;
        height: 80px;
    }
}
/* Add to styles.css */
/* SCHEDULE SPECIFIC STYLES */
.page-title {
    color: #000000;
    border-bottom: 3px solid #3498db;
    padding-bottom: 1rem;
}

.schedule-section {
    margin: 3rem 0;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000000;
    margin-bottom: 2rem;
}

.timeline-container {
    position: relative;
    padding-left: 3rem;
    border-left: 2px solid #3498db;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-time {
    position: absolute;
    left: -6.5rem;
    top: 0.5rem;
    width: 5rem;
    text-align: right;
    font-weight: 600;
    color: #7f8c8d;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-top: 0;
}

/* Timeline Item Types */
.timeline-item.keynote {
    border-left: 4px solid #e74c3c;
}
.timeline-item.primary {
    border-left: 4px solid #3498db;
}
.timeline-item.highlight {
    border-left: 4px solid #2238db;
}
.timeline-item.break {
    border-left: 4px solid #2ecc71;
}

/* Competition Timeline Table */
.timeline-table {
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    background: #f8f9fa;
    color: #000000;
    padding: 1rem;
    font-weight: bold;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.table-row.upcoming {
    background: #fcf8e3;
}

.status-col {
    text-align: center;
    font-weight: 600;
}

/* Milestone Cards */
.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.milestone-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #3498db33;
}

.date-badge {
    background: #f8f9fa;
    color: #333333;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 1rem;
    font-weight: bold;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .timeline-container {
        padding-left: 1rem;
    }

    .timeline-time {
        position: static;
        text-align: left;
        margin-bottom: 0.5rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
}
/* 添加以下 CSS 到 styles.css */

/* Dataset Page Specific Styles */
.dataset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.View-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.View-btn:hover {
    transform: translateY(-2px);
}

.dataset-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem; margin: 3rem 0; padding: 2rem; background: white;
   /* 卡片背景是白色，与 Dataset 网格保持一致 */
   border-radius: 8px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 卡片阴影 */
}

.new-data-table {
    width: 100%;
    border-collapse: separate; /* 使用 separate 而非 collapse，这样可以使用 border-spacing 属性 */
    border-spacing: 10px 5px; /* 设置列与列的间距 (水平间距，垂直间距) */
}

.new-data-table th, .new-data-table td {
    border: 1px solid #ddd; /* 添加边框 */
    padding: 12px; /* 增加内边距，提供更好的空间 */
    text-align: left; /* 左对齐，可根据需要修改 */
    background-color: #ffffff; /* 单元格背景色，可以根据需要调整 */
}

.new-data-table th {
    background-color: #f2f2f2; /* 表头背景颜色 */
    font-weight: bold; /* 加粗 */
}

.new-data-table tr:nth-child(even) {
    background-color: #f9f9f9; /* 偶数行背景颜色 */
}

.new-data-table tr:hover {
    background-color: #f1f1f1; /* 鼠标悬停行的背景颜色 */
}

.sample-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sample-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sample-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.sample-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem;
    text-align: center;
}

.doc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.doc-card {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.doc-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
 .dataset-header {
     display: flex;
     justify-content: space-between; /* 将标题与按钮分开 */
     align-items: center; /* 垂直居中对齐 */
     margin-bottom: 2rem; /* 在标题下方添加间距 */
 }

 .View-btn {
     background: var(--secondary-color);
     color: white;
     padding: 0.8rem 1.5rem;
     border-radius: 25px;
     text-decoration: none;
     transition: transform 0.3s ease;
 }

 .View-btn:hover {
     transform: translateY(-2px);
 }

}
/* 新增竞赛页面专用样式 */
.competition-header {
    text-align: center;
    padding: 4rem 0;
    background: #ffffff;
    color: #333333;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.prize-amount {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.dataset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.dataset-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 6px solid var(--secondary-color);
}

.dataset-stats {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.dataset-features {
    list-style: none;
    padding: 0;
}

.dataset-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.dataset-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.requirement-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.faq-accordion {
    background: white;
    border-radius: 8px;
    padding: 1rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
}

.faq-item p {
    margin-top: 1rem;
    color: #666;
}

@media (max-width: 768px) {
    .prize-amount {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* 使用 flexbox 布局 */
    gap: 2rem; /* 项目间距 */
}

nav ul li {
    position: relative; /* 允许下拉菜单绝对定位 */
}

nav a {
    color: #000000; /* 链接字体颜色 */
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s; /* 背景颜色变化效果 */
}

nav a:hover, nav a.active {
    background: var(--secondary-color); /* 鼠标悬停或活动链接的背景颜色 */
}

/* 下拉菜单样式 */
nav ul li .dropdown-menu {
    display: none; /* 默认隐藏下拉菜单 */
    position: absolute; /* 绝对定位 */
    background-color: white; /* 下拉菜单背景颜色 */
    color: black; /* 下拉菜单字体颜色 */
    min-width: 80px; /* 设置最小宽度 */
    z-index: 1000; /* 确保下拉菜单在其他内容上方 */
    border-radius: 8px; /* 圆角边 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* 阴影效果 */
    padding: 10px 0; /* 上下内边距 */
}

nav ul li:hover .dropdown-menu {
    display: block; /* 鼠标悬停时显示下拉菜单 */
}

nav ul li .dropdown-menu li {
    float: none; /* 子菜单项目不浮动 */
    width: 100%; /* 让下拉菜单项占满宽度 */
    padding: 4px 0; /* 每个子菜单项上下间距 */
}

nav ul li .dropdown-menu li a {
    padding: 12px 16px; /* 调整下拉菜单项的内边距 */
    color: black; /* 下拉菜单项字体颜色 */
    font-size: 0.9rem; /* 子菜单字体大小，稍小于父链接 */
    transition: background 0.15s; /* 背景颜色变化效果 */
}

nav ul li .dropdown-menu li a:hover {
    background-color: var(--secondary-color); /* 鼠标悬停下拉菜单项的背景颜色 */
    color: white; /* 悬停时字体颜色 */
}

/* 页面内容样式 */
.container {
    max-width: 1200px;
    margin: 2rem auto; /* 中间对齐 */
    padding: 0 1rem; /* 水平内边距 */
}

.page-content {
    margin-top: 20px;
}

footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
}


/* 页面内容样式 */
.container {
    max-width: 1200px;
    margin: 2rem auto; /* 中间对齐 */
    padding: 0 1rem; /* 水平内边距 */
}

.page-content {
    margin-top: 20px;
}

footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
}

 /* 通用设置 */
 .container {
     max-width: 1200px;
     margin: auto;
     padding: 20px;
 }

 .committee-section {
     margin-bottom: 40px;
 }

 .section-header {
     font-size: 24px;
     color: #333;
     margin-bottom: 20px;
 }

/* Organizer Grid */
.organizer-grid, .expert-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 响应式布局 */
    gap: 20px;
}

/* Organizer Card */
.organizer-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    text-align: center; /* 内容居中对齐 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

/* Card Hover Effect */
.organizer-card:hover {
    transform: scale(1.03); /* 鼠标悬停时稍微放大 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Avatar */
.avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover; /* 保证图片适配圆形头像 */
    margin-bottom: 15px; /* 图片与姓名/信息间距 */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Organizer Info */
.organizer-info {
    text-align: center; /* 信息居中 */
}

.organizer-info h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.organizer-info p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.organizer-info .research-area {
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

/* Details List */
.details-list {
    list-style: none; /* 去掉默认的列表样式 */
    padding: 0;
    margin: 10px 0;
}

.details-list li {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.details-list i {
    margin-right: 8px; /* 图标与文字间距 */
    color: #007bfc; /* 图标颜色 */
}

/* Profile Link */
.profile-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #007bfc;
    text-decoration: none;
    font-weight: bold;
}

.profile-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Hover Effect */
.profile-link:hover {
    text-decoration: underline;
}

.profile-link:hover i {
    transform: translateX(3px); /* 向右移动图标 */
}

 /* 通用设置 */
 .container {
     max-width: 1200px;
     margin: auto;
     padding: 20px;
 }

 .committee-section {
     margin-bottom: 40px;
 }

 .section-header {
     font-size: 24px;
     color: #333;
     margin-bottom: 20px;
 }
/* Acknowledgments Section Styling */
.acknowledgments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.acknowledgment-card {
    background: #f9f9f9;
    padding: 10px 15px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}
/* 卡片样式 */
.highlight-card {
    background: white;
    padding: 2rem; /* 内边距 */
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 阴影 */
    margin-bottom: 2rem; /* 底部间距 */
}

/* 标题样式 */
.member-header, .key-topics h3, .related-topics h3 {
    text-align: center; /* 中间对齐 */
}

/* 列表样式 */
.submission-details ul,
.key-topics ul,
.related-topics ul {
    padding-left: 20px; /* 列表左侧内边距 */
    margin: 0; /* 清除默认外边距 */
}

/* 嵌套列表样式 */
.related-topics ul li {
    margin-bottom: 1rem; /* 列表项之间的间距 */
}

.related-topics ul li ul {
    padding-left: 20px; /* 嵌套列表的左侧内边距 */
}

/* 只针对 Program Committee 和 Data Curators 部分的居中样式 */
.committee-section:nth-of-type(6) .organizer-card,
.committee-section:nth-of-type(7) .organizer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100px;
}

.committee-section:nth-of-type(6) .organizer-info,
.committee-section:nth-of-type(7) .organizer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.committee-section:nth-of-type(6) .organizer-info h3,
.committee-section:nth-of-type(7) .organizer-info h3 {
    text-align: center;
    margin: 10px 0 5px 0;
}

.committee-section:nth-of-type(6) .organizer-info .position,
.committee-section:nth-of-type(7) .organizer-info .position {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.committee-section:nth-of-type(6) .organizer-info .profile-link,
.committee-section:nth-of-type(7) .organizer-info .profile-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
