/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}
body{
    background: var(--bg-surface-default) !important;
}

/* Bar Section */
.codo_bar-section {
    max-width: 850px;
    width:100%;
    margin-bottom: var(--spacing-xxl);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--spacing-m);
    padding: var(--spacing-s) var(--spacing-xs);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  
  /* Bar Container */
  .codo_bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Center all elements vertically */
  }
  
  /* Clap Label Section */
  .codo_clap-label {
    display: flex;
    flex-direction: row; /* Ensure elements are in a row */
    justify-content: flex-start;
    align-items: center; /* Center vertically */
    gap: var(--spacing-s);
  }
  
  /* Clap Icon */
  [data-theme="dark"] .codo_clap-icon {
    filter: invert(1); 
  }
.codo_clap-wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-l);
}
  .codo_clap-container {
    display: flex; 
    flex-direction: row;
    align-items: center; 
    gap: var(--spacing-xs); 
  }
  
  .codo_clap-icon {
    width: var(--size-icon-base);
    height: var(--size-icon-base);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .codo_clap-icon img {
    width: 100%;
    height: 100%;
    filter: var(--icon-default); /* Token for default light mode */
  }
  
  /* Invert Clap Icon for Dark Mode */
  [data-theme="dark"] .codo_clap-icon img {
    filter: invert(1);
  }
  .codo_publish-date {
    padding-top:var(--spacing-xxxs);
    color: var(--text-tertiary);
    font-family: var(--font-sans, Inter);
    font-size: var(--Font-size-font-size-300);
    font-style: normal;
    font-weight: var(--Font-weight-Normal-Regular-400);
    line-height: var(--Line-height-S, 22px);
  }
  .codo_read-duration {
    color: var(--text-tertiary);
    font-family: var(--font-sans, Inter);
    font-size: var(--Font-size-font-size-300);
    font-style: normal;
    font-weight: var(--Font-weight-Normal-Regular-400);
    line-height: var(--Line-height-S, 22px);
  }
  /* Clap Count */
  .codo_clap-count {
    padding-top:var(--spacing-xxxs);
    color: var(--text-default);
    font-size: var(--font-size-300);
    font-family: Inter, sans-serif;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-m);
    word-wrap: break-word;
  }
  
  /* Clap Button */
  .codo_clap-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease;
  }
  
  .codo_clap-button:hover .codo_clap-icon {
    transform: scale(1.1);
  }
  
  .clap-animation {
    transform: scale(1.3);
    transition: transform 0.2s ease;
  }
  
  /* Right Icon Section */
  .codo_right-icon {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
  }
  
  /* Play Icon */
  .codo_play-icon {
    width: var(--size-icon-base);
    height: var(--size-icon-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-default);
	cursor: pointer;
    position: relative; 
    border-radius: 50%; 
    background: transparent;
    overflow: hidden;
  }
 .codo_play-icon .material-symbols-rounded {
    font-size: var(--font-size-500);
    color: var(--icon-default);
  }
  
  .codo_play-icon .material-symbols-rounded {
    font-size: var(--font-size-500);
    color: var(--icon-default);
  }
  
  /* Share Icon */
  .codo_share-icon {
    width: var(--size-icon-base);
    height: var(--size-icon-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-default);
    cursor: pointer;
  }
  
  .codo_share-icon .material-symbols-rounded {
    font-size: var(--font-size-500);
    color: var(--icon-default);
  }
  .codo_share-icon .material-symbols-rounded:hover {
    transform: scale(1.1);
    color: var(--icon-subtle-hover) !important;

  }
  



/* Share List Container */

.codo_share-list-container {
    position: relative; 
    z-index: 10;
}


.codo_share-list {
    position: absolute; 
    top: calc(100% + 100px);
    right: 0; 
    min-width: 208px; 
    padding: var(--spacing-s);
    background: var(--bg-surface-bold); 
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16); 
    border-radius: var(--corner-radius-m); 
    display: none; 
    flex-direction: column;
    gap: var(--spacing-xs); 
    z-index: 10; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.2s ease, visibility 0.2s ease; 
}

.codo_share-list.show {
    display: flex; 
    opacity: 1; 
    visibility: visible; 
}

/* Adjust for responsiveness */
@media (max-width: 768px) {
    .codo_share-list {
        right: 8px; 
        min-width: 180px;
    }
}




/* Individual Share Item */
.codo_share-item {
    align-self: stretch; 
    height: 40px;
    padding: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs); 
    border-radius: var(--corner-radius-m); 

    /* Default State */
    background: transparent;
    color: var(--text-inverse); 
    font-size: var(--font-size-200); 
    font-family: Inter, sans-serif;
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-m); 
    cursor: pointer; 
}

/* Hover State */
.codo_share-item:hover {
    background: var(--bg-gray-bold-hover);
}

/* Pressed State */
.codo_share-item:active {
    background: var(--bg-gray-bold-active);
}

/* Share Icon */
.codo_share-icon img {
    width: var(--size-icon-base); 
    height: var(--size-icon-base);
    transition: filter 0.2s ease; 
}

/* Invert Icon for Dark Mode */
[data-theme="dark"] .codo_share-item img {
    filter: invert(1) !important;
}

