/* ========================================
   主题样式
   ======================================== */

/* ===== 顶部细条导航栏 ===== */
.tyc-topbar {
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
    font-size: 12px;
}

.tyc-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tyc-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.tyc-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tyc-topbar-link {
    color: #666;
    transition: color 0.2s;
}

.tyc-topbar-link:hover {
    color: #00bfa5;
}

.tyc-topbar-sep {
    color: #ddd;
}

.tyc-topbar-user {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tyc-topbar-avatar {
    display: inline-block;
}

.tyc-topbar-avatar img {
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.tyc-topbar-reg {
    background: #ff6a00;
    color: #fff !important;
    padding: 3px 12px;
    border-radius: 3px;
}

.tyc-vip-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.tyc-vip-badge.vbfree { background: #e8e8e8; color: #999; }
.tyc-vip-badge.vbgold { background: linear-gradient(135deg, #ffcc00, #ff9500); color: #fff; }
.tyc-vip-badge.vbdiamond { background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; }
.tyc-vip-badge.vbent { background: linear-gradient(135deg, #00bfa5, #00c0ca); color: #fff; }

/* ===== 主导航栏 ===== */
.tyc-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* 首页初始隐藏导航栏 */
.tyc-header.tyc-header-hidden {
    transform: translateY(-100%);
}

/* 首页滚动到功能导航区后显示 */
.tyc-header.tyc-header-visible {
    transform: translateY(0);
}

.tyc-header.tyc-header-trans {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.tyc-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tyc-nav {
    display: flex;
    align-items: center;
    height: 64px;
}

/* Logo */
.tyc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 40px;
    text-decoration: none;
}

.tyc-logo-img {
    height: 32px;
    width: auto;
}

.tyc-logo-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tyc-logo-slogan {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tyc-logo-slogan:hover {
    background: linear-gradient(135deg, #ff8585, #ff6b6b);
}

.tyc-logo-slogan span {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.tyc-logo-icon-text {
    font-size: 28px;
}

.tyc-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

/* 导航内搜索框 */
.tyc-nav-search {
    flex: 1;
    max-width: 400px;
    margin-right: auto;
}

.tyc-nav-search.hidden {
    display: none;
}

.tyc-nav-search-form {
    display: flex;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 3px 3px 3px 16px;
}

.tyc-nav-search-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
}

.tyc-nav-search-hot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.tyc-nav-search-hot .tyc-hot-label {
    color: #999;
    font-size: 12px;
}

.tyc-nav-search-hot .tyc-hot-kw {
    padding: 4px 10px;
    background: #e3f2fd;
    border-radius: 12px;
    font-size: 12px;
    color: #1976d2;
    transition: all 0.2s;
}

.tyc-nav-search-hot .tyc-hot-kw:hover {
    background: #fff;
    color: #1976d2;
}

.tyc-nav-search-btn {
    padding: 8px 24px;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.tyc-nav-search-btn:hover {
    opacity: 0.9;
}

/* 导航菜单 */
.tyc-nav-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.tyc-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 40px;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.2s;
}

.tyc-nav-link:hover,
.tyc-nav-link.active {
    background: #f5f5f5;
    color: #00bfa5;
}

.tyc-nav-icon {
    width: 16px;
    height: 16px;
}

.tyc-nav-vip {
    background: linear-gradient(135deg, #ffcc00, #ff9500);
    color: #fff !important;
}

.tyc-nav-login-btn {
    background: #1890ff;
    color: #fff !important;
    transition: all 0.2s ease;
}

.tyc-nav-login-btn:hover {
    background: #40a9ff;
}

/* 子菜单 */
.tyc-nav-has-sub {
    position: relative;
}

.tyc-nav-sub {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    min-width: 140px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 1001;
}

.tyc-nav-has-sub:hover .tyc-nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tyc-nav-sub li {
    list-style: none;
}

.tyc-nav-sub a {
    display: block;
    padding: 10px 16px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.tyc-nav-sub a:hover {
    background: #f5f5f5;
    color: #00bfa5;
}

/* ===== 首页HERO区域 ===== */
.tyc-hero {
    position: relative;
    background: url('/assets/images/banner/hero-banner-bg.svg') no-repeat center top;
    background-size: cover;
    padding: 60px 0 80px;
    overflow: hidden;
    padding-top: 100px;
}

.tyc-hero-bg {
    display: none;
}

.tyc-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tyc-hero-title {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tyc-hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    color: #fff;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
}

.tyc-hero-sub {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
}

/* 搜索栏 */
.tyc-search-wrap {
    max-width: 720px;
    margin: 0 auto 30px;
}

.tyc-search-tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.tyc-stab {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.tyc-stab:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.tyc-stab.active {
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    color: #fff;
}

.tyc-search-form {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 6px 6px 6px 24px;
}

.tyc-search-form input {
    flex: 1;
    border: none;
    font-size: 16px;
    outline: none;
    color: #333;
}

.tyc-search-form input::placeholder {
    color: #bbb;
}

.tyc-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tyc-search-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* 高级查询 */
.tyc-search-advanced-container {
    margin-top: 16px;
}

.tyc-advanced-search {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tyc-advanced-search:hover {
    background: #fff;
    color: #1976d2;
}

.tyc-advanced-search img {
    width: 14px;
    height: 14px;
}

/* 数据统计 */
.tyc-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.tyc-stat {
    text-align: center;
}

.tyc-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #00bfa5;
}

.tyc-stat-lbl {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

.tyc-stat-sep {
    width: 1px;
    height: 32px;
    background: #e8e8e8;
}

/* ===== 功能导航区 ===== */
.tyc-feature-nav {
    background: #fff;
    padding: 48px 0;
}

.tyc-feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tyc-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
}

.tyc-feature-item:hover {
    background: #f8fcff;
    transform: translateY(-4px);
}

.tyc-fi-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.tyc-fi-icon svg {
    width: 28px;
    height: 28px;
}

.tyc-fi-blue { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #1976d2; }
.tyc-fi-green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: #388e3c; }
.tyc-fi-orange { background: linear-gradient(135deg, #fff3e0, #ffe0b2); color: #f57c00; }
.tyc-fi-purple { background: linear-gradient(135deg, #f3e5f5, #e1bee7); color: #7b1fa2; }
.tyc-fi-red { background: linear-gradient(135deg, #ffebee, #ffcdd2); color: #d32f2f; }
.tyc-fi-gold { background: linear-gradient(135deg, #fff8e1, #ffecb3); color: #ffa000; }

.tyc-fi-info {
    text-align: center;
}

.tyc-fi-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.tyc-fi-desc {
    font-size: 12px;
    color: #999;
}

/* ===== 主体内容区 ===== */
.tyc-main-body {
    background: #f5f7fa;
    padding: 32px 0;
}

.tyc-body-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

.tyc-body-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 卡片样式 */
.tyc-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tyc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.tyc-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tyc-title-bar {
    width: 4px;
    height: 18px;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    border-radius: 2px;
}

.tyc-card-more {
    color: #00bfa5;
    font-size: 14px;
    text-decoration: none;
}

.tyc-card-more:hover {
    text-decoration: underline;
}

/* 企业列表 */
.tyc-company-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tyc-company-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fcff;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.tyc-company-item:hover {
    background: #e3f2fd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tyc-company-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.tyc-company-info {
    flex: 1;
}

.tyc-company-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.tyc-company-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #999;
}

.tyc-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tyc-meta-tag {
    background: rgba(0,191,165,0.1);
    color: #00bfa5;
    padding: 2px 8px;
    border-radius: 4px;
}

.tyc-company-cap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.tyc-cap-label {
    font-size: 11px;
    color: #999;
}

.tyc-cap-val {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.tyc-company-arrow {
    font-size: 24px;
    color: #ddd;
}

.tyc-text-muted {
    color: #bbb;
}

/* 行业网格 */
.tyc-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.tyc-industry-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fcff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.tyc-industry-item:hover {
    background: #e3f2fd;
}

.tyc-ind-name {
    font-size: 14px;
    color: #333;
}

.tyc-ind-count {
    font-size: 12px;
    color: #999;
}

/* 右侧边栏 */
.tyc-body-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tyc-aside-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tyc-aside-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

/* VIP引导 */
.tyc-aside-vip {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border-radius: 12px;
    padding: 24px;
}

.tyc-vip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #f57c00;
    margin-bottom: 16px;
}

.tyc-vip-crown {
    font-size: 20px;
}

.tyc-vip-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.tyc-vip-benefits li {
    padding: 6px 0;
    font-size: 14px;
    color: #666;
}

.tyc-vip-actions {
    display: flex;
    gap: 12px;
}

.tyc-btn-vip-buy {
    flex: 1;
    padding: 10px 0;
    background: linear-gradient(135deg, #ffcc00, #ff9500);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.tyc-btn-login-small {
    flex: 1;
    padding: 10px 0;
    background: #f5f5f5;
    color: #666;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
}

.tyc-btn-vip-buy:hover {
    opacity: 0.9;
}

.tyc-btn-login-small:hover {
    background: #e8e8e8;
}

/* 用户卡片 */
.tyc-aside-user {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tyc-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
}

.tyc-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tyc-user-info {
    flex: 1;
}

.tyc-user-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.tyc-user-level {
    font-size: 13px;
    color: #999;
}

.tyc-user-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tyc-user-links a {
    padding: 8px 12px;
    background: #f8fcff;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.tyc-user-links a:hover {
    background: #e3f2fd;
    color: #00bfa5;
}

/* 热门搜索侧边栏 */
.tyc-hot-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tyc-hot-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #f8fcff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.tyc-hot-item:hover {
    background: #e3f2fd;
}

.tyc-hot-rank {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #999;
}

.tyc-hot-rank.tyc-rank-top {
    background: linear-gradient(135deg, #00bfa5, #00c0ca);
    color: #fff;
}

.tyc-hot-name {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.tyc-hot-heat {
    font-size: 12px;
    color: #999;
}

/* 平台优势 */
.tyc-advantage-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tyc-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tyc-adv-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.tyc-adv-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.tyc-adv-desc {
    font-size: 13px;
    color: #999;
}

/* 空状态 */
.tyc-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.tyc-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tyc-empty p {
    font-size: 14px;
    margin: 0;
}

/* ===== 页脚样式补充 ===== */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand-col {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo-icon {
    font-size: 24px;
}

.footer-slogan {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdc3c7;
    font-size: 14px;
}

.fc-icon {
    font-size: 16px;
}

.footer-links-col h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col li {
    margin-bottom: 12px;
}

.footer-links-col a {
    color: #bdc3c7;
    font-size: 14px;
    text-decoration: none;
}

.footer-links-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-inner p {
    color: #bdc3c7;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: #bdc3c7;
    font-size: 14px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links span {
    color: #34495e;
}

/* ===== 主容器 ===== */
.tyc-main {
    min-height: calc(100vh - 200px);
}

.tyc-main.tyc-main-home {
    min-height: auto;
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
    .tyc-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tyc-body-layout {
        grid-template-columns: 1fr;
    }

    .tyc-body-aside {
        display: none;
    }
}

@media (max-width: 992px) {
    .tyc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tyc-nav-search {
        display: none !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tyc-hero-title {
        font-size: 32px;
        flex-direction: column;
    }

    .tyc-search-tabs {
        gap: 12px;
    }

    .tyc-stab {
        padding: 6px 14px;
        font-size: 14px;
    }

    .tyc-search-form {
        flex-direction: column;
        padding: 12px;
    }

    .tyc-search-form input {
        width: 100%;
        margin-bottom: 12px;
    }

    .tyc-search-btn {
        width: 100%;
        justify-content: center;
    }

    .tyc-stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .tyc-stat-sep {
        display: none;
    }

    .tyc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tyc-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tyc-topbar-inner {
        padding: 0 12px;
    }

    .tyc-nav-menu {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tyc-feature-grid {
        grid-template-columns: 1fr;
    }

    .tyc-hero {
        padding: 80px 0 60px;
    }

    .tyc-hero-title {
        font-size: 26px;
    }

    .tyc-hero-sub {
        font-size: 15px;
    }
}
