/* ============================================================
   内页样式(与设计稿对齐)
   说明:所有内页共用此样式表,配合 style.css 使用
   ============================================================ */

/* ---------- 通用内页 ---------- */
.page-main {
    padding: 56px 0 72px;
}

/* 内页横幅:全宽实景图 + 左下白色标题 */
.page-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
/* 横幅背景层(独立层以便做缩放动画,文字不受影响) */
.page-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform-origin: center;
    will-change: transform;
    animation: pageBannerZoom 9s cubic-bezier(0.22, 0.75, 0.3, 1) both;
}
/* banner 背景缓慢放大入场 */
@keyframes pageBannerZoom {
    from { transform: scale(1.14); }
    to   { transform: scale(1); }
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(15, 80, 45, 0.72), rgba(15, 80, 45, 0.15) 70%, transparent);
}
.page-banner .container {
    position: relative;
    z-index: 2;
    padding-bottom: 42px;
}
.page-banner-eyebrow {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.page-banner-title {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

/* 面包屑 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}
.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.25s;
}
.breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb .sep {
    color: #c2ccd4;
}
.breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
}

/* 页内子导航条(关于我们系列) */
.subnav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.subnav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.subnav-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
}
.subnav-tab {
    display: block;
    padding: 18px 20px;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    transition: color 0.25s, border-color 0.25s;
    white-space: nowrap;
}
.subnav-tab:hover {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}
.subnav-tab.active {
    color: var(--primary);
    font-weight: 600;
    border-color: var(--primary);
}

/* 内容区通用头部 */
.inner-head {
    text-align: center;
    margin-bottom: 40px;
}
.inner-head .section-eyebrow {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}
.inner-head .section-title {
    font-size: 42px;
    margin: 6px 0 10px;
}
.inner-head p:last-child {
    color: var(--text-light);
    font-size: 15px;
}

/* 正文段落 */
.lead-para {
    color: var(--text-light);
    font-size: 18px;
    line-height: 2;
    margin-bottom: 16px;
    text-align: justify;
}
.green-title {
    color: var(--primary);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
}

/* ---------- 关于我们 ---------- */
.about-intro .green-title {
    margin-bottom: 14px;
}
.about-media {
    margin-top: 30px;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}
.about-media img {
    width: 100%;
    display: block;
    /*aspect-ratio: 16 / 6.5;*/
    object-fit: cover;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.about-media:hover img {
    filter: brightness(0.82);
}

/* 股东公司(灰底板块) */
.shareholder {
    background: var(--bg-soft);
    padding: 60px 0;
    margin-top: 60px;
}
.shareholder .inner-head {
    margin-bottom: 36px;
}
.shareholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sh-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.sh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.sh-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.sh-card h3 {
    padding: 18px 22px;
    font-size: 17px;
    color: var(--text);
}

/* ---------- 企业文化 ---------- */
.culture-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}
.culture-media img {
    width: 100%;
    border-radius: 12px;
   /* aspect-ratio: 4 / 5;*/
    object-fit: cover;
    display: block;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.culture-block {
    margin-bottom: 30px;
}
.culture-block .block-eyebrow {
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 6px;
}
.culture-block h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}
.culture-block p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 18px;
}
.culture-list {
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
    flex-wrap: wrap;
}
.culture-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
}
.culture-list li::before {
    content: "✔";
    color: var(--primary);
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ---------- 发展历程 ---------- */
.timeline {
    position: relative;
    padding-left: 44px;
    display: flex;
    flex-direction: column;
}
/* 竖线改为逐段拼接:每段盖住对应卡片高度、颜色跟随卡片状态,
   只有第一段(当前阶段)为绿色,其余为灰色,段与段无缝相接 */
.tl-item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -32px;   /* 与圆点同轴 */
    width: 2px;
    background: #d7e0e6;   /* 默认:灰色段 */
    z-index: 0;
}
.tl-item:first-child::after {
    top: 12px;     /* 顶端留白,与圆点对齐 */
    background: var(--primary);
}
.tl-item:last-child::after {
    bottom: 12px;  /* 底端留白 */
}