/* Share Label */
.codo_share-label {
    color: var(--text-inverse); 
    font-size: var(--font-size-200); 
    font-family: Inter, sans-serif; 
    font-weight: var(--font-weight-regular); 
    line-height: var(--line-height-m); 
    white-space: nowrap; 
}
.codo_share-item>.material-symbols-rounded{
transform: rotate(-45deg);
}

/* Layout Components */
.codo_case-study {
    width: 100%;
    max-width: 1920px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    background: var(--bg-surface-default) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles */
.codo_header {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-surface-default);
    display: flex;
    justify-content: center;
    align-items: center;
}

.codo_header-container {
    flex: 1;
    height: auto;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.codo_mod {
    width: 100%;
    height: auto;
    padding: 80px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.codo_wrap {
    align-self: stretch;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Typography */
.codo_h1-title {
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    
}

.codo_title {
    flex: 1;
    text-align: center;
    color: var(--text-default);
    font-size: var(--font-size-900);
    line-height: var(--line-height-5xl);
    font-family: Inter, sans-serif;
    font-weight: var(--font-weight-bold);
    word-wrap: break-word;
}


.codo_subtitle {
    align-self: stretch;
    text-align: center;
    color: var(--text-secondary);
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
}

.codo_heading-m {
    color: var(--text-secondary);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.codo_body-large {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

.codo_body-text {
    color: var(--text-tertiary);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
.codo_persona-container > .codo_body-text {
    padding-bottom: var(--spacing-m);
}
.codo_insightOne > .codo_body-text{ padding-bottom: var(--spacing-m);}

.codo_body-m {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.codo_larger {
    font-size: 18px;
    line-height: 26px;
}

.codo_text-bold {
    font-weight: 700;
}

/* Button Styles */
.codo_button-brand {
    display: inline-block;
    padding: 12px 24px;
    background: var(--bg-brand);
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.codo_button-brand:hover {
    background: var(--bg-brand-hover);
}

.codo_button-label {
    color: var(--text-inverse);
    font-size: var(--font-size-200);
    font-family: Inter, sans-serif;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-xs);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Section Layouts */
.codo_main-section {
    width: 100%;
    max-width: 850px;
    padding: 160px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.codo_header-section {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.codo_section-label {
   align-self: stretch;
    color: var(--text-tertiary);
    font-size: var(--font-size-400);
    font-weight: var(--font-weight-semi-bold);
    line-height: var(--Line-height-M);
    font-style: normal;
}

.codo_section-title {
    align-self: stretch;
    color: var(--text-default);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

/* Grid Layouts */
.codo_grid-container {
    align-self: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.codo_grid-item {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.codo_container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: var(--spacing-l);
}

.codo_research-grid,
.codo_process-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-l);
    margin: 32px 0 ;
}
.codo_learnings-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-l);
    margin: 32px 0 ;
}
.codo_learnings{
    padding-bottom: var(--spacing-m);
}

.codo_process {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
  align-items: start; 
  width: 100%; /* Ensures the parent doesn't exceed screen width */
  overflow: hidden; /* Or use scroll if necessary */
  box-sizing: border-box; /* Includes padding in total width/height */
}
.codo_process-flex {
  display: flex;
  flex-direction: column; 
  gap: 24px; 
  
}

.codo_process-flex .codo_flex-item:nth-child(2),
.codo_process-flex .codo_flex-item:nth-child(3) {
    opacity: 0.6;
}

.codo_process-image img {
  max-width: 100%; 
  height: auto; 
  display: block; 
}
.codo_flex-item{
  flex: unset;
  display: flex;
  flex-direction: column;
  gap: 2px;

}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .codo_process {
    grid-template-columns: 1fr;
    width: 100%; 
    overflow: hidden; 
    box-sizing: border-box; 
  }

  .codo_process-image {
    margin-top: 24px; /* Add spacing between text and image */
  }
}

.codo_keyResearch{
    margin: 0 0 32px;
}
.codo_subsection-label{
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--text-secondary);
    margin-bottom: 8px;

}
.codo_reserach-insight {
   display: flex;
   gap: 16px;
}
/* Responsive */
@media (max-width: 768px) {
    .codo_reserach-insight {
        flex-direction: column;
     }
}


.codo_research-column {
   flex: 0 0 40%;
   display: flex;
   flex-direction: column;
   gap: var(--spacing-s);
}

.codo_image-container {
   flex: 0 0 55%;
   
}

.codo_placeholder-image {
   width: 100%;
   height: auto;
   border-radius: 16px;
}

.codo_image-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: var(--spacing-l);
    margin: var(--spacing-m) 0;
}

/* First row - 2 images */
.codo_image-wrapper:nth-child(1),
.codo_image-wrapper:nth-child(2) {
    grid-column: span 3; 
}

/* Second and third rows - 3 images each */
.codo_image-wrapper:nth-child(n+3) {
    grid-column: span 2; 
}
/* Image hover and styles */
.codo_image-wrapper {
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--corner-radius-m);
}

.codo_image {
    width: 100%;
    height: 100%;
    border-radius: var(--corner-radius-m);
    transition: transform 0.6s ease;
}

/* Optional: Add a subtle zoom effect on hover */
.codo_image-wrapper:hover .codo_image {
    transform: scale(1.04);
}

/* Responsive */
@media (max-width: 768px) {
    .codo_image-grid {
        grid-template-columns: 1fr;
    }
    .codo_image-wrapper {
        grid-column: 1 !important; /* Override all column spans on mobile */
    }
}

/* Image Components */
.codo_image {
    max-width: 100%;
    height: auto;
    display: block;
}
.codo_header-image {
    max-width: 80%;
    height: auto;
    display: block;
}

.codo_image-border {
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0px 1px 2px var(--color-black-100);
}

/* Container Variations */
.codo_container-flex {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.codo_persona-container {
    margin-bottom: 32px;
}

/* Special Sections */
.codo_design-process-section {
    width: 100%;
    max-width: 850px;
    padding: 160px 0px 24px;
}

.codo_learnings-section {
    width: 100%;
    max-width: 850px;
    padding: 160px 0px 160px;
}

.codo_subtitle-bold {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.codo_learnings-heading {
    color: var(--text-secondary);
    font-size: var(--font-size-500);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-xl);
    margin: var(--spacing-l) 0 var(--spacing-m) 0;
}

@media (max-width: 900px) {
    .codo_learnings-heading {
        width: 100%;
    }
}
/* Description Sections */
.codo_description-section {
    align-self: stretch;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Utility Classes */
.codo_text-center {
    text-align: center;
}

.codo_w-full {
    width: 100%;
}

.codo_mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Number in the Challenge section */
.codo_number {
font-size: var(--font-size-900);
line-height: var(--line-height-4xl);
color: var(--text-default);
font-family: Inter, sans-serif;
font-weight: var(--font-weight-bold);
word-wrap: break-word;
}

/* Media Queries */
@media (max-width: 1200px) {
    .codo_case-study {
        padding-left: var(--spacing-l);
        padding-right: var(--spacing-l);
    }

    .codo_title {
        font-size: 56px;
        line-height: var(--line-height-xxXl);
    }

    .codo_subtitle {
        font-size: var(--font-size-600);
    }
}

@media (max-width: 768px) {
    .codo_mod {
        padding: 40px 16px 24px;
    }

    .codo_main-section,
    .codo_design-process-section,
    .codo_learnings-section {
        padding: 80px 0px 24px;
    }

    .codo_title {
        font-size: 36px;
    }

    .codo_subtitle {
        font-size: 24px;
    }

    .codo_section-title {
        font-size: 32px;
    }

    .codo_grid-container {
        flex-direction: column;
    }

    .codo_grid-item {
        flex: 1 1 100%;
    }

}

@media (max-width: 480px) {
    .codo_title {
        font-size: 28px;
    }

    .codo_subtitle {
        font-size: 20px;
    }

    .codo_section-title {
        font-size: 28px;
    }

    .codo_button-brand {
        width: 100%;
        text-align: center;
    }

    .codo_body-large {
        font-size: 16px;
    }
    .codo_learnings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        gap: var(--spacing-l);
        margin: 32px 0;
    }
}


/* ===========Side Navigation Label Component=========== */
/* ===========Side Navigation Label Component=========== */
.codo_side-nav {
    position: fixed;
    left: -230px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    width: 230px;
}

.codo_side-nav.visible {
    left: 180px; /* Updated position */
}

.codo_nav-list {
    display: inline-flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.codo_side-label-section {
    display: inline-flex;
    padding: var(--spacing-xs) var(--spacing-xxs);
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

/* Default state */
.codo_icon-container {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
}

.codo_icon-container .material-symbols-rounded {
    color: var(--text-tertiary);
    font-size: var(--font-size-500);
}

.codo_label-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
}

.codo_label {
    color: var(--text-tertiary);
    font-size: var(--font-size-300);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-s);
}

/* Hover state */
.codo_side-label-section:hover {
    padding-left: var(--spacing-s);
    padding-right: var(--spacing-s);
}

.codo_side-label-section:hover .material-symbols-rounded,
.codo_side-label-section:hover .codo_label {
    color: var(--text-tertiary);
}

/* Active state */
.codo_side-label-section.active {
    padding-left: var(--spacing-s);
    padding-right: var(--spacing-s);
}

.codo_side-label-section.active .material-symbols-rounded,
.codo_side-label-section.active .codo_label {
    color: var(--text-default);
}
.codo_back-to-top-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    gap: var(--spacing-xs);
    color: var(--text-tertiary);
}

.back-to-top:hover {
    background-color: var(--hover-color); 
}

.back-to-top .codo_label {
    color: inherit;
    text-decoration: none;
}

/* Adjust position for smaller viewport */
@media (max-width: 1650px) {
    .codo_side-nav.visible {
        left: 40px; /* Reduced margin from left */
    }
}

/* Hide navigation completely */
@media (max-width: 1260px) {
    .codo_side-nav {
        display: none; 
    }
}


/* ================= */
/* CSS Chart */
/* ================= */
.codo_chart-container {
    width: 100%;
    padding: var(--spacing-xs);
    background: var(--bg-surface-default);
    border: 1px solid var(--border-subtle);
    padding: var(--spacing-xl) var(--spacing-l) var(--section-spacing-m);
    border-radius: var(--corner-radius-l);
}

.codo_chart-content {
    position: relative;
}

/* Header */
.codo_chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xl);
    font-family: Inter, sans-serif;
}

.codo_chart-title h2 {
    color: var(--text-secondary);
    font-size: var(--font-size-500);
    font-weight: var(--font-weight-bold);
}

.codo_legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xxs);
    padding: var(--spacing-m);
    background: var(--bg-surface-default);
    box-shadow: 0 1px 4px var(--color-black-100) inset;
    border-radius: 6px;
    font-family: Inter, sans-serif;
}

