/* ==========================================================================
   看片 (5sww9y.cn) 官方品牌视觉样式表
   设计哲学：影视胶片新浪潮（Cinematic Neo-Wave）
   配色体系：深黛黑灰 #0B0E14 | 糖心暖橙 #FF5A36 | 香槟琥珀 #F59E0B | 纯白高光 #F8FAFC
   ========================================================================== */

:root {
  --tx-bg-primary: #0b0e14;
  --tx-bg-surface: #131822;
  --tx-bg-elevated: #1a2232;
  --tx-bg-card: rgba(19, 24, 34, 0.85);
  --tx-border: rgba(255, 255, 255, 0.1);
  --tx-border-hover: rgba(255, 90, 54, 0.4);
  
  --tx-brand-orange: #ff5a36;
  --tx-brand-amber: #f59e0b;
  --tx-brand-glow: rgba(255, 90, 54, 0.35);
  
  --tx-text-primary: #f8fafc;
  --tx-text-secondary: #94a3b8;
  --tx-text-muted: #64748b;
  
  --tx-radius-sm: 8px;
  --tx-radius-md: 14px;
  --tx-radius-lg: 20px;
  --tx-radius-pill: 9999px;
  
  --tx-shadow-film: 0 16px 36px -12px rgba(0, 0, 0, 0.65), 0 0 24px -8px var(--tx-brand-glow);
  --tx-transition: all 0.24s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 全局重置与排版规范 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--tx-bg-primary);
  color: var(--tx-text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  line-height: 1.6;
}

body {
  background-color: var(--tx-bg-primary);
  color: var(--tx-text-primary);
  overflow-x: hidden;
  position: relative;
}

/* 电影胶片背景与氛围微光 */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 90, 54, 0.08) 0%, rgba(11, 14, 20, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--tx-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* 顶部通知与电影状态栏 */
.tx-topbar {
  background: rgba(11, 14, 20, 0.95);
  border-bottom: 1px solid var(--tx-border);
  font-size: 0.85rem;
  color: var(--tx-text-secondary);
  padding: 8px 0;
}

.tx-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tx-rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ef4444;
  font-weight: 600;
}

.tx-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
  animation: txPulse 1.8s infinite;
}

@keyframes txPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

/* 主导航栏 Header */
.tx-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(11, 14, 20, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tx-border);
}

.tx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.tx-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tx-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 54, 0.3);
  box-shadow: 0 0 15px rgba(255, 90, 54, 0.25);
  flex-shrink: 0;
}

.tx-brand-titles {
  display: flex;
  flex-direction: column;
}

.tx-brand-h1 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff 0%, #ffc0a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tx-brand-sub {
  font-size: 0.75rem;
  color: var(--tx-brand-orange);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* 导航菜单 */
.tx-nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 26px;
}

.tx-nav-item a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tx-text-secondary);
  padding: 6px 0;
  position: relative;
}

.tx-nav-item a:hover,
.tx-nav-item.active a {
  color: #ffffff;
}

.tx-nav-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--tx-brand-orange);
  transition: var(--tx-transition);
}

.tx-nav-item a:hover::after,
.tx-nav-item.active a::after {
  width: 100%;
}

.tx-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--tx-radius-pill);
  cursor: pointer;
  transition: var(--tx-transition);
  border: none;
  gap: 8px;
}

.tx-btn-primary {
  background: linear-gradient(135deg, #ff5a36 0%, #f59e0b 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 90, 54, 0.4);
}

.tx-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 90, 54, 0.55);
}

.tx-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--tx-border);
  color: var(--tx-text-primary);
}

.tx-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* 头部搜索栏（仅前端JS演示交互） */
.bar_oh713p {
  background: var(--tx-bg-surface);
  border-bottom: 1px solid var(--tx-border);
  padding: 14px 0;
}

.box_f2yvxd {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  display: flex;
}

.sinp_e8asl6yq {
  width: 100%;
  height: 46px;
  background: var(--tx-bg-elevated);
  border: 1px solid var(--tx-border);
  border-radius: var(--tx-radius-pill);
  padding: 0 110px 0 20px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: var(--tx-transition);
}

.sinp_e8asl6yq:focus {
  border-color: var(--tx-brand-orange);
  box-shadow: 0 0 16px var(--tx-brand-glow);
}

