/* ==============================================
   COMPANY.CSS
   ============================================== */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-hero {
    position: relative;
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.co-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.co-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.6) contrast(1.15) saturate(0.4);
}

.co-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(175deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.98) 100%);
}

.co-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(61,180,81,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,180,81,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.co-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px 140px;
}

.co-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px;
}

.co-breadcrumb a,
.co-breadcrumb span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    text-decoration: none;
    transition: color 0.2s;
}

.co-breadcrumb a:hover { color: #3db451; }
.co-bc-active { color: #3db451 !important; }

.co-hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #3db451;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.co-hero-kicker::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #3db451;
    flex-shrink: 0;
}

.co-hero-title {
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 800;
    color: #fff;
    line-height: 0.92;
    letter-spacing: -4px;
    max-width: 900px;
    margin: 0 0 30px;
}

.co-hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
}

.co-hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    max-width: 600px;
    margin: 0;
}

.co-hero-scroll {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
}

.co-hero-scroll span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

.co-scroll-line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
}

.co-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #3db451;
    animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

.co-hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: stretch;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.co-hstat {
    flex: 1;
    padding: 22px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.co-hstat-num {
    font-size: 26px;
    font-weight: 800;
    color: #3db451;
    letter-spacing: -1px;
    line-height: 1;
}

.co-hstat-label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.co-hstat-div {
    width: 1px;
    background: rgba(255,255,255,0.06);
    margin: 12px 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. BODY LAYOUT — sidebar gizli, tam genişlik
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-body {
    display: block;
    width: 100%;
}

.co-sidebar {
    display: none;
}

.co-main {
    width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. SHARED SECTION STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-section {
    padding: 90px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.co-section-light {
    background: #f5f5f5;
    border-bottom: 0px solid #e8e8e8;
}

.co-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.co-section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3db451;
    margin-bottom: 16px;
}

.co-label-dark { color: #3db451; }

.co-section-heading {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0 px;
    line-height: 1.05;
    margin: 0 0 40px;
}

.co-heading-dark { color: #0b0b0b; }

.co-section p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    margin-bottom: 20px;
    max-width: 720px;
}

.co-tl-content p {
    font-size: 16px;
}

.co-value-card p {
    font-size: 16px;
}

.co-cert p {
    font-size: 16px;
}

.co-section-light .co-section p,
.co-section-light p {
    color: #4a4a4a;
    max-width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. OVERVIEW SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.co-overview-left p { max-width: 100%; }

.co-overview-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.co-overview-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    filter: brightness(0.5) saturate(0.6);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.co-overview-image:hover img {
    transform: scale(1.04);
    filter: brightness(0.95) saturate(0.8);
}

.co-overview-caption {
    padding: 8px 12px;
    background: rgba(0,0,0,0.7);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.co-overview-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.co-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 2px solid #3db451;
    transition: background 0.2s;
}

.co-pillar:hover { background: rgba(61,180,81,0.04); }

.co-pillar-icon {
    color: #3db451;
    flex-shrink: 0;
    margin-top: 2px;
}

.co-pillar-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.co-pillar-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    margin: 0 !important;
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. MISSION SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.co-mission-headline {
    font-size: clamp(26px, 2.8vw, 37px);
    font-weight: 650;
    color: #0b0b0b;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0;
    position: relative;
    padding-top: 24px;
}

.co-mission-headline::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -8px;
    font-size: 100px;
    font-weight: 800;
    color: rgba(61,180,81,0.15);
    line-height: 1;
    font-style: italic;
}

.co-mission-lead {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px !important;
    line-height: 1.65 !important;
}

.co-mission-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.co-mb {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #333;
    letter-spacing: 0px;
    line-height: 1.5;
}

.co-mb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3db451;
    flex-shrink: 0;
    margin-top: 6px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. TIMELINE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-section-timeline .co-timeline-layout {
    display: grid;
    grid-template-columns: 1fr 700px;
    gap: 60px;
    align-items: start;
}

.co-section-timeline .co-timeline-visual {
    position: sticky;
    top: 100px;
}

.co-timeline-visual {
    overflow: hidden;
}

.co-timeline-img {
    width: 708px;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.5);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.co-timeline-visual:hover .co-timeline-img {
    transform: scale(1.04);
    filter: brightness(0.95) saturate(0.8);
}
.co-timeline-img-caption {
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-left: 2px solid #3db451;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-top: 2px;
}
    position: relative;
    padding-left: 48px;
}

.co-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.co-tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    padding-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    align-items: center;
}
.co-tl-item.revealed {
    opacity: 1;
    transform: translateY(0);
}


.co-tl-item:hover::before,
.co-tl-item-current::before {
    border-color: #3db451;
    background: #3db451;
}

.co-tl-year {
    font-size: 13px;
    font-weight: 600;
    color: #3db451ab;
    letter-spacing: 0.5px;
    padding-top: 4px;
    line-height: 1;
}

.co-tl-content h3 {
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.25;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    gap: 16px;
    padding: 12px 0;
    user-select: none;
}


.co-tl-content h3::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: #3db4519d;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
    margin-left: 8px;
}

.co-tl-item.open .co-tl-content h3::after {
    transform: rotate(45deg);
}

.co-tl-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin: 0;
    max-width: 560px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    opacity: 0;
}

.co-tl-item.open .co-tl-content p {
    max-height: 300px;
    opacity: 1;
    margin-top: 12px;
}

.co-tl-badge {
    display: none;
}

.co-tl-item.open .co-tl-badge {
    display: inline-block;
    margin-top: 12px;
}

