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

/*************** ADD CUSTOM CSS HERE.   ***************/

.story-list.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1024px) {
  .story-list.grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .story-list.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .story-list.grid {
    grid-template-columns: 1fr;
  }
}

.story-item {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.story-thumb-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.story-title {
  font-size: 16px;
  line-height: 1.4;
  margin: 12px;
}

.story-title a {
  text-decoration: none;
  color: #111;
}

.story-excerpt {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 12px 14px;
}

.story-card-list .boximg {
  width: 100%;
  height: 100%;
}

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