/* ============================================================
   NÁHLEDY ČLÁNKŮ – Vše pro lov (Shoptet)
   Obrázek 16:9 + nadpis + krátký popisek + tlačítko "Číst více"
   ============================================================ */

/* ===== Mřížka – 3 sloupce ===== */
.news-wrapper {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start; /* karty se nenatahují na výšku nejvyšší v řadě */
}

/* ===== Karta ===== */
.news-wrapper .news-item {
  display: flex;
  flex-direction: column;
  width: auto !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}

.news-wrapper .news-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
  transform: translateY(-3px);
}

/* ===== Náhledový obrázek 16:9 ===== */
.news-wrapper .news-item-link-img {
  display: block;
  overflow: hidden;
}

.news-wrapper .news-item-link-img .news-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Placeholder pro články bez náhledovky (např. Beretta) – taky 16:9 */
.news-wrapper .news-item:not(:has(.news-item-link-img))::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
  background: #f4f9f4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%232e6b2e' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E") center/48px no-repeat;
  border-bottom: 1px solid #e0e0e0;
}

/* ===== Nadpis ===== */
.news-wrapper .news-item > h2 {
  font-size: 1.05em;
  line-height: 1.35;
  margin: 22px 20px 10px;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.news-wrapper .news-item > h2 a {
  color: #1a1a1a;
  text-decoration: none;
  word-break: normal;
  overflow-wrap: break-word;
}

.news-wrapper .news-item > h2 a:hover {
  color: #2e6b2e;
}

/* ===== Datum ===== */
.news-wrapper .news-item > time {
  display: block;
  margin: 0 20px 6px;
  font-size: .85em;
  color: #888;
}

/* ===== SKRYTÍ OBSAHU ČLÁNKU ===== */
/* Schová všechno uvnitř description (text, tabulky, styly, obrázky v textu) */
.news-wrapper .news-item .description > * {
  display: none;
}

.news-wrapper .news-item .description {
  margin: 10px 20px 22px;
  padding: 0;
  min-height: 0;
  height: auto;
}

/* ===== POPISEK – generuje JavaScript (.preview-perex) ===== */
.news-wrapper .news-item .description .preview-perex {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 18px;
  font-size: .9em;
  line-height: 1.55;
  color: #555;
}

/* ===== Tlačítko "Číst více" ===== */
.news-wrapper .news-item .description .read-more {
  display: inline-block !important;
  margin: 20px 0 0;
  padding: 11px 24px;
  background: #2e6b2e;
  color: #fff;
  border-radius: 5px;
  font-size: .9em;
  font-weight: bold;
  cursor: pointer;
  transition: background .2s ease;
}

.news-wrapper .news-item .description .read-more:hover {
  background: #1a4a1a;
}

/* ===== Responzivita ===== */
@media (max-width: 1100px) {
  .news-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .news-wrapper {
    grid-template-columns: 1fr;
  }
}