.codo_legend-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xxs);
}
/* Legend */
.codo_legend-item span {
   font-size: 10px;
   font-weight: var(--font-weight-regular);
   line-height: 14px;
   color: var(--text-tertiary);
}

.codo_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.codo_dot.schweizmobil { background: var(--color-light-green-600); }
.codo_dot.komoot { background: var(--color-light-purple-900); }
.codo_dot.alltrails { background: var(--color-light-red-600); }
.codo_dot.outdooractive { background: var(--color-light-orange-600); }

/* Chart Grid */
.codo_chart-grid {
    position: relative;
    padding-left: 40px;
    height: 200px;
}

.codo_y-axis {
    position: absolute;
    left: 0;
    top: 7px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100% !important;
}

.codo_y-line {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: Inter, sans-serif;
}

.codo_y-line span {
    width: 30px;
    text-align: right;
    font-size: 10px;
    font-weight: var(--font-weight-regular);
    color: var(--text-secondary);
    line-height: 14px;
    
}

.codo_y-line hr {
    position: absolute;
    left: 35px;
    width: 94%;
    height: 1px;
    background: var(--color-light-gray-500);
    opacity: 0.15;
    border: none;
}

/* Bars */
.codo_bars-container {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    font-family: Inter, sans-serif;
}

.codo_bar-group {
    position: relative;
    display: flex;
    gap: var(--spacing-xxs);
    width: 68px;
    height: 100%;
    align-items: flex-end;
}
.codo_bar-group > div {
    border-radius: 4px 4px 0px 0px;
}

