:root {
    --clr-dark: #0F1923;
    --clr-green: #00A86B;
    --clr-green-dark: #007A4D;
    --clr-green-light: #E6F9F0;
    --clr-red: #D4202C;
    --clr-warm: #F5F1EB;
    --clr-text: #3A3A3A;
    --clr-muted: #7A7A7A;
    --clr-gold: #F0A500;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

/* ── HERO ── */
.split-hero {
    display: flex;
    min-height: 100vh;
}

.split-hero-left {
    flex: 1;
    background: var(--clr-dark);
    display: flex;
    align-items: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.split-hero-left::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,168,107,0.12) 0%, transparent 70%);
}

.split-hero-left::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,168,107,0.12) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0,168,107,0.4);
    color: var(--clr-green);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-tag i { font-size: 0.5rem; }

.hero-inner h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-inner h1 em {
    font-style: normal;
    color: var(--clr-green);
}

.hero-inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-green);
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: var(--clr-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,168,107,0.3);
}

.split-hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-stat {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    color: #fff;
    z-index: 5;
}

.hero-overlay-stat .num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--clr-green);
}

.hero-overlay-stat .lbl {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ── MARQUEE ── */
.marquee-strip {
    background: var(--clr-green);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-inner span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 3rem;
}

.marquee-inner span i {
    margin-right: 8px;
    font-size: 0.75rem;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── APPROACH ── */
.approach-alt { padding: 7rem 0; }

.approach-overline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.approach-overline::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--clr-green);
}

.approach-alt h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-dark);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.approach-alt h2 em {
    font-style: normal;
    color: var(--clr-green);
}

.approach-alt .lead-text {
    font-size: 1.15rem;
    color: var(--clr-muted);
    line-height: 1.9;
    border-left: 3px solid var(--clr-green);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.approach-alt .body-text {
    font-size: 1rem;
    color: var(--clr-text);
    line-height: 1.85;
}

.approach-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
    height: 100%;
}

.approach-img-grid .img-cell {
    border-radius: 16px;
    overflow: hidden;
}

.approach-img-grid .img-cell:first-child {
    grid-row: span 2;
}

.approach-img-grid .img-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.approach-img-grid .img-cell:hover img {
    transform: scale(1.08);
}

/* ── PARALLAX POLICIES ── */
.parallax-policy {
    display: flex;
    min-height: 500px;
    overflow: hidden;
}

.parallax-policy.reverse { flex-direction: row-reverse; }

.pp-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.pp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.pp-image:hover img { transform: scale(1.05); }

.pp-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.pp-content-inner { max-width: 520px; }

.pp-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.pp-icon.green { background: var(--clr-green-light); color: var(--clr-green); }
.pp-icon.gold  { background: #FFF8E1; color: var(--clr-gold); }
.pp-icon.red   { background: #FFEBEE; color: var(--clr-red); }

.pp-content-inner h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: 1rem;
}

.pp-content-inner p {
    font-size: 1rem;
    color: var(--clr-muted);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.pp-features { display: flex; flex-direction: column; gap: 10px; }

.pp-features .feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--clr-text);
    font-weight: 500;
}

.pp-features .feat i { color: var(--clr-green); font-size: 0.8rem; }

.pp-bg-warm  { background: var(--clr-warm); }
.pp-bg-white { background: #fff; }
.pp-bg-light { background: #F7FAF8; }

/* ── BENTO GRID ── */
.bento-section {
    padding: 7rem 0;
    background: var(--clr-dark);
    position: relative;
    overflow: hidden;
}

.bento-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse at 20% 0%, rgba(0,168,107,0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 100%, rgba(0,168,107,0.06) 0%, transparent 50%);
}

.bento-section .sec-head {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.bento-section .sec-head .overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: 1rem;
}

.bento-section .sec-head .overline::before,
.bento-section .sec-head .overline::after {
    content: '';
    width: 30px;
    height: 1.5px;
    background: rgba(0,168,107,0.4);
}

.bento-section .sec-head h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.bento-section .sec-head h2 em {
    font-style: normal;
    color: var(--clr-green);
}

.bento-section .sec-head p {
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
    margin-top: 0.75rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 16px;
    position: relative;
}

.bento-card {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.bento-card.lg   { grid-column: span 8; grid-row: span 2; min-height: 420px; }
.bento-card.md   { grid-column: span 4; min-height: 200px; }
.bento-card.sm   { grid-column: span 4; min-height: 200px; }
.bento-card.wide { grid-column: span 6; min-height: 260px; }

.bento-card.style-image { background-size: cover; background-position: center; }

.bento-card.style-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.1) 100%);
    transition: background 0.4s ease;
}

