.lsm-page-hero--projects{
  background:
    linear-gradient(to right, rgba(0,0,0,.72), rgba(0,0,0,.38)),
    url('/lsm/assets/imgs/about_img.jpg') center center / cover no-repeat;
}

.product-section{
  margin: 0;
}

.product{
  display: grid;
  grid-template-columns: repeat(4, fr);
  gap: 180px;
}

/* CARD */
.grid-card{
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.grid-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* IMAGE WRAP */
.grid-card__img{
  position: relative;
  overflow: hidden;
}

.grid-card__img img{
  /*width: 100%;*/
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.grid-card:hover .grid-card__img img{
  transform: scale(1.05);
}

/* TITLE */
.grid-card__title{
  margin: 12px 10px 14px;
  font-weight: 700;
  font-size: 14px;
  color: #0b1b3a;
  line-height: 1.5;
}

/* CATEGORY BADGE */
.grid-card__badge{
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11,27,58,.82);
  color: #fff;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* OVERLAY */
.grid-card__overlay{
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 58, 0.84);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;

  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
}

.grid-card:hover .grid-card__overlay{
  opacity: 1;
  transform: translateY(0);
}

/* DESCRIPTION */
.grid-card__desc{
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: center;
}

/* BUTTON */
.grid-card__btn{
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700; 
  border-radius: 999px;
  background: #fff;
  color: #d10000;
  text-decoration: none;
  transition: all .2s ease;
}

.grid-card__btn:hover{
  background: #f3f5f8;
  color: #d10000;
  text-decoration: none;
}

/* EMPTY STATE */
.lsm-empty-state{
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 40px 24px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(2,12,27,.08);
}

.lsm-empty-state h3{
  margin: 0 0 10px;
  color: #0b1b3a;
  font-weight: 900;
}

.lsm-empty-state p{
  margin: 0;
  color: rgba(11,27,58,.74);
}

.lsm-page-hero--projects{
  background:
    linear-gradient(to right, rgba(0,0,0,.72), rgba(0,0,0,.38)),
    url('/lsm/assets/imgs/about_img.jpg') center center / cover no-repeat;
}

.product-section{
  margin: 0;
}

.product{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* CARD */
.grid-card{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.grid-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* IMAGE WRAP */
.grid-card__img{
  position: relative;
  overflow: hidden;
}

.grid-card__img img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.grid-card:hover .grid-card__img img{
  transform: scale(1.05);
}

/* TITLE */
.grid-card__title{
  margin: 12px 10px 14px;
  font-weight: 700;
  font-size: 14px;
  color: #0b1b3a;
  line-height: 1.5;
}

/* CATEGORY BADGE */
.grid-card__badge{
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11,27,58,.82);
  color: #fff;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* OVERLAY */
.grid-card__overlay{
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 58, 0.84);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px;

  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease;
}

.grid-card:hover .grid-card__overlay{
  opacity: 1;
  transform: translateY(0);
}

/* DESCRIPTION */
.grid-card__desc{
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: center;
}

/* BUTTON */
.grid-card__btn{
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: #fff;
  color: #0b1b3a;
  text-decoration: none;
  transition: all .2s ease;
}

.grid-card__btn:hover{
  background: #f3f5f8;
}

/* EMPTY STATE */
.lsm-empty-state{
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 40px 24px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(2,12,27,.08);
}

.lsm-empty-state h3{
  margin: 0 0 10px;
  color: #0b1b3a;
  font-weight: 900;
}

.lsm-empty-state p{
  margin: 0;
  color: rgba(11,27,58,.74);
}