.codo_bar {
    flex: 1;
    transition: height 0.3s ease;
}

.codo_bar.schweizmobil { background: var(--color-light-green-600); }
.codo_bar.komoot { background: var(--color-light-purple-900); }
.codo_bar.alltrails { background: var(--color-light-red-600); }
.codo_bar.outdooractive { background: var(--color-light-orange-600); }

.codo_x-label {
    position: absolute;
    bottom: -32px;
    height: 20px;
    display: flex;
    justify-content: center;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 10px;
    color: var(--text-tertiary);
    text-transform: capitalize;
	line-height: normal;
}
/* Change the diracrion of the header */
@media (max-width: 600px) {
    .codo_chart-header {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}
/*=======================================================
====================Carousel container==================
========================================================*/
/* Carousel Container */
.codo_carousel-container {
    width: 397px; /* Updated width */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xxs);
}

/* Phone Frame */
.codo_phone-frame {
    position: relative;
    width: 397px;
    height: 532.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.codo_frame-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none; /* Allows clicking through the frame */
}

.codo_screen-content {
    position: absolute;
    width: 230px;
    height: 494px;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden; 
}


.codo_wireframe-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Controls */

.codo_image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.3s ease;
}

.codo_carousel-controls {
    width: 290px;
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.codo_controls-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-m);
}

.codo_nav-button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.codo_nav-button .material-symbols-rounded {
    color: var(--text-default);
    font-size: var(--font-size-500);
}

/* Controls Updates */
.codo_nav-button.disabled .material-symbols-rounded {
    color: var(--text-disabled);
    cursor: not-allowed;
}

.codo_nav-button:not(.disabled) .material-symbols-rounded:hover {
    color: var(--icon-brand-hover);

}

.codo_screen-label {
    width:120px;
    padding: var(--spacing-xxs);
    color: var(--text-secondary);
    font-size: var(--font-size-400);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-l);
    text-align: center;
}

