/*
Theme Name: duyanhweb
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.cs_post.cs_style_1 .cs_post_thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 370 / 240; /* Giữ tỉ lệ 370:240 */
  overflow: hidden;
  border-radius: 10px; /* giữ bo góc giống class cs_radius_10 */
}

.cs_post.cs_style_1 .cs_post_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ảnh tự căn vừa khung, không méo */
  object-position: center; /* căn giữa ảnh */
  display: block;
  transition: transform 0.4s ease;
}

/* Hiệu ứng hover nhẹ cho đẹp */
.cs_post.cs_style_1 .cs_post_thumbnail:hover img {
  transform: scale(1.05);
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}