.sbtn_qopqjg {
  position: absolute;
  right: 5px;
  top: 4px;
  height: 38px;
  padding: 0 20px;
  background: var(--tx-brand-orange);
  color: #fff;
  border: none;
  border-radius: var(--tx-radius-pill);
  font-weight: 600;
  cursor: pointer;
}

.tag_cpra5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--tx-text-muted);
  flex-wrap: wrap;
}

.tag_cpra5 a {
  color: var(--tx-text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 10px;
  border-radius: var(--tx-radius-sm);
}

.tag_cpra5 a:hover {
  color: var(--tx-brand-orange);
}

/* 面包屑导航 */
.tx-breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--tx-text-muted);
}

.tx-breadcrumb a {
  color: var(--tx-text-secondary);
}

.tx-breadcrumb a:hover {
  color: var(--tx-brand-orange);
}

.tx-breadcrumb span.sep {
  margin: 0 8px;
}

/* 英雄首屏区 (Hero Section) */
.tx-hero {
  padding: 40px 0 60px;
  position: relative;
}

.tx-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.tx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 90, 54, 0.12);
  border: 1px solid rgba(255, 90, 54, 0.35);
  color: var(--tx-brand-orange);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--tx-radius-pill);
  margin-bottom: 20px;
}

.tx-hero-title {
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.tx-hero-title .highlight {
  color: var(--tx-brand-orange);
  text-shadow: 0 0 20px rgba(255, 90, 54, 0.4);
}

.tx-hero-desc {
  font-size: 1.05rem;
  color: var(--tx-text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.tx-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--tx-border);
}

.tx-stat-item h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.tx-stat-item p {
  font-size: 0.85rem;
  color: var(--tx-text-muted);
}

/* 影视视频卡片与播放器交互 */
.tx-video-stage {
  position: relative;
  border-radius: var(--tx-radius-lg);
  overflow: hidden;
  background: var(--tx-bg-surface);
  border: 1px solid var(--tx-border);
  box-shadow: var(--tx-shadow-film);
}

.tx-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.tx-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.tx-video-card:hover img {
  transform: scale(1.06);
}

/* 悬浮播放按钮微交互 */
.tx-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tx-transition);
}

.tx-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 90, 54, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 90, 54, 0.8);
  transition: var(--tx-transition);
  transform: scale(0.92);
}

.tx-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.tx-video-card:hover .tx-play-btn {
  transform: scale(1.1);
  background: #ff5a36;
  box-shadow: 0 0 45px rgba(255, 90, 54, 1);
}

.tx-video-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--tx-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tx-video-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.75);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 500;
}

/* 板块标题 Section Header */
.tx-section {
  padding: 70px 0;
  position: relative;
}

.tx-section-header {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid var(--tx-border);
  padding-bottom: 18px;
}

.tx-section-titles h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 6px;
}

.tx-section-titles h2 span {
  color: var(--tx-brand-orange);
}

.tx-section-titles p {
  font-size: 0.95rem;
  color: var(--tx-text-secondary);
}

/* 影视传媒与视频流网格 */
.tx-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.tx-video-item {
  background: var(--tx-bg-surface);
  border-radius: var(--tx-radius-md);
  overflow: hidden;
  border: 1px solid var(--tx-border);
  transition: var(--tx-transition);
  display: flex;
  flex-direction: column;
}

.tx-video-item:hover {
  transform: translateY(-5px);
  border-color: var(--tx-border-hover);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.7);
}

.tx-video-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tx-video-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.tx-video-title a:hover {
  color: var(--tx-brand-orange);
}

.tx-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--tx-text-muted);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tx-video-metrics {
  display: flex;
  gap: 14px;
}

/* AI影视赋能实验室卡片 */
.tx-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tx-ai-card {
  background: linear-gradient(180deg, var(--tx-bg-surface) 0%, rgba(19, 24, 34, 0.6) 100%);
  border: 1px solid var(--tx-border);
  border-radius: var(--tx-radius-md);
  padding: 28px 24px;
  transition: var(--tx-transition);
  position: relative;
}

.tx-ai-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-4px);
}

