.cases{
    background-color: var(--color-primary);
    width: 100%;
    padding: 96px 0px;
}
.cases-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:88px;
    width: 100%;
}
.cases-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    color: var(--color-white);
    text-align: center;
}
.cases-title h3{
    font-weight: 600;
    font-size: 56px;
    line-height: 64px;
}
.cases-title p{ 
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    opacity: 0.7;
}
.cases-list{
    height: 552px;
    width: 100%;
}

.case-card{
    box-sizing: border-box;
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-slg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-width: calc((100% - 24px) / 4);
    height: 448px;
}
.case-stats{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    text-align: center;
}
.case-stats p{
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}
.case-card-percent{
    font-weight: 500;
    font-style: Medium;
    font-size: 80px;

    line-height: 64px;
    letter-spacing: -4%;
    text-align: center;
    position: relative;
    color: #F84B00;
}
.case-card-percent span{
    position: absolute;
    top: 0; 
    right: 10;
    
    font-weight: 600;
    font-size: 36px;
    line-height: 32px;

}

.case-client{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: var(--spacing-lg);
}

.case-brand{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color:var(--color-secondary)
}
.case-actions{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
     width: 100%;
}

.case-actions button{
    height: 56px;
    padding: 14px 24px;
    
}
.geo-info{
    cursor: default;
}
.geo-info svg{
    width: 16px;
    height: 18px;
}
.case-button svg{
    width: 16px;
    height: 12px;
}

@media (max-width: 1440px) {
    .case-card{
        min-width: calc((100% - 24px) / 4);
        
    }
}
@media (max-width: 1280px) {
    .cases-content{
        gap: 54px
    }
    .case-card{
        min-width: calc((100% - 16px) / 3);  
    }
    .cases-title h3{
        font-size: 32px;
        line-height: 48px;
    }
    .cases-title p{
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 1024px) {
   
    .case-card-percent{
        font-size: 64px;
        line-height: 64px;
    }
    .case-card-percent span{
        font-size: 24px;
        line-height: 32px;

    }
    .case-stats{
        width: 100%;
    }
    .case-stats p{
        font-size: 14px;
        line-height: 20px;
        width: 100%;
    }
    .case-brand{
        font-size: 14px;
        line-height: 20px;
        width: 100%;
    }
    .case-actions button{
        height: 52px;
        padding: 14px 25px;
        font-size: 16px;
        line-height: 24px;
    }
}
@media (max-width: 768px) {
    .cases{
        padding: 64px 0 32px 0;
    }
    .case-card{
        min-width: calc((100% - 8px) / 2);
    }
    .cases-content{
        gap: 32px;
    }
    .case-card__description{
        width: 100%;
    }
    .cases-title {
        gap: 24px;
    }
    .cases-title h3{
        font-size: 24px;
        line-height: 32px;
    }
    .cases-title p{
        font-size: 14px;
        line-height: 20px;
    }
    .cases-list{
        height: 444px;
    }
    .case-card{
        height: 364px;
    }
}
@media (max-width: 600px) {
     .cases{
        padding: 64px 0 32px 0;
    }
    .cases-list{
       height: 396px;
    }
    .case-card{
        padding: 24px;
        /* min-width: calc((100% - 16px) / 3); */
        aspect-ratio: auto;
        height: 364px;
    }
    .case-card{
        min-width: calc((100%) / 1);  
    }

}