/* 每一项:日期 | 标题+描述 | 图片 同一行 */
.tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 170px 1fr 300px;
    gap: 30px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px dashed #e2e8ec;
}
.tl-item:last-child {
    border-bottom: none;
}
.tl-item::before {
    content: "";
    position: absolute;
    left: -44px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #c6d0d8;   /* 默认:灰色圆圈 */
    box-shadow: 0 0 0 4px rgba(133, 149, 161, 0.14);
    z-index: 1;
}
/* 第一项(当前阶段):圆点绿色高亮 */
.tl-item:first-child::before {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 142, 78, 0.15);
}
.tl-item .tl-period {
    color: #9aa7b1;   /* 默认:灰色年份 */
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}
/* 第一项(当前阶段):年份绿色高亮 */
.tl-item:first-child .tl-period {
    color: var(--primary);
}
.tl-item .tl-text h3 {
    font-size: 19px;
    margin-bottom: 6px;
    color: var(--text);
}
.tl-item:first-child .tl-text h3 {
    color: var(--primary);
}
.tl-item .tl-text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tl-item .tl-media img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s, box-shadow 0.35s;
}
.tl-item:hover .tl-media img {
    transform: scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}
.tl-item .tl-media {
    overflow: hidden;
    border-radius: 10px;
}
/* ---------- 荣誉资质 ---------- */
.honors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.honor-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.honor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    outline: 2px solid var(--primary);
    outline-offset: 0;
}
.honor-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 14px;
    display: block;
}
.honor-card h3 {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.honor-card.active h3 {
    color: var(--primary);
    font-weight: 600;
}
.honor-card.active {
    outline: 2px solid var(--primary);
    outline-offset: 0;
}

/* ---------- 核心团队 ---------- */
.team-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.team-member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 34px;
    align-items: center;
    background: #f6f6f6;
    border-radius: 14px;
    
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.07);
}
.team-member img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 14px 0 0 14px;
    display: block;
}
.tm-info{
    padding-right: 20px;
}
.tm-info h3 {
    font-size: 24px;
    margin-bottom: 6px;
}
.tm-info .tm-post {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}
.tm-info p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 16px;
    text-align: justify;
}

/* ---------- 合作项目 ---------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.project-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.project-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}
.project-card h3 {
    padding: 16px 18px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    text-align: center;
}

/* ---------- 侧栏 + 内容布局(产品/方案/新闻) ---------- */
.side-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;
}
.side-nav {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.side-nav .side-title {
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.side-nav ul {
    display: flex;
    flex-direction: column;
}
.side-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    font-size: 15px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background 0.25s, color 0.25s;
}
.side-nav a:last-child {
    border-bottom: none;
}
.side-nav a::after {
    content: "›";
    color: #b9c4cd;
    font-size: 18px;
    transition: color 0.25s, transform 0.25s;
}
.side-nav a:hover {
    color: var(--primary);
    background: var(--bg-soft);
}
.side-nav a.active,.side-nav a:hover {
    color: #fff;
    background: var(--primary);
    font-weight: 600;
}
.side-nav a.active::after {
    color: #fff;
    transform: translateX(3px);
}

/* ---------- 产品中心 ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.pc-img {
    overflow: hidden;
}
.pc-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.45s;
}
.product-card:hover .pc-img img {
    transform: scale(1.06);
}
.pc-body {
    padding: 18px 20px 22px;
    text-align: center;
}
.pc-body h3 {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--text);
}
.pc-link {
    display: inline-block;
    padding: 8px 26px;
    border-radius: 22px;
    font-size: 13px;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.3s;
}
.product-card:hover .pc-link {
    background: var(--primary);
    color: #fff;
}

/* ---------- 产品详情 ---------- */
.pd-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
    margin-bottom: 50px;
}
.pd-gallery img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.pd-info h2 {
    font-size: 26px;
    margin-bottom: 14px;
}
.pd-info .pd-desc {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}
.pd-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}
.pd-meta li {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}
.pd-meta li b {
    color: var(--primary);
    font-weight: 600;
    min-width: 76px;
    flex-shrink: 0;
    margin-bottom: 10px;
    display: inline-block;
}
.pd-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    height: 44px;
    border-radius: 22px;
    font-size: 14px;
    color: var(--primary);
    border: 1px solid var(--primary);
    background: transparent;
    transition: all 0.3s;
    cursor: pointer;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