.tx-ai-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--tx-brand-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.tx-ai-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.tx-ai-card p {
  font-size: 0.9rem;
  color: var(--tx-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* 影视专家团队展示 */
.tx-expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tx-expert-card {
  background: var(--tx-bg-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--tx-radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--tx-transition);
}

.tx-expert-card:hover {
  border-color: var(--tx-border-hover);
  transform: translateY(-4px);
}

.tx-expert-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid rgba(255, 90, 54, 0.3);
  overflow: hidden;
}

.tx-expert-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.tx-expert-role {
  font-size: 0.8rem;
  color: var(--tx-brand-orange);
  margin-bottom: 10px;
  font-weight: 600;
}

.tx-expert-bio {
  font-size: 0.82rem;
  color: var(--tx-text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.tx-expert-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* 合作品牌Logo墙 */
.tx-brand-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.tx-brand-partner {
  background: var(--tx-bg-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--tx-radius-sm);
  padding: 16px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--tx-text-secondary);
}

.tx-brand-partner:hover {
  color: var(--tx-brand-orange);
  border-color: rgba(255, 90, 54, 0.3);
}

/* FAQ 折叠问答 */
.tx-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fitm_i2hvvie {
  background: var(--tx-bg-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--tx-radius-md);
  padding: 18px 24px;
  cursor: pointer;
  transition: var(--tx-transition);
}

.fitm_i2hvvie:hover {
  border-color: var(--tx-border-hover);
}

.fq_qtvc07n {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa_kfvqfatr {
  font-size: 0.92rem;
  color: var(--tx-text-secondary);
  margin-top: 10px;
  line-height: 1.65;
  display: block;
}

/* 用户真实口碑评论 */
.tx-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.tx-review-card {
  background: var(--tx-bg-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--tx-radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tx-review-stars {
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.tx-review-text {
  font-size: 0.9rem;
  color: var(--tx-text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.tx-reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.tx-reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff5a36;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
}

/* 实体传媒公司联系方式与入驻 */
.tx-contact-box {
  background: var(--tx-bg-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--tx-radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.tx-contact-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.tx-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--tx-text-secondary);
}

.tx-contact-list strong {
  color: #fff;
}

.tx-qr-cluster {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.tx-qr-item {
  text-align: center;
}

.tx-qr-item img {
  width: 120px;
  height: 120px;
  border-radius: var(--tx-radius-sm);
  border: 1px solid var(--tx-border);
  margin-bottom: 8px;
}

.tx-qr-item p {
  font-size: 0.8rem;
  color: var(--tx-text-muted);
}

/* 社交分享条 */
.sbar_wgrno7ds {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--tx-border);
  border-bottom: 1px solid var(--tx-border);
  margin: 40px 0;
  flex-wrap: wrap;
}

.sitm_vrf72 {
  padding: 8px 16px;
  background: var(--tx-bg-surface);
  border: 1px solid var(--tx-border);
  border-radius: var(--tx-radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--tx-text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.sitm_vrf72:hover {
  color: #fff;
  border-color: var(--tx-brand-orange);
  background: rgba(255, 90, 54, 0.1);
}

/* 页脚 Footer */
.tx-footer {
  background: #07090e;
  border-top: 1px solid var(--tx-border);
  padding: 60px 0 30px;
  color: var(--tx-text-muted);
  font-size: 0.9rem;
}

.tx-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.tx-footer-col h4 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

.tx-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tx-footer-col ul a:hover {
  color: var(--tx-brand-orange);
}

.tx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
}

/* 模拟视频播放弹窗 Modal */
.mdl_33gme9 {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mdl_33gme9.active {
  display: flex;
}

.mdl_33gme9-content {
  width: 100%;
  max-width: 880px;
  background: var(--tx-bg-surface);
  border-radius: var(--tx-radius-lg);
  border: 1px solid var(--tx-border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}

.mdl_33gme9-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
}

/* 响应式适配 (Mobile & Tablet First) */
@media (max-width: 1024px) {
  .tx-hero-grid {
    grid-template-columns: 1fr;
  }
  .tx-ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tx-expert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tx-brand-wall {
    grid-template-columns: repeat(3, 1fr);
  }
  .tx-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .tx-nav-list {
    display: none;
  }
  .tx-hero-title {
    font-size: 2.1rem;
  }
  .tx-hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .tx-video-grid {
    grid-template-columns: 1fr;
  }
  .tx-ai-grid {
    grid-template-columns: 1fr;
  }
  .tx-expert-grid {
    grid-template-columns: 1fr;
  }
  .tx-contact-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .tx-footer-grid {
    grid-template-columns: 1fr;
  }
}