.bento-card.style-image:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.15) 100%);
}

.bento-card.style-glass {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.bento-card.style-glass:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(0,168,107,0.25);
}

.bento-card.style-green {
    background: linear-gradient(135deg, var(--clr-green), var(--clr-green-dark));
}

.bento-card.style-green:hover {
    background: linear-gradient(135deg, var(--clr-green-dark), #005C3A);
}

.bento-inner { position: relative; z-index: 5; }

.bento-num {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon { transform: scale(1.1) rotate(-5deg); }

.bento-icon.ic-white       { background: rgba(255,255,255,0.15); color: #fff; }
.bento-icon.ic-green       { background: rgba(0,168,107,0.2); color: var(--clr-green); }
.bento-icon.ic-green-solid { background: rgba(255,255,255,0.2); color: #fff; }

.bento-inner h4 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.bento-inner p  { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }
.bento-card.style-green .bento-inner p { color: rgba(255,255,255,0.75); }

.bento-features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }

.bento-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.bento-features span i { font-size: 0.6rem; color: var(--clr-green); }

.bento-big-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    z-index: 1;
}

/* ── STATS RINGS ── */
.stats-rings { padding: 6rem 0; background: #fff; border-bottom: 1px solid #eee; }

.stats-rings .sec-head { text-align: center; margin-bottom: 4rem; }

.stats-rings .sec-head .overline {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--clr-green); margin-bottom: 0.75rem; display: block;
}

.stats-rings .sec-head h2 { font-size: 2.25rem; font-weight: 800; color: var(--clr-dark); }
.stats-rings .sec-head h2 em { font-style: normal; color: var(--clr-green); }

.ring-card {
    text-align: center; padding: 2rem 1rem; border-radius: 20px;
    background: #FAFAFA; border: 1px solid #f0f0f0; transition: all 0.35s ease;
}

.ring-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: transparent;
}

.ring-wrap { position: relative; width: 140px; height: 140px; margin: 0 auto 1.25rem; }
.ring-wrap svg { width: 140px; height: 140px; transform: rotate(-90deg); }
.ring-bg  { fill: none; stroke: #E8E8E8; stroke-width: 8; }

.ring-fill {
    fill: none; stroke: var(--clr-green); stroke-width: 8;
    stroke-linecap: round; stroke-dasharray: 0 999;
    transition: stroke-dasharray 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ring-fill.gold { stroke: var(--clr-gold); }
.ring-fill.red  { stroke: var(--clr-red); }
.ring-fill.blue { stroke: #2980b9; }

.ring-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ring-center .rc-num { font-size: 2rem; font-weight: 800; color: var(--clr-dark); line-height: 1; }
.ring-center .rc-num small { font-size: 1rem; font-weight: 700; }
.ring-center .rc-unit { font-size: 0.65rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.ring-card h5 { font-size: 1rem; font-weight: 700; color: var(--clr-dark); margin-bottom: 0.35rem; }
.ring-card p  { font-size: 0.82rem; color: var(--clr-muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════
   STACKED FEATURE CARDS
══════════════════════════════════════ */
.features-stack {
    padding: 6rem 0;
    background: var(--clr-warm);
}

.features-stack .sec-head {
    text-align: center;
    margin-bottom: 4rem;
}

.features-stack .sec-head .overline {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: 0.75rem;
    display: block;
}

.features-stack .sec-head h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--clr-dark);
}

.features-stack .sec-head h2 em {
    font-style: normal;
    color: var(--clr-green);
}

.features-stack .sec-head p {
    color: var(--clr-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Her kart */
.feat-card {
    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feat-card:last-child { margin-bottom: 0; }

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(0,0,0,0.1);
}

.feat-card.reverse { flex-direction: row-reverse; }

/* Görsel taraf */
.feat-card-img {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.feat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.feat-card:hover .feat-card-img img {
    transform: scale(1.06);
}

.feat-card-img .img-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feat-card.reverse .feat-card-img .img-badge {
    left: auto;
    right: 1.5rem;
}

/* İçerik taraf */
.feat-card-body {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.feat-card:hover .feat-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feat-card-icon.fc-green { background: var(--clr-green-light); color: var(--clr-green); }
.feat-card-icon.fc-gold  { background: #FFF8E1; color: #E6A700; }
.feat-card-icon.fc-blue  { background: #E3F2FD; color: #1565C0; }

.feat-card-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: 0.75rem;
}

.feat-card-body > p {
    font-size: 0.95rem;
    color: var(--clr-muted);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

/* Grid liste */
.feat-grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feat-grid-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--clr-text);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 10px;
    background: #F7F8FA;
    transition: all 0.3s;
}

.feat-grid-list li:hover {
    background: var(--clr-green-light);
    transform: translateX(4px);
}

.feat-grid-list li .icon {
    color: var(--clr-green);
    flex-shrink: 0;
}

/* Alt istatistik şeridi */
.feat-stats-row {
    display: flex;
    gap: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 1.25rem;
    margin-top: auto;
}

.feat-stat {
    flex: 1;
    text-align: center;
    padding: 0 0.5rem;
    border-right: 1px solid #f0f0f0;
}

.feat-stat:last-child { border-right: none; }

.feat-stat .fs-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-dark);
    line-height: 1.2;
}

.feat-stat .fs-num small {
    color: var(--clr-green);
    font-weight: 800;
}

.feat-stat .fs-label {
    font-size: 0.65rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 2px;
}

/* Accent bar */
.feat-card-accent {
    width: 4px;
    flex-shrink: 0;
}

.feat-card-accent.ac-green { background: var(--clr-green); }
.feat-card-accent.ac-gold  { background: var(--clr-gold); }
.feat-card-accent.ac-blue  { background: #1565C0; }

/* ── CTA ── */
.cta-visual {
    position: relative; min-height: 420px; display: flex;
    align-items: center; justify-content: center; text-align: center; overflow: hidden;
}

.cta-visual-bg {
    position: absolute; inset: 0;
    background: url('../img/sustainability-13.webp') center/cover no-repeat;
}

.cta-visual::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(15, 25, 35, 0.82); backdrop-filter: blur(2px);
}

.cta-visual-inner { position: relative; z-index: 5; max-width: 600px; padding: 3rem 1.5rem; }
.cta-visual-inner h3 { font-size: 2.25rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-visual-inner h3 em { font-style: normal; color: var(--clr-green); }
.cta-visual-inner p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.7; }
.cta-visual-inner .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-cta-green {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--clr-green); color: #fff; padding: 14px 32px;
    border-radius: 100px; font-weight: 600; text-decoration: none; transition: all 0.3s;
}

.btn-cta-green:hover { background: #fff; color: var(--clr-dark); transform: translateY(-2px); }

.btn-cta-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff; padding: 14px 32px;
    border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.25);
    font-weight: 600; text-decoration: none; transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5); color: #fff;
}

/* ── ANIMATIONS ── */
.reveal      { opacity: 0; transform: translateY(50px);  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-right{ opacity: 0; transform: translateX(60px);  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.cke_editable .reveal , .cke_editable .reveal-left , .cke_editable .reveal-right {
    opacity: 1;
    transform: translate(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .split-hero { flex-direction: column; }
    .split-hero-left { padding: 3rem 2rem; padding-top: 10rem !important; min-height: 50vh; }
    .split-hero-right { min-height: 40vh; }
    .parallax-policy, .parallax-policy.reverse { flex-direction: column; }
    .pp-image { min-height: 300px; }
    .pp-content { padding: 2.5rem; }
    .approach-img-grid { display: none; }
    .bento-card.lg, .bento-card.md, .bento-card.sm, .bento-card.wide { grid-column: span 12; min-height: 220px; }
    .bento-card.lg { min-height: 300px; grid-row: span 1; }
    .feat-card,
    .feat-card.reverse {
        flex-direction: column;
    }
    .feat-card-img { min-height: 250px; flex: none; }
    .feat-card-body { padding: 2rem; }
    .feat-grid-list { grid-template-columns: 1fr; }
    .feat-stats-row { flex-wrap: wrap; }
    .feat-stat { flex: 0 0 50%; padding: 0.5rem; border-bottom: 1px solid #f0f0f0; }
}

@media (max-width: 575.98px) {
    .split-hero-left { padding: 2.5rem 1.5rem; }
    .hero-overlay-stat { bottom: 1rem; right: 1rem; padding: 1rem; }
    .bento-grid { gap: 10px; }
    .custom-tabs { flex-direction: column; border-radius: 16px; }
    .custom-tab-btn { border-radius: 12px; }
    .tab-content-body { padding: 1.5rem; }
    .tbs-item { flex: 0 0 50%; }
}