.co-tl-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: rgba(61,180,81,0.12);
    border: 1px solid rgba(61,180,81,0.3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3db451;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. VALUES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 20px;
}

.co-value-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.co-value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #3db451;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.co-value-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.co-value-card:hover::before { transform: scaleX(1); }

.co-value-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #3db451;
    margin-bottom: 16px;
}

.co-value-icon {
    color: #3db451;
    margin-bottom: 18px;
}

.co-value-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #f8f8f9;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
}

.co-value-card p {
    font-size: 14px;
    color: #f3f4f2;
    line-height: 1.75;
    margin: 0;
    max-width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. UK PRESENCE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-uk-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.co-uk-content .co-section-heading { margin-bottom: 20px; }
.co-uk-content .co-section-heading em {
    font-style: normal;
    color: rgba(255,255,255,0.3);
}

.co-uk-commitments {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 36px;
}

.co-ukc {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.co-ukc-val {
    font-size: 22px;
    font-weight: 800;
    color: #3db451;
    letter-spacing: -0.5px;
    line-height: 1;
}

.co-ukc-label {
    font-size: 11px;
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
}

.co-uk-img-wrap {
    overflow: hidden;
    margin-bottom: 20px;
}

.co-uk-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.5);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.co-uk-img-wrap:hover img {
    transform: scale(1.04);
    filter: brightness(0.9) saturate(0.7);
}

.co-uk-quote {
    border-left: 2px solid #3db451;
    padding-left: 20px;
}

.co-uk-quote blockquote {
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin: 0 0 10px;
}

.co-uk-quote cite {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    font-style: normal;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. PARTNERS / CERTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-partners-intro {
    font-size: 16px !important;
    color: #444 !important;
    max-width: 680px !important;
    margin-bottom: 48px !important;
}

.co-certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.co-cert {
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 32px 28px;
    transition: border-color 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.co-cert::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: #3db451;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.co-cert:hover {
    border-color: rgba(61,180,81,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.co-cert:hover::after { transform: scaleX(1); }

.co-cert-icon {
    color: #3db451;
    margin-bottom: 16px;
}

.co-cert h4 {
    font-size: 15px;
    font-weight: 800;
    color: #0b0b0b;
    letter-spacing: -0.3px;
    margin: 0 0 10px;
}

.co-cert p {
    font-size: 13px;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0;
    max-width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. FINAL CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-section-cta {
    border-bottom: none;
    background: #000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.co-section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(61,180,81,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.co-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-left: 80px;
}

.co-cta-text { max-width: 640px; }

.co-cta-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3db451;
    margin-bottom: 16px;
}

.co-cta-heading {
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0 0 16px;
}

.co-cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin: 0;
    max-width: 520px;
}

.co-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    min-width: 200px;
    align-items: flex-start;
    justify-content: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   11. RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
    .co-section-inner { padding: 0 40px; }
    .co-overview-grid,
    .co-mission-layout,
    .co-uk-layout { grid-template-columns: 1fr; gap: 40px; }
    .co-certs-grid { grid-template-columns: 1fr 1fr; }
    .co-values-grid { grid-template-columns: 1fr; }
    .co-hero-inner { padding: 0 40px 140px; }
    .co-section-timeline .co-timeline-layout { grid-template-columns: 1fr; }
    
    .co-cta-inner { grid-template-columns: 1fr; gap: 32px; }
    .co-cta-btns { flex-direction: row; }
}

@media (max-width: 768px) {
    .co-section { padding: 70px 0; }
    .co-section-inner { padding: 0 24px; }
    .co-certs-grid { grid-template-columns: 1fr; }
    .co-uk-commitments { grid-template-columns: 1fr; }
    .co-hero-inner { padding: 0 24px 140px; }
    .co-cta-btns { flex-direction: column; }
    
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OVERRIDE: Overview section — sidebar ile birlikte
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.co-section-overview {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: start;
    padding: 0;
    background: #000;
}

.co-section-overview .co-sidebar {
    display: block;
    position: sticky;
    top: 80px;
    padding: 180px 0 80px 60px;
    z-index: 50;
    background: transparent;
}

.co-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 1px solid rgba(255,255,255,0.07);
    padding-left: 24px;
}

.co-snav-item {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    letter-spacing: 0.3px;
    padding: 8px 0;
    transition: color 0.2s;
    position: relative;
}

.co-snav-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: #3db451;
    transition: height 0.25s ease;
}

.co-snav-item:hover { color: rgba(255,255,255,0.75); }

.co-snav-item.active {
    color: #3db451;
    font-weight: 600;
}

.co-snav-item.active::before { height: 100%; }

.co-section-overview .co-section-inner {
    padding: 180px 80px 100px 60px;
    max-width: 100%;
}


.co-main .co-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.co-section-cta .co-section-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 1024px) {
    .co-section-overview {
        grid-template-columns: 1fr;
    }
    .co-section-overview .co-sidebar {
        display: none;
    }
    .co-section-overview .co-section-inner {
        padding: 80px 40px;
    }
    .co-main .co-section-inner {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .co-section-overview .co-section-inner {
        padding: 60px 24px;
    }
    .co-main .co-section-inner {
        padding: 0 24px;
    }
    .co-section-timeline .co-timeline-layout {
        display: flex;
        flex-direction: column;
    }
    .co-section-timeline .co-timeline-visual {
        display: block;
        position: relative;
        top: 0;
        margin-bottom: 32px;
        order: -1;
        width: 100%;
    }
    .co-timeline-img {
        height: 240px;
        width: 100%;
        object-fit: cover;
    }
}
