/* ===== 智库专家页面 ===== */

/* 标题栏 */
.thinktank-feed-header {
  display: block;
  margin-bottom: 12px;
  padding: 0;
}

.thinktank-feed-header h2::before {
  display: none;
}

.thinktank-header-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  width: 100%;
  padding: 8px 0 10px;
  border-bottom: 1px solid #eef1f5;
}

.thinktank-header-bar .view-toggle {
  margin-left: auto;
  flex-shrink: 0;
}

.thinktank-header-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 0 1 auto;
}

.thinktank-page-title {
  margin: 0;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.thinktank-page-title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(145deg, #eef6ff 0%, #e0f0ff 100%);
  color: var(--primary);
  box-shadow: 0 1px 6px rgba(24, 144, 255, 0.1);
  border: 1px solid rgba(24, 144, 255, 0.08);
}

.thinktank-page-divider {
  flex-shrink: 0;
  width: 1px;
  height: 14px;
  background: #dde3ea;
}

.thinktank-page-desc {
  margin: 0;
  min-width: 0;
  font-size: 12px;
  color: #8c95a6;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: #f0f2f5;
  border-radius: 10px;
  border: 1px solid #e8ecf0;
}

.view-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s ease;
}

.view-toggle-btn svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.view-toggle-btn:hover {
  color: var(--primary);
}

.view-toggle-btn.active {
  background: var(--bg-white);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(24, 144, 255, 0.12);
}

.view-toggle-btn.active svg {
  opacity: 1;
}

/* 公共徽章 */
.expert-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  white-space: nowrap;
}

.expert-badge--cat {
  color: var(--primary);
  background: #eef6ff;
  border: 1px solid #d6ebff;
}

.expert-badge--ind {
  color: #666;
  background: #f5f7fa;
  border: 1px solid #eef1f5;
}

.expert-skill-tag {
  padding: 3px 10px;
  font-size: 11px;
  color: #5a6a7a;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 12px;
}

/* ===== 列表视图 ===== */
.thinktank-feed--list {
  display: flex;
  flex-direction: column;
}

.expert-list-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 22px;
  border-bottom: 1px solid #f0f3f7;
  cursor: pointer;
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.expert-list-row:last-child {
  border-bottom: none;
}

.expert-list-row:hover {
  background: linear-gradient(135deg, #fafcff 0%, #f8fbff 100%);
}

.expert-list-avatar {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 4px 16px rgba(24, 144, 255, 0.1);
  background: linear-gradient(135deg, #eef6ff, #f5f0ff);
}

.expert-list-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.expert-list-row:hover .expert-list-avatar img {
  transform: scale(1.05);
}

.expert-list-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expert-list-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.expert-list-name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.expert-list-row:hover .expert-list-name {
  color: var(--primary);
}

.expert-list-role {
  margin: 4px 0 0;
  font-size: 13px;
  color: #5a6a7a;
  line-height: 1.5;
}

.expert-list-dot {
  margin: 0 6px;
  color: #ccc;
}

.expert-list-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
}

.expert-list-bio {
  margin: 0;
  font-size: 13px;
  color: #8c95a6;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.expert-list-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.expert-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.expert-list-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #aab2bd;
}

.expert-list-skill {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.expert-list-views {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  color: #90a4ae;
}

.expert-list-views svg {
  opacity: 0.7;
}

/* ===== 卡片视图 ===== */
.news-feed.thinktank-feed--card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 20px 8px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.expert-feed-more-hint {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 12px;
  color: #aab2bd;
  line-height: 1.6;
  background: transparent;
  border: none;
}

.news-main .thinktank-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 12px 0 0;
  margin-top: 4px;
}

.thinktank-pagination[hidden] {
  display: none !important;
}

.thinktank-pagination--hint-only {
  padding-top: 8px;
}

.thinktank-pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  width: 100%;
}

.thinktank-pagination .expert-feed-more-hint {
  margin-top: 14px;
}

.thinktank-pagination--hint-only .expert-feed-more-hint {
  margin-top: 0;
}