.codo_counter {
    padding: var(--spacing-xs) var(--spacing-l);
    color: var(--text-tertiary);
    font-size: var(--font-size-600);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-xxl);
    text-align: center;
    overflow: hidden;
    height: 40px;
}
.codo_counter {
    height: 40px;
    width:60px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.codo_counter-number {
    position: absolute;
    transition: transform 0.5s ease;
    width:100%;
}

.codo_counter-old {
    transform: translateY(0);
}

.codo_counter-new {
    transform: translateY(100%);
}

.codo_counter-old.slide-up {
    transform: translateY(-100%);
}

.codo_counter-new.slide-up {
    transform: translateY(0);
}


/* carousel-container Mobile */
@media (max-width: 740px) {
.codo_carousel-container {
    width: 100%;
}

.codo_phone-frame {
    width: 100%;
}
.codo_carousel-controls {
    width: 100%;
}
}

/*=============================
==============blurb============
===============================*/
.codo_blurb {
    width: 405px;
    height: 367px;
    padding-bottom: var(--spacing-xl); /* 32px */
    background: var(--bg-surface-sunken);
    border-radius: var(--corner-radius-l);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-l); /* 24px */
    box-shadow: 0px 4px 8px -3px var(--color-black-100);
    border: 1px solid transparent; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    will-change: transform;
  }
  @media (max-width: 600px) {
    .codo_blurb {
        width: 100%;
        height: auto;
        
    }

    .codo_blurb-image {
        width: 100% !important;
        height: 100% !important;
    }
    .codo_blurb-title {
        color: var(--text-secondary); 
        font-size: var(--font-size-300) !important;
        font-weight: var(--font-weight-bold);
        line-height: var(--line-height-xs) !important;
    }
    .codo_design-mobile-image {
        width: 100%;
        height: auto;
      }
    }
  
  .codo_blurb:hover {
    background: var(--bg-surface-default); 
    box-shadow: 0px 1px 2px var(--color-black-100);
    border: 1px solid var(--color-light-gray-300); 
    transform: translateY(var(--spacing-negative-xxs));
  }
  
  .codo_blurb-image {
    width: 405px;
    height: 205px;
    position: relative;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .codo_blurb:hover .codo_blurb-image {
    transform: scale(1.01);
  }

  .codo_blurb-content {
    align-self: stretch;
    height: 106px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs); 
  }
  
  .codo_blurb-header {
    align-self: stretch;
    padding: var(--spacing-xxxs) var(--spacing-l); 
    display: flex;
    align-items: center;
    gap: var(--spacing-xs); 
  }
  
  .codo_blurb-title {
    color: var(--text-secondary); 
    font-size: var(--font-size-500);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-xl);
    transition: color 0.3s ease;
  }
  
  .codo_blurb:hover .codo_blurb-title {
    color: var(--text-tertiary); 
  }
  
  .codo_blurb-description-container {
    align-self: stretch;
    padding: var(--spacing-xxxs) var(--spacing-l); 
    display: flex;
    align-items: center;
    gap: var(--spacing-xs); 
  }
  
  .codo_blurb-description {
    flex: 1;
    color:  var(--text-tertiary);
    font-size: var(--font-size-200); 
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-xs); 
  }

