/*
  GrandStyl.cz – BLOG
  Obrázek vlevo (mimo tok), text vpravo. Obrázek je zanořený uvnitř <h2>,
  proto se řeší position: absolute – funguje bez ohledu na zanoření.
*/

@media (min-width: 768px) {

  .news-wrapper .news-item {
    position: relative;
    display: block !important;
    padding: 16px 0 16px 180px !important;
    min-height: 120px;
    border-bottom: 1px solid #e5e5e5;
  }

  .news-wrapper .news-item .news-image {
    position: absolute !important;
    left: 0;
    top: 16px;
    width: 160px !important;
    height: 120px !important;
    max-width: 160px !important;
    object-fit: contain !important;
    object-position: center center;
    margin: 0 !important;
  }

  /* menší nadpis */
  .news-wrapper .news-item h2 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin: 0 0 6px 0 !important;
  }

  .news-wrapper .news-item time {
    display: block;
    margin: 0 0 6px 0 !important;
  }

  .news-wrapper .news-item .description {
    margin: 0 !important;
  }
}

/* mobil: beze změny, obrázek nahoře přes celou šířku */
@media (max-width: 767px) {
  .news-wrapper .news-item .news-image {
    width: 100% !important;
    height: 280px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center center;
    display: block;
    margin-bottom: 20px;
  }
}
