
.public_cheers_for_us_section{
    background-color: var(--public_cheers_section_bg_color);
    padding: 50px 0;
}
.public_cheers_for_us_section .section_heading{
    margin-bottom: 30px;
}
.public_cheers_for_us_section .section_title{
    color: var(--public_cheers_section_title_color);
}
.public_cheers_for_us_section .section_description_text{
    color: var(--public_cheers_section_description_color);
}
.public_cheers_for_us_section .public_cheers_auth_img img{
    width: 60px;
    height: 60px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}
.public_cheers_area{

    columns: 1;
    column-gap: 20px;

}
.public_cheers_card{
    /* width: 100%; */
    background-color: #212121;
    border-radius: 16px;

    color: white;
    margin: 0 0 20px;
    display: inline-block; 
    width: 100%;
    break-inside: avoid;
    font-weight: bold;

}
.public_cheers_card_inner{
    padding: 24px;
}
.public_cheers_card_top{
    margin-bottom: 12px;
}
.public_cheers_auth_name{
    font-size: 16px;
    line-height: 20px;
    font-weight: var(--semiBold);
    color: var(--public_cheers_card_title_color);
    margin-bottom: 8px;
}
.public_cheers_auth_designation,
.public_cheers_auth_comments{
    font-size: 14px;
    line-height: 20px;
    font-weight: var(--regular);
    color: var(--public_cheers_card_lead_text_color);
}

@media(min-width:768px){
    .public_cheers_for_us_section{
        padding: 80px 0;
    }
    .public_cheers_for_us_section .section_heading{
        margin-bottom: 40px;
    }
    .public_cheers_area.flex_column{
        /* flex-direction: row; */
    }
    .public_cheers_card{
        /* width: calc(100% / 2 - 10px); */
    }
    .public_cheers_area{
        column-count: 2;

    }
}


@media(min-width:1024px){
    .public_cheers_for_us_section{
        padding: 100px 0;
    }
    .public_cheers_for_us_section .section_heading{
        margin-bottom: 50px;
    }
    .public_cheers_area.gap_20{
        /* gap: 30px; */
    }
    .public_cheers_card{
        /* width: calc(100% / 3 - 20px); */
        /* align-self: flex-start; */
    }
    .public_cheers_area{
        column-count: 3;

    }
    
}

/* 
  @media screen and (max-width: 900px) {
    .columns {
      column-count: 3;
    }
  }
  
  @media screen and (max-width: 700px) {
    .columns {
      column-count: 2;
    }
  }
  @media screen and (max-width: 500px) {
    .columns {
      column-count: 1;
    }
  } */