/*=============================
===visual Design section=======
===============================*/
/* Section Layout */
.codo_design-section {
    width: 100%;
    max-width: 850px;
    padding: var(--section-spacing-l) var(--spacing-none) var(--spacing-l);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-l);
  }
  
  /* Header Styles */
  .codo_design-header {
    display: flex;
    gap: var(--spacing-xs);
  }
  
  .codo_design-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxxs);
    height: 94px;
  }
  
  .codo_design-title {
    color: var(--text-secondary);
    font-size: var(--font-size-400);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-l);
  }
  
  .codo_design-description {
    color: var(--text-tertiary);
    font-size: var(--font-size-300);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-s);
  }
  
  /* Main Content Layout */
  .codo_design-main {
    width: 850px;
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    margin: 0 auto;
  }
  
  .codo_design-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
  }
  
  .codo_design-column-right {
    padding-top: var(--spacing-xl);
    gap: var(--spacing-l);
  }
  
  .codo_design-mobile-image {
    width: 405px;
    height: 828px;
    object-fit: contain;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .codo_design-section {
      width: 100%;
      padding: var(--spacing-l) var(--spacing-m);
    }
  
    .codo_design-main {
      width: 100%;
      flex-direction: column;
    }
  
    .codo_design-column-right {
      padding-top: 0;
    }
  
    .codo_design-mobile-image {
      width: 100%;
      height: auto;
      max-width: 405px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 600px) {
 
    .codo_design-mobile-image {
        width: 100%;
        height: auto !important;
        max-width: 100%;
        margin: 0 auto;
      }
    .codo_design-section {
        width: 100%;
        padding: var(--spacing-l) var(--spacing-none);
      }
    .codo_design-text-container {
      height: auto;
    }
  
    .codo_design-title {
      font-size: var(--font-size-300);
    }
  
    .codo_design-description {
      font-size: var(--font-size-200);
    }
  }


  /* For manual theme switching via data-theme attribute */
.codo_design-mobile-frame {
    display: block;
  }
  
  .codo_design-mobile-image {
    width: 405px;
    height: 828px;
    object-fit: contain;
  }
  
  /* Add theme switching */
  [data-theme="dark"] .codo_design-mobile-image {
    content: url("https://alawad.ch/wp-content/uploads/2024/12/Trial-info-Parking-dark.webp");
  }


  /*Toggel screen*/
  .codo_mode-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xxxs);
  }
  
  .codo_mode-toggle-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xxxs);
    cursor: pointer;
  }
  
  .codo_mode-toggle-text {
    color: var(--text-secondary);
    font-size: var(--font-size-300);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-s);
    min-width: 42px;
  }
  
  .codo_mode-toggle-container {
    padding: var(--spacing-xxxs) var(--spacing-xxs);
  }
  
  .codo_mode-toggle-input {
    display: none;
  }
  
  .codo_mode-toggle-switch {
    width: 40px;
    height: 24px;
    padding: 2px;
    background: var(--bg-gray-subtle-hover);
    border-radius: 24px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  .codo_mode-toggle-knob {
    width: 20px;
    height: 20px;
    background: var(--bg-surface-default);
    border-radius: var(--corner-radius-round);;
    box-shadow: 0px 1px 2px var(--color-black-100);
    transition: transform 0.3s ease;
  }
  
  /* Checked State */
  .codo_mode-toggle-input:checked + .codo_mode-toggle-switch {
    background: var(--color-light-purple-900);
    justify-content: flex-end;
  }
  
  /* Hover States */
  .codo_mode-toggle-switch:hover {
    cursor: pointer;
  }
  
  .codo_mode-toggle:hover .codo_mode-toggle-text {
    color: var(--text-tertiary);
  }
  .codo_screens-image {
    width: 850px;
    height: 720px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.codo_screens-picture {
    display: block;
}

[data-theme="dark"] .codo_screens-image {
    content: url("https://alawad.ch/wp-content/uploads/2024/12/image-87.png");
}



  /*Design token*/
  .codo_token-section {
    width: 100%;
    max-width: 850px;
    padding: var(--section-spacing-l) var(--spacing-xl) var(--spacing-l);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .codo_token-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
  }
  
  .codo_token-intro {
    display: flex;
    gap: var(--spacing-l);
    padding-bottom: var(--spacing-l);
  }
  
  .codo_token-text {
    width: 347px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxxs);
  }
  .codo_caption {
    font-family: 'Inter', sans-serif;
    font-size:var(--font-size-100);
    font-weight: 400;
    line-height:var(--line-height-xxs);
    color: var(--text-tertiary);
    text-align: center;
    margin-top: var(--spacing-xxs);
}

  
  .codo_token-title {
    color: var(--text-secondary);
    font-size: var(--font-size-400);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-l);
  }
  
  .codo_token-description {
    color: var(--text-tertiary);
    font-size: var(--font-size-300);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-s);
  }
  
  .codo_token-image {
    width: 479px;
    height: 250px;
    object-fit: cover;
  }
  
  .codo_screens-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-l);
  }
  
  .codo_screens-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxs);
  }
  
  .codo_screens-label {
    align-self: stretch;
    color: var(--text-disabled);
    font-size: 18px;
    font-weight: var(--font-weight-black);
    line-height: 24px;
  }
  
  .codo_screens-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .codo_screens-title {
    color: var(--text-default);
    font-size: var(--font-size-700);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-xxl);
  }
  @media (max-width: 600px) {
    .codo_screens-title-row{
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
  }
  
  .codo_screens-preview {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    height: 720px;
  }
  
  .codo_screens-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  @media (max-width: 1024px) {
    .codo_token-section {
      width: 100%;
      padding: var(--spacing-l) var(--spacing-m);
    }
  
    .codo_token-intro {
      flex-direction: column;
    }
  
    .codo_token-text {
      width: 100%;
    }
  
    .codo_token-image,
    .codo_screens-preview {
      width: 100%;
      height: auto;
    }
  }

  /*========== mentoring section===========*/
  .codo_contact-section {
    width: 100%;
    max-width: 850px;
    padding: var(--section-spacing-xl) 0px var(--section-spacing-l);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-l);
}

.codo_contact-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-l);
}

.codo_contact-title {
    color: var(--text-default);
    font-size: var(--font-size-700);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-xxl);
}

.codo_contact-description {
    color: var(--text-tertiary);
    font-size: var(--font-size-300);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-s);
}

.codo_contact-container {
    display: flex;
    gap: var(--spacing-l);
}

.codo_contact-form {
    width: 421px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-l);
}

.codo_contact-image {
    flex: 1;
    height: 308px;
    padding: var(--spacing-xs);
    
}

.codo_contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 1024px) {
    .codo_contact-section {
        width: 100%;
        padding: var(--spacing-l) var(--spacing-m);
    }

    .codo_contact-container {
        flex-direction: column;
    }

    .codo_contact-form {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .codo_contact-section {
        width: 100%;
        padding: var(--spacing-l) var(--spacing-none);
    }
    .codo_contact-title {
        font-size: var(--font-size-600);
        line-height: var(--line-height-xl);
    }
    .codo_form-container {
        width: 100% !important;
    }
    .codo_container-grid {
        grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
        gap: var(--spacing-m);
    }
}

.codo_contact-container {
    display: flex;
    gap: var(--spacing-l);
}

.codo_content-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-l);
    position: relative; /* For thank you message positioning */
}

.codo_image-column {
    flex: 1;
}

.codo_contact-image {
    width: 100%;
    height: auto;
    border-radius: var(--corner-radius-m);
}

