// ==============================================
// 💪 Executive Search SCSS
// ==============================================

.sec-job-alerts{
  padding: 60px 0 100px;
  ul.job-alert-list{
    li{
      display: block;
      &:not(:last-of-type){
        margin-bottom: 12px;
      }
      .job-alert-card{
        padding: 20px 25px 16px 16px;
        border-radius: 8px;
        background: $white;
        box-shadow: $box-shadow-03;
        .job-header{
          ul.name-list{
            li{
              display: inline-block;
              vertical-align: middle;
              &:not(:last-of-type){
                margin: 0 30px 0 0;
              }
              .name-wrapper{
                display: inline-flex;
                align-items: center;
                .icon{
                  img{
                    max-height: 20px;
                  }
                }
                .content{

                }
              }
            }
          }
          ul.action-list{
            text-align: right;
            li{
              display: inline-block;
              vertical-align: middle;
              &:not(:last-of-type){
                margin: 0 18px 0 0;
              }
              a{
                img{
                  max-height: 20px;
                }
              }
            }
          }
        }
        ul.search-tags{
          @media screen and (max-width: $screen-xs) {
            display: none;
          }
          li{
            display: inline-block;
            vertical-align: middle;
            &:not(:last-of-type){
              margin: 0 12px 0 0;
            }
          }
        }
      }
    }
  }
}
