
#___sen____{}
/* card */
.__2_{
  border-radius: 8px;
  overflow: hidden;
}

/* image wrapper */
.__2_>.___2_img___{
  aspect-ratio: 3 / 2;   /* 300x200 */
  position: relative;        /* ⬅ overlay-д заавал */
  overflow: hidden;
}

.__2_>.___2_img___>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* text content */
.__2_>.___2_img___>.____2_txt____{
  position: absolute;
  inset: 0;                  /* top:0; right:0; bottom:0; left:0 */
  background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.68) );


  display: flex;
  flex-direction: column;

  justify-content: flex-end;   /* 👈 ДОРООС НААНА */
  align-items: flex-start;     /* (хэрэгтэй бол center / flex-end) */

  padding: 16px;
  transition: background 0.3s ease;

}

/* text styling */
.__2_>.___2_img___>.____2_txt____ > h2{
  margin: 0 0 6px;
  font-size: 1.2rem;
  text-transform:uppercase;
  /*display: block;*/
  color: #fff;
}

.__2_>.___2_img___>.____2_txt____ > p{
  margin: 0;
  font-size: 1rem;
  /*display: block;*/
  color: #fff;
}
  
/* 🔘 CENTER BUTTON */
.__2_>.___2_img___>a{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);

  padding: 10px 18px;
  background: #fff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;

  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

/* 🖱️ hover */
.__2_:hover .___2_img___>.____2_txt____{
  background: rgba(0,0,0,0.55);
}

.__2_:hover .___2_img___>a{
  opacity: 1;
  transform: translate(-50%, -50%);
}
  

  