.expert-card-item {
  position: relative;
  background: var(--bg-white);
  border: 1px solid #eef1f5;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.expert-card-item:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 144, 255, 0.25);
  box-shadow: 0 12px 32px rgba(24, 144, 255, 0.12);
}

.expert-card-banner {
  position: relative;
  z-index: 1;
  height: 72px;
  background: linear-gradient(135deg, #667eea 0%, #1890ff 50%, #764ba2 100%);
}

.expert-card-avatar-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: -44px;
  margin-bottom: 8px;
}

.expert-card-avatar {
  position: relative;
  z-index: 3;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(24, 144, 255, 0.2);
  background: #fff;
  transition: transform 0.3s ease;
}

.expert-card-item:hover .expert-card-avatar {
  transform: scale(1.06);
}

.expert-card-body {
  position: relative;
  z-index: 2;
  padding: 0 20px 20px;
  text-align: center;
  background: var(--bg-white);
}

.expert-card-tags {
  margin-bottom: 8px;
}

.expert-card-name {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  transition: color 0.2s;
}

.expert-card-item:hover .expert-card-name {
  color: var(--primary);
}

.expert-card-role {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.expert-card-company {
  margin: 2px 0 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.expert-card-bio {
  margin: 0 0 12px;
  font-size: 12px;
  color: #8c95a6;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.expert-card-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.expert-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #f3f5f8;
  font-size: 11px;
  color: #aab2bd;
}

.expert-card-views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.expert-card-expertise {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 55%;
  text-align: right;
}

/* 搜索下拉 */
.expert-search-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.expert-search-thumb img {
  border-radius: 50%;
  object-fit: cover;
}

button.news-search-dropdown-item {
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

/* 响应式 */
@media (max-width: 1100px) {
  .thinktank-feed--card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .thinktank-header-bar {
    gap: 8px 10px;
    padding: 6px 0 8px;
  }

  .thinktank-header-main {
    flex: 1 1 100%;
  }

  .thinktank-page-title {
    font-size: 16px;
  }

  .thinktank-page-desc {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .expert-list-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 16px;
  }

  .expert-list-top {
    flex-direction: column;
    align-items: center;
  }

  .expert-list-badges {
    justify-content: center;
  }

  .expert-list-bottom {
    flex-direction: column;
    align-items: center;
  }

  .expert-list-stats {
    flex-direction: column;
    gap: 6px;
  }

  .thinktank-feed--card {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 16px;
  }

  .expert-modal-profile {
    flex-direction: column;
    text-align: center;
  }

  .expert-modal-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .expert-video-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 专家详情弹窗 ===== */
.modal--thinktank {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
}

.modal--thinktank-gate {
  max-width: 400px;
  width: 92%;
}

.modal--thinktank-detail {
  max-width: 640px;
  width: 94%;
}

.modal--thinktank .modal-body {
  padding: 0;
  max-height: 85vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal--thinktank .modal-body h3 {
  display: none;
}

.modal--thinktank .modal-close {
  z-index: 10;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* 登录拦截 */
.expert-modal--gate {
  padding: 32px 24px 28px;
  text-align: center;
}

.expert-gate-lock {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef6ff, #e8f4ff);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-gate-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
}

.expert-gate-desc {
  margin: 0 0 24px;
  font-size: 14px;
  color: #8c95a6;
  line-height: 1.6;
}

.expert-gate-preview {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #f8fbff, #f5f7fa);
  border: 1px solid #eef1f5;
  border-radius: 14px;
  text-align: left;
  overflow: hidden;
}

.expert-gate-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(24, 144, 255, 0.15);
}

.expert-gate-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}

.expert-gate-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.expert-gate-info strong {
  font-size: 15px;
  color: #1a1a2e;
}

.expert-gate-info span {
  font-size: 12px;
  color: #8c95a6;
}

.expert-gate-blur {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #aab2bd;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  border: 1px dashed #ddd;
}

.expert-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 详情弹窗 */
.expert-modal--detail {
  background: var(--bg-white);
}

.expert-modal-hero {
  position: relative;
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, #667eea 0%, #1890ff 55%, #764ba2 100%);
  color: #fff;
}

.expert-modal-hero-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.expert-modal-profile {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.expert-modal-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.expert-modal-name {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.expert-modal-role {
  margin: 0 0 10px;
  font-size: 14px;
  opacity: 0.92;
}

.expert-modal-badges .expert-badge--cat {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.expert-modal-badges .expert-badge--ind {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.expert-modal-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
}

.expert-stat {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.expert-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.expert-stat-label {
  font-size: 11px;
  opacity: 0.85;
}

.expert-modal-body {
  padding: 24px 28px 28px;
}

.expert-modal-section {
  margin-bottom: 24px;
}

.expert-modal-section:last-child {
  margin-bottom: 0;
}

.expert-section-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 8px;
}

.expert-section-title::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--primary);
  border-radius: 2px;
}

.expert-section-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 10px;
}

.expert-intro-text {
  margin: 0 0 12px;
  font-size: 14px;
  color: #5a6a7a;
  line-height: 1.85;
}

.expert-skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expert-article-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expert-article-item {
  display: flex;
  gap: 14px;
  padding: 12px 14px;
  background: #fafbfc;
  border: 1px solid #eef1f5;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.22s ease;
}

.expert-article-item:hover {
  border-color: rgba(24, 144, 255, 0.3);
  background: #f5f9ff;
  transform: translateX(4px);
}

.expert-article-thumb {
  width: 96px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f2f5;
}

.expert-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-article-body {
  flex: 1;
  min-width: 0;
}

.expert-article-body h5 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.expert-article-body p {
  margin: 0 0 4px;
  font-size: 12px;
  color: #8c95a6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.expert-article-meta {
  font-size: 11px;
  color: #aab2bd;
}

.expert-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.expert-video-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef1f5;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.expert-video-item:hover {
  border-color: rgba(24, 144, 255, 0.28);
  box-shadow: 0 8px 24px rgba(24, 144, 255, 0.1);
  transform: translateY(-2px);
}

.expert-video-item.is-playing {
  border-color: rgba(24, 144, 255, 0.45);
  box-shadow: 0 10px 32px rgba(24, 144, 255, 0.18);
  transform: none;
  grid-column: 1 / -1;
}

.expert-video-cover {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
}

.expert-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.expert-video-item:hover .expert-video-poster {
  opacity: 1;
  transform: scale(1.03);
}

.expert-video-item.is-playing .expert-video-poster {
  opacity: 0;
  transform: scale(1);
}

.expert-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0f1a;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.32s ease;
}

.expert-video-item.is-playing .expert-video-player {
  opacity: 1;
  pointer-events: auto;
}

.expert-video-item.is-playing .expert-video-cover {
  aspect-ratio: 16/9;
}

.expert-video-play-btn {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.38) 100%);
  transition: background 0.25s ease, opacity 0.3s ease;
}

.expert-video-item.is-playing .expert-video-play-btn {
  opacity: 0;
  pointer-events: none;
}

.expert-video-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.expert-video-item:hover .expert-video-play-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(24, 144, 255, 0.28);
}

.expert-video-play-btn:hover .expert-video-play-icon {
  background: #fff;
}

.expert-video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  transition: opacity 0.25s ease;
}

.expert-video-item.is-playing .expert-video-duration {
  opacity: 0;
  pointer-events: none;
}

.expert-video-meta {
  padding: 12px 14px 14px;
}

.expert-video-meta h5 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}

.expert-video-views {
  display: block;
  font-size: 11px;
  color: #aab2bd;
}

.expert-empty-tip {
  margin: 0;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #aab2bd;
  background: #fafbfc;
  border-radius: 10px;
  border: 1px dashed #e8ecf0;
}

.expert-modal-section--contact {
  padding-top: 20px;
  border-top: 1px solid #f0f3f7;
}

.expert-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.expert-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8fbff;
  border-radius: 10px;
  font-size: 14px;
  color: #5a6a7a;
}

.expert-contact-hint {
  margin: 0 0 16px;
  font-size: 13px;
  color: #8c95a6;
}

.expert-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