/*input component*/
.codo_input-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    width: 100%;
  }
  
  .codo_input-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xxs);
    height: 20px;
  }
  
  .codo_label-text {
    color: var(--text-default);
    font-size: var(--font-size-300);
    font-weight: var(--font-weight-semi-bold);
    line-height: var(--line-height-m);
  }
  
  .codo_help-icon {
    font-size: 16px;
    color: var(--text-default);
  }
  
  .codo_optional-text {
    margin-left: auto;
    color: var(--text-secondary);
    font-size: var(--font-size-100);
    line-height: var(--line-height-xxxs);
  }
  
  .codo_input-field {
    width: 100%;
    height: var(--size-component-large) !important;
    padding: var(--spacing-s) !important;
    background: var(--bg-surface-default) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--corner-radius-m) !important;
    color: var(--text-tertiary) !important;
    font-size: var(--font-size-200) !important;
    line-height: var(--line-height-xs) !important;
  }
  
  /* States */
  .codo_input-field:hover {
    background: var(--bg-surface-sunken);
    box-shadow: 0 0 0 4px var(--bg-brand-subtle);
  }
  
  .codo_input-field:focus {
    border-color: var(--border-focus);
    outline: none;
  }
  
  .codo_input-field:disabled {
    background: var(--bg-neutral-disabled);
    color: var(--text-disabled);
  }
  
  /* Error state */
  .codo_input-field.error {
    border-color: var(--border-danger);
  }
  
  .codo_error-message {
    display: none;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs);
    background: var(--bg-danger-subtle);
    border-radius: var(--corner-radius-s);
    color: var(--text-danger);
    font-size: var(--font-size-100);
    line-height: var(--line-height-xxxs);
  }
  
  .codo_error-message.show {
    display: flex;
  }
  
  .codo_error-message .material-symbols-rounded {
    font-size: 16px;
    color: var(--icon-danger);
  }

  /*button component */
  .codo_button-brand-l {
    width: fit-content;
    height: var(--size-component-large);
    padding: var(--spacing-s) var(--spacing-m);
    background: var(--bg-brand);
    border-radius: var(--corner-radius-m);
    border: none;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.codo_button-label {
    color: var(--bg-surface-default);
    font-size: var(--font-size-300);
    font-weight: var(--font-weight-semi-bold);
    line-height: var(--line-height-m);
    text-align: center;
}

/* States */
.codo_button-brand-l:hover {
    background: var(--bg-brand-hover);
}

.codo_button-brand-l:focus {
    background: var(--bg-brand-active);
    outline: none;
}

.codo_button-brand-l:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
    border-radius: var(--corner-radius-ring);
}

.codo_button-brand-l:active {
    background: var(--color-light-purple-1100); /* #3236A8 */
}

.codo_button-brand-l:disabled {
    background: var(--bg-neutral-disabled);
    color: var(--text-disabled);
    cursor: not-allowed;
}

.codo_button-brand-l:disabled .codo_button-label {
    color: var(--text-disabled);
}

/*thank you message*/
.codo_form-container {
    width: 421px;
    position: relative;
}

.codo_thank-you-message {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-surface-default);
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.codo_thank-you-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-m);
    align-items: center;
    padding: var(--spacing-l);
}

.codo_thank-you-title {
    color: var(--text-default);
    font-size: var(--font-size-500);
    font-weight: var(--font-weight-bold);
}

.codo_thank-you-text {
    color: var(--text-tertiary);
    font-size: var(--font-size-300);
}

/*LIGHTBOX*/
.codo_lightbox-close {
    position: absolute;
    top: var(--spacing-l); 
    right: var(--spacing-l); 
    background: none;
    border: none;
    color: var(--icon-inverse); 
    cursor: pointer !important;
    z-index: 1001;
    padding: var(--spacing-xs);
}

.codo_lightbox-close .material-symbols-rounded {
    font-size: var(--size-icon-base);
    color: var(--bg-surface-default);
}

.codo_lightbox {
    display: none;
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-blanket); 
    z-index: 1000;
    justify-content: center;
    align-items: center;
}




