 /* other case study blocks */
 .other-case-study-blocks{
    margin-top: clamp(20px, 6vw, 100px) ;
    margin-bottom: clamp(18px, 6vw, 80px) ;
  }
  .other-case-study-blocks-title {
    font-family: "Proxima Nova Semibold";
    color: #08081A;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 48px;
    
  }
  .ocs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.ocs-card{
  background: #fff;
  border-radius: 12px;
}

.ocs-thumb{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #f3f3f3;
}
.ocs-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ocs-meta{
  color: #E74C2D;
  font-size: 14px;
  font-family: "Proxima Nova Semibold";
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 22px;
}
.ocs-card-title{
  font-family: "Proxima Nova Semibold";
  color: #08081A;
  font-size:20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom:46px;
}

/* CTA */
.ocs-cta{
  margin-bottom: 20px;
  text-align-last: center;
}
.ocs-button{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px; 
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 999px;
  color: #08081A;
  text-decoration: none;
  font-weight: 600;
  background: #fff;
}
.ocs-button:hover,
.ocs-button:focus,
.ocs-button:active{
  background: #fff;
  color: #08081A;
  box-shadow: none;
  transform: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
}

/* Responsive */
@media (max-width: 1199.98px){
  .ocs-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px){
  .ocs-grid{ grid-template-columns: 1fr; }
  .other-case-study-blocks-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .ocs-card-title{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0px;
  }
  .ocs-button{
    font-size: 16px;
    line-height: 24px;
    padding: 10px 16px;
  }
  .ocs-meta{
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 16px;
  }
  .ocs-card{
    border-radius: 8px;
  }
  .ocs-thumb{
    margin-bottom: 16px;
  }
  .ocs-thumb img{
    border-radius: 8px;
  }
  .ocs-cta {
    margin-top: 20px;}
    .other-case-study-blocks {
    
      margin-bottom: 20px;
    }
}