/*
 * =====================================================================
 *  Rumcajzl-blog.css  –  v1.0
 *  Styly pro blogové články na Rumcajzl.cz (Shoptet)
 *
 *  Sloučeno z: rumcajzl-blog-vol2.css + blog_post_2026.css
 *
 *  Hlavní obalující selektor: .news-item-detail article
 *  Všechny selektory jsou striktně scoped – neovlivňují zbytek webu.
 *
 *  CSS proměnné z Rumcajzl-root.css:
 *    --rc-gold: #c79040   --rc-gold-dark: #a87830
 *    --rc-dark-bg: #272727   --rc-radius: 12px
 *
 *  Shoptet: html{font-size:62.5%} → používáme px/em, ne rem.
 * =====================================================================
 */

/* ==========================================================================
   TABULKY
   ========================================================================== */

.news-item-detail article table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5em 0 2em;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.news-item-detail article table caption {
  caption-side: top;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--rc-gold, #c79040);
  margin-bottom: .5em;
  text-align: left;
  padding-left: 2px;
}

.news-item-detail article table thead th {
  background: var(--rc-dark-bg, #272727);
  color: #fff;
  padding: .75em 1em;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
}

.news-item-detail article table thead th:first-child { border-radius: 8px 0 0 0; }
.news-item-detail article table thead th:last-child  { border-radius: 0 8px 0 0; }
.news-item-detail article table tbody tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.news-item-detail article table tbody tr:last-child td:last-child  { border-radius: 0 0 8px 0; }

.news-item-detail article table tbody td {
  padding: .65em 1em;
  border-bottom: 1px solid #e0d5c0;
  vertical-align: top;
  line-height: 1.5;
  color: #1f1f1f;
  font-size: 16px;
}

.news-item-detail article table tbody tr:nth-child(odd) { background: #f5f0e8; }

.news-item-detail article table tbody tr:hover {
  background: #ede5d0;
  transition: background .15s;
}

/* Odkazy v tabulkách */
.news-item-detail article table a {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
}

.news-item-detail article table a:hover {
  color: var(--rc-gold-dark, #a87830);
  text-decoration-color: var(--rc-gold-dark, #a87830);
}

/* ==========================================================================
   BLOCKQUOTE
   ========================================================================== */

.news-item-detail article blockquote {
  margin: 1.8em 0;
  padding: 1.1em 1.4em;
  background: #faf7f0;
  border-left: 4px solid var(--rc-gold, #c79040);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  font-style: italic;
  font-family: "Open Sans", sans-serif;
  color: #3a3530;
}

.news-item-detail article blockquote p {
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
}

.news-item-detail article blockquote strong {
  font-style: normal;
  font-family: "Poppins", sans-serif;
  color: var(--rc-gold, #c79040);
}

/* ==========================================================================
   SEZNAM (UL)
   ========================================================================== */

.news-item-detail article .text ul {
  list-style: none;
  padding-left: 0;
  margin: 1em 0 1.2em;
}

.news-item-detail article .text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: .5em;
  line-height: 1.65;
  color: #1f1f1f;
  font-size: 16px;
}

/* ==========================================================================
   PULL QUOTE  (.pull-quote)
   – z blog_post_2026.css, scoped na .news-item-detail article
   ========================================================================== */

.news-item-detail article .pull-quote {
  background: var(--rc-dark-bg, #272727);
  color: #faf5eb;
  border-left: 6px solid var(--rc-gold, #c79040);
  padding: 28px 32px;
  margin: 40px 0;
  border-radius: 0 6px 6px 0;
  position: relative;
}

.news-item-detail article .pull-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--rc-gold, #c79040);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 12px;
  line-height: 1;
  pointer-events: none;
}

.news-item-detail article .pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
}

.news-item-detail article .pull-quote cite {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rc-gold, #c79040);
  padding-left: 20px;
}

/* ==========================================================================
   INFO BOX  (.infobox)
   – z blog_post_2026.css, scoped na .news-item-detail article
   ========================================================================== */

.news-item-detail article .infobox {
  background: #f3e0b5;
  border: 1px solid #ddb96b;
  border-radius: 8px;
  padding: 26px 30px;
  margin: 36px 0;
}

.news-item-detail article .infobox h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--rc-gold-dark, #8b5a10);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-item-detail article .infobox h3 span {
  font-size: 1.3rem;
}

.news-item-detail article .infobox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item-detail article .infobox ul li {
  display: block;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(192, 125, 42, .2);
  font-size: 0.95rem;
  gap: 0;
}

.news-item-detail article .infobox ul li:last-child {
  border-bottom: none;
}

.news-item-detail article .infobox ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--rc-gold, #c79040);
  font-size: 1rem;
  line-height: 1.6;
}

.news-item-detail article .infobox ul li strong {
  color: #3d2b0a;
}

/* ==========================================================================
   WARNING BOX  (.warningbox)
   – z blog_post_2026.css, scoped na .news-item-detail article
   ========================================================================== */

.news-item-detail article .warningbox {
  background: #2a1a1a;
  border-left: 5px solid #8b2020;
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 36px 0;
  color: #e8d0d0;
}

.news-item-detail article .warningbox h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #cc4444;
  margin-bottom: 10px;
}

.news-item-detail article .warningbox p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #d4b8b8;
}

.news-item-detail article .warningbox p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   TASTING NOTES GRID  (.tasting-grid / .tasting-card)
   – z blog_post_2026.css, scoped na .news-item-detail article
   ========================================================================== */

.news-item-detail article .tasting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.news-item-detail article .tasting-card {
  background: #fff;
  border: 1px solid #e0c88a;
  border-radius: 8px;
  padding: 20px 18px;
  text-align: center;
}

.news-item-detail article .tasting-card .emoji {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.news-item-detail article .tasting-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--rc-gold-dark, #8b5a10);
  margin-bottom: 6px;
}

.news-item-detail article .tasting-card p {
  font-size: 0.88rem;
  color: #5a4020;
  margin: 0;
}

/* ==========================================================================
   HIGHLIGHT  (.highlight)
   – z blog_post_2026.css, scoped na .news-item-detail article
   ========================================================================== */

.news-item-detail article .highlight {
  background: linear-gradient(to right, #f3e0b5, transparent);
  border-left: 3px solid var(--rc-gold, #c79040);
  padding: 14px 20px;
  margin: 24px 0;
  font-size: 0.96rem;
  font-style: italic;
  color: #3d2b0a;
  border-radius: 0 4px 4px 0;
}

/* ==========================================================================
   DIVIDER  (.divider)
   – z blog_post_2026.css, scoped na .news-item-detail article
   ========================================================================== */

.news-item-detail article .divider {
  text-align: center;
  margin: 44px 0;
  color: var(--rc-gold, #c79040);
  font-size: 1.4rem;
  letter-spacing: 16px;
  opacity: 0.6;
}

/* ==========================================================================
   LEAD PEREX  (.lead / .rc-perex)
   – z blog_post_2026.css a vlastní třída z článků
   ========================================================================== */

.news-item-detail article .lead,
.news-item-detail article .rc-perex {
  font-size: 1.08rem;
  color: #3d2b0a;
  font-style: italic;
  border-left: 4px solid var(--rc-gold, #c79040);
  padding-left: 22px;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* ==========================================================================
   KARTY PRODUKTOVÝCH ŘAD  (.rc-card-grid / .rc-card)
   ========================================================================== */

.rc-card-grid {
  display: flex;
  gap: 16px;
  margin: 1.5em 0 2em;
  flex-wrap: wrap;
}

.rc-card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid #e0d5c0;
  border-radius: var(--rc-radius, 12px);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}

.rc-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .13);
  transform: translateY(-3px);
}

.rc-card-header {
  background: var(--rc-dark-bg, #272727);
  color: #fff;
  padding: 14px 16px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.rc-card-badge {
  display: inline-block;
  background: var(--rc-gold, #c79040);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 20px;
  margin: 10px 16px 0;
  width: fit-content;
}

.rc-card-icon {
  font-size: 32px;
  padding: 12px 16px 0;
  line-height: 1;
}

.rc-card-body {
  padding: 10px 16px 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  flex-grow: 1;
}

/* Starší varianta tříd (.rc-card-name / .rc-card-detail) */
.rc-card-name {
  padding: 12px 16px 6px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--rc-dark-bg, #272727);
}

.rc-card-detail {
  padding: 0 16px 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  flex-grow: 1;
}

.rc-card-btn {
  display: block;
  margin: 0 16px 16px;
  padding: 9px 0;
  background: var(--rc-dark-bg, #272727);
  color: #fff !important;
  text-align: center;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: none !important;
  letter-spacing: .03em;
  transition: background .2s;
}

.rc-card-btn:hover {
  background: var(--rc-gold, #c79040) !important;
  color: #fff !important;
  border-bottom: none !important;
}

/* ==========================================================================
   OCENĚNÍ  (.rc-award-grid / .rc-award)
   ========================================================================== */

.rc-award-grid {
  display: flex;
  gap: 16px;
  margin: 1.5em 0 2em;
  flex-wrap: wrap;
}

.rc-award {
  flex: 1 1 260px;
  background: #fff;
  border-radius: var(--rc-radius, 12px);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  border: 1px solid #e0d5c0;
}

.rc-award--gold   { border-top: 4px solid var(--rc-gold, #c79040); }
.rc-award--silver { border-top: 4px solid #9e9e9e; }

.rc-award-inner {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.rc-award-medal  { font-size: 38px; line-height: 1; margin-bottom: 4px; }

.rc-award-year {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #767676;
}

.rc-award-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--rc-dark-bg, #272727);
  line-height: 1.2;
}

.rc-award--gold   .rc-award-title { color: var(--rc-gold, #c79040); }
.rc-award--silver .rc-award-title { color: #6e6e6e; }

.rc-award-event {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #767676;
  font-style: italic;
}

.rc-award-product {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
  margin-top: 4px;
}

/* Starší varianta tříd (.rc-award__icon / .rc-award__title / .rc-award__body) */
.rc-award__icon  { font-size: 32px; line-height: 1; padding: 16px 20px 8px; }
.rc-award__title {
  padding: 0 20px 6px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--rc-dark-bg, #272727);
}
.rc-award__body  {
  padding: 0 20px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* ==========================================================================
   INFO BOX (vlastní třída z článků)  (.rc-infobox)
   ========================================================================== */

.rc-infobox {
  background: #faf7f0;
  border: 1px solid #e0d5c0;
  border-left: 4px solid var(--rc-gold, #c79040);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 1.5em 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.rc-infobox-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--rc-gold, #c79040);
  margin-bottom: 10px;
}

/* ==========================================================================
   RESPONZIVITA
   ========================================================================== */

@media (max-width: 640px) {
  .news-item-detail article table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
  }

  .news-item-detail article table thead th,
  .news-item-detail article table tbody td {
    padding: .5em .7em;
    white-space: nowrap;
  }

  .news-item-detail article blockquote {
    padding: .9em 1em;
  }

  .news-item-detail article .pull-quote {
    padding: 20px 20px 20px 36px;
  }

  .news-item-detail article .tasting-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rc-card-grid,
  .rc-award-grid {
    flex-direction: column;
  }

  .rc-card,
  .rc-award {
    flex: 1 1 auto;
  }
}