/*=================== Theme Switcher Container===================*/
.codo_theme-switcher {
    position: fixed;
    bottom: var(--spacing-l); 
    right: var(--spacing-l);
    z-index: 1000;
 }
 
 /* Button Styles */
 .codo_theme-button {
    width: 140px;
    height: var(--size-component-base);
    padding: 0 var(--spacing-m);
    background: var(--bg-gray-bold);
    border-radius: var(--corner-radius-m);
    border: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-s);
    cursor: pointer;
 }
 
 .codo_theme-button:hover {
    background: var(--bg-gray-bold-hover);
 }
 
 .codo_theme-button:focus {
    background: var(--bg-gray-bold-hover); 
    outline: 2px solid var(--border-brand); 
    outline-offset: 2px;
 }
 
 .codo_theme-button:active {
    background: var(--bg-gray-bold-active); 
 }
 
 /* Button Text and Icons */
 .codo_theme-button-label { /* Changed from codo_button-label */
    color: var(--text-inverse) !important;
    font-size: var(--font-size-200);
    font-family: Inter, sans-serif;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-xs);
 }
 
 .codo_theme-button .material-symbols-rounded {
    color: var(--text-inverse) !important; 
 }
 .codo_theme-icon{
    font-size: var(--font-size-300) !IMPORTANT;
 }
 
 /* Dropdown styles */
 .codo_theme-dropdown {
    position: absolute;
    bottom: calc(100% + var(--spacing-xs));
    right: 0;
    min-width: 208px;
    padding: var(--spacing-s);
    background: var(--bg-surface-bold);
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
    border-radius: var(--corner-radius-m);
    display: none;
    flex-direction: column;
    gap: var(--spacing-xxs);
 }
 
 .codo_theme-dropdown.open {
    display: flex;
 }
 
 /* Dropdown Items */
 .codo_theme-item {
    height: var(--size-component-base);
    padding: var(--spacing-s);
    border-radius: var(--corner-radius-m);
    display: flex;
    align-items: center;
    gap: var(--spacing-s);
    cursor: pointer;
 }
 
 .codo_theme-item:hover {
    background: var(--bg-neutral-hover);
 }
 
 .codo_theme-item.active {
    background: var(--bg-neutral-active);
 }
 
 /* Dropdown Icons and Text */
 .codo_theme-dropdown .material-symbols-rounded:not(.codo_check-icon),
 .codo_theme-dropdown .codo_theme-text {
    color: var(--text-inverse) !important;
 }
 
 .codo_theme-dropdown .material-symbols-rounded {
    font-size: var(--size-icon-base);
 }
 
 .codo_theme-text {
    flex: 1;
    font-size: var(--font-size-200);
    font-family: Inter, sans-serif;
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-xs);
 }
 
 /* Check Icon */
 .codo_check-icon {
    color: var(--icon-brand-bold) !important;
    display: none;
 }
 
 .codo_theme-item.active .codo_check-icon {
    display: block;
 }
 
 /* Responsive styles */
 @media screen and (max-width: 1300px) {
    .codo_theme-switcher {
        bottom: var(--spacing-l);
        right: var(--spacing-s);
    }
 
    .codo_theme-button {
        width: var(--size-component-base);
        height: var(--size-component-base);
        padding: var(--spacing-xs);
        justify-content: center;
        border-radius: var(--corner-radius-round);
    }
 
    .codo_theme-button-label { /* Changed from codo_button-label */
        display: none;
    }
 
    .codo_theme-dropdown {
        right: calc(100% + var(--spacing-xs));
        bottom: 0;
        min-width: 190px;
    }
 }
 
 /* Additional mobile adjustments */
 @media screen and (max-width: 600px) {
    .codo_theme-switcher {
        bottom: var(--spacing-m);
        right: var(--spacing-xs);
    }
 }


 
 /* Main Alert Component */
 .codo_alert-component {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 90%;
  max-width: 500px;
  padding: var(--spacing-l);
  background: var(--bg-surface-raised);
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.16);
  z-index: 1000;
  border-radius: var(--corner-radius-m);
  gap: var(--spacing-l);
}

.codo_alert-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--spacing-xs);
  width: 100%;
}

.codo_alert-title {
  color: var(--text-default);
  font-size: var(--font-size-500);
  font-family: inter;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-xl);
}

.codo_alert-description {
  color: var(--text-secondary);
  font-size: var(--font-size-300);
  font-family: Inter, sans-serif;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-l);
  width: 100%;
}

.codo_alert-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.codo_alert-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-m);
  height: var(--size-component-base);
  border-radius: var(--corner-radius-m);
  background: var(--bg-brand);/*update*/
  color: var(--text-inverse);
  font-size: var(--font-size-400);
  font-family: Inter, sans-serif;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-l);
  text-align: center;
  cursor: pointer;
}
/* Hover State */
.codo_alert-button:hover {
  background: var(--bg-brand-hover);
  
}

/* Active (Press) State */
.codo_alert-button:active {
  background: var(--bg-brand-active);

}

@media (max-width: var(--breakpoint-medium)) {
  .codo_alert-component {
      width: 90%;
      padding: var(--spacing-m);
  }

  .codo_alert-title {
      font-size: var(--font-size-500);
      line-height: var(--line-height-m);
  }

  .codo_alert-description {
      font-size: var(--font-size-300);
      line-height: var(--line-height-s);
  }

  .codo_alert-button {
      height: var(--size-component-small);
      font-size: var(--font-size-300);
      padding: var(--spacing-xs) var(--spacing-s);
  }
}

/*Team compoennt*/
.codo_team-container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: var(--spacing-m);
}

.codo_team-hover {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Remove overflow: hidden here to prevent clipping */
}

.codo_team-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border-subtle); /* Adding 1px border */
  border-radius: var(--corner-radius-ring);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

/* Flash effect applied only on hover */
.codo_team-hover:hover .codo_team-image {
  -webkit-animation: flash 1.5s ;
  animation: flash 1.5s ;
}

/* Text animation */
.codo_team-text {
  position: absolute;
  bottom: var(--spacing-none);
  left: 50%;
  transform: translate(-50%, 0%);
  padding-top: var(--spacing-m);
  color: var(--text-secondary);
  font-size: var(--font-size-300);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-m);
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: -10; 
}

.codo_team-hover:hover .codo_team-text {
  bottom: calc(var(--spacing-negative-xxxl) + var(--spacing-m)); 
  opacity: 1;
  z-index: 10; 
}

/* Flash effect keyframes */
@-webkit-keyframes flash {
  0% {
      opacity: 0.4;
  }
  100% {
      opacity: 1;
  }
}

@keyframes flash {
  0% {
      opacity: 0.4;
  }
  100% {
      opacity: 1;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .codo_team-container-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .codo_team-container-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}
/*Team component END*/