/* 产品简介/参数 */
.spec-block {

    padding: 30px 34px;
    margin-bottom: 30px;
}
.spec-block h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--bg-soft);
    font-weight: bold;
    position: relative;
}
.spec-block h3::after{
    content:"";
    height:2px;
    width:100px;
    position: absolute;
    left:0;
    bottom: -1px;
    background: var(--primary);
}
.spec-block p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 15px;
    text-align: justify;
}
.spec-block img{
    display: inline-block;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.spec-table th,
.spec-table td {
    padding: 14px 20px;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.spec-table th {
    width: 200px;
    color: #fff;
    background: var(--primary);
    font-weight: 500;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: none;
}
.spec-table td {
    color: var(--text-light);
}

/* ---------- 解决方案 ---------- */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.solution-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.solution-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}
.solution-card .sol-name {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text);
    text-align: center;
    font-weight: 500;
    background: #f4f6f5;
}
.solution-card:hover .sol-name {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

/* ---------- 新闻中心 ---------- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.news-list-item {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 28px;
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-list-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}
.nl-info .nl-date {
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.nl-info:hover .nl-date {
    color: var(--primary);
}
.nl-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.5;
}
.nl-info h3 a {
    color: var(--text);
    transition: color 0.25s;
}
.nl-info h3 a:hover {
    color: var(--primary);
}
.nl-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nl-more {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}
.nl-info:hover .nl-more {
    color: var(--primary);
}
.nl-img {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}
.nl-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    display: block;
    transition: transform 0.45s;
    
    overflow: hidden;
}
.news-list-item:hover .nl-img img {
    transform: scale(1.06);
}

/* ---------- 新闻详情 ---------- */
.article {
    /* max-width: 860px; */
    margin: 0 auto;
}
.article-header h1 {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 14px;
}
.article-meta {
    display: flex;
    gap: 22px;
    color: var(--text-muted);
    font-size: 13px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 26px;
}
.article-body {
    color: var(--text-light);
    font-size: 15px;
    line-height: 2;
    text-align: justify;
}
.article-body p {
    margin-bottom: 18px;
}
.article-body img {
    width: 100%;
    border-radius: 10px;
    margin: 10px 0 22px;
}
.article-body h3 {
    color: var(--text);
    font-size: 18px;
    margin: 24px 0 10px;
}
.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    flex-wrap: wrap;
}
.article-nav a {
    color: var(--text-light);
    transition: color 0.25s;
}
.article-nav a:hover {
    color: var(--primary);
}

/* ---------- 联系我们 ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: stretch;
}
.contact-info h2 {
    font-size: 34px;   
    color: var(--text);
}
.contact-info h3{
    font-size: 30px;
    font-weight: bold;
    color: #0c6638;
    
}
.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.ci-item:last-child {
    border-bottom: none;
}
.ci-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
}
.ci-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}
.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ---------- 响应式 ---------- */
@media (max-width: 992px) {
    .shareholder-grid,
    .honors-grid,
    .projects-grid,
    .product-grid,
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .side-layout {
        grid-template-columns: 1fr;
    }
    .side-nav {
        position: static;
    }
    .side-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .side-nav a {
        border-bottom: none;
        border-right: 1px solid var(--border);
    }
    .culture-wrap,
    .pd-wrap,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .news-list-item {
        grid-template-columns: 1fr;
    }
    .nl-img img {
        aspect-ratio: 16 / 9;
    }
    .team-member {
        grid-template-columns: 220px 1fr;
    }
    .tl-item {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
    }
    .tl-item .tl-media img {
        aspect-ratio: 16 / 9;
    }
    .page-banner {
        height: 300px;
    }
}
@media (max-width: 640px) {
    .page-banner {
        height: 220px;
    }
    .page-banner-title {
        font-size: 28px;
    }
    .shareholder-grid,
    .honors-grid,
    .projects-grid,
    .product-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }
    .team-member {
        grid-template-columns: 1fr;
    }
    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}
