/* wybuduj.com.pl - Custom Styling */

:root {
  --primary-color: #2C7A2C;
  --primary-color-dark: #1F5C1F;
  --primary-color-light: #E8F3E8;
  --accent-color: #D97706;
  --accent-color-light: #FDF1E1;
  --bg-color: #FFFFFF;
  --bg-subtle: #F7F8F6;
  --text-color: #1F2937;
  --text-light: #6B7280;
  --border-color: #E5E7EB;
  --border-color-strong: #D6D9D2;
  --font-serif: 'Fraunces', 'Georgia', serif;

  /* Nadpisanie natywnych zmiennych kolorów Neve, żeby komponenty theme'u (przyciski, paginacja, focus states) trzymały się naszej palety zamiast domyślnego niebieskiego */
  --nv-primary-accent: var(--primary-color);
  --nv-secondary-accent: var(--accent-color);
  --nv-site-bg: var(--bg-color);
  --nv-light-bg: var(--bg-subtle);
  --nv-text-color: var(--text-color);
}

/* Typografia */
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

/* Kolory główne */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

/* Linki wewnętrzne w treści artykułu - wyraźnie odróżnione od reszty tekstu */
.entry-content a.internal-link,
.post-content a.internal-link {
  color: var(--accent-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 600;
}

.entry-content a.internal-link:hover,
.post-content a.internal-link:hover {
  color: var(--primary-color);
  text-decoration-thickness: 2px;
}

/* Przyciski */
.btn, button, input[type="button"], input[type="submit"], .wp-block-button__link {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover, .wp-block-button__link:hover {
  background-color: var(--accent-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 44, 0.3);
}

/* Header */
.header-top, .hfg-header {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}

.site-title {
  color: var(--primary-color) !important;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}

.site-title::before {
  content: '';
  display: inline-block;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj4KPHBhdGggZD0iTTggNDYgTDUwIDEwIEw5MiA0NiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRDk3NzA2IiBzdHJva2Utd2lkdGg9IjExIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHJlY3QgeD0iMjAiIHk9IjQyIiB3aWR0aD0iNjAiIGhlaWdodD0iNDYiIHJ4PSIxMCIgZmlsbD0iIzJDN0EyQyIvPgo8cmVjdCB4PSI0MSIgeT0iNjQiIHdpZHRoPSIxOCIgaGVpZ2h0PSIyNCIgcng9IjMiIGZpbGw9IiNGRkZGRkYiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Menu */
.menu-main-menu-container a, .hfg-nav a {
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-main-menu-container a:hover, .hfg-nav a:hover {
  color: var(--primary-color);
}

/* Kategorie - grid */
.wp-block-group .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-box {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.category-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(45, 122, 44, 0.1);
  transform: translateY(-4px);
}

.category-box h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.category-box .count {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Artykuły - karty */
.post, .wp-block-post {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.post:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.post-title a, .entry-title a {
  color: var(--text-color);
}

.post-title a:hover, .entry-title a:hover {
  color: var(--primary-color);
}

.post-meta {
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-category {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

/* Footer */
.site-footer, .hfg-footer {
  display: none;
}

.wb-site-footer {
  background-color: var(--text-color);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4rem;
  padding: 3.5rem 0 0;
}

.wb-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.wb-footer-brand .wb-footer-logo {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wb-footer-logo-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.wb-footer-logo-icon svg {
  width: 100%;
  height: 100%;
}

.wb-footer-brand .wb-footer-tagline {
  color: rgba(255, 255, 255, 0.65);
  max-width: 32ch;
  line-height: 1.6;
}

.wb-footer-col h4 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wb-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wb-footer-col ul li {
  margin-bottom: 0.65rem;
}

.wb-footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.wb-footer-col ul li a:hover {
  color: var(--accent-color);
}

.wb-footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
  text-align: center;
}

.wb-footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 700px) {
  .wb-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* Newsletter / Contact Form */
.wp-block-form, .wpcf7 {
  max-width: 600px;
  margin: 2rem auto;
}

.wp-block-form input, .wpcf7 input, .wpcf7 textarea {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 12px;
  font-family: 'Lato', sans-serif;
}

.wp-block-form input:focus, .wpcf7 input:focus, .wpcf7 textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 122, 44, 0.1);
}

/* Animacje */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.post, .category-box {
  animation: fadeIn 0.6s ease-out;
}

/* ==========================================================================
   HERO - strona główna (styl redakcyjny/magazynowy)
   ========================================================================== */
.wb-hero {
  position: relative;
  background: var(--bg-color);
  padding: 6.5rem 1.5rem 5rem;
  margin-bottom: 4.5rem;
  border-bottom: 1px solid var(--border-color);
}

.wb-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.wb-hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.wb-hero-kicker-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--accent-color);
}

.wb-hero-kicker-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.wb-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-color);
  margin-bottom: 1.75rem;
}

.wb-hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-color);
}

.wb-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0;
}

@media (max-width: 700px) {
  .wb-hero { padding: 3.5rem 1.25rem 3rem; margin-bottom: 3rem; }
  .wb-hero-title { font-size: 2.5rem; }
  .wb-hero-subtitle { font-size: 1.05rem; }
}

/* ==========================================================================
   SEKCJE - wspólny kontener + numeracja redakcyjna
   ========================================================================== */
.wb-section-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wb-section-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.wb-section-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.wb-category-grid-section {
  margin-bottom: 4rem;
}

.wb-latest-heading-section .wb-section-heading {
  margin-bottom: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--text-color);
}

/* ==========================================================================
   GRID KATEGORII - asymetryczny, z wyróżnioną kategorią
   ========================================================================== */
.wb-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}

.wb-category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
  background: var(--bg-color);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  transition: background 0.25s ease;
  position: relative;
}

.wb-category-card:hover {
  background: var(--bg-subtle);
}

.wb-category-card::after {
  content: '→';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--border-color-strong);
  font-size: 1.1rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.wb-category-card:hover::after {
  color: var(--accent-color);
  transform: translateX(3px);
}

.wb-category-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  padding: 2.25rem;
  justify-content: flex-end;
}

.wb-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--primary-color);
}

.wb-category-card--featured .wb-category-icon {
  width: 56px;
  height: 56px;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.wb-category-icon svg {
  width: 100%;
  height: 100%;
}

.wb-category-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-color);
}

.wb-category-card--featured .wb-category-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--text-color);
}

.wb-category-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 30ch;
  line-height: 1.5;
}

.wb-category-count {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .wb-category-grid { grid-template-columns: repeat(2, 1fr); }
  .wb-category-card--featured { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 700px) {
  .wb-category-grid { grid-template-columns: 1fr; }
  .wb-category-card--featured { grid-column: span 1; }
}

/* ==========================================================================
   KARTY ARTYKUŁÓW W PĘTLI (blog / archiwa kategorii)
   ========================================================================== */
.posts-wrapper {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--border-color);
}

article.post {
  display: flex;
  flex-direction: column;
  background: var(--bg-color);
  border: none;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-radius: 0;
  padding: 2rem 1.85rem;
  transition: background 0.25s ease;
  width: 100% !important;
  position: relative;
}

article.post:hover {
  background: var(--bg-subtle);
}

/* Pierwszy artykuł w pętli - wyróżniony, redakcyjny "lead" */
.posts-wrapper article.post:first-child {
  grid-column: span 2;
  padding: 2.75rem;
}

.posts-wrapper article.post:first-child .entry-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.2;
}

.posts-wrapper article.post:first-child p {
  font-size: 1.05rem;
}

@media (max-width: 700px) {
  .posts-wrapper article.post:first-child { grid-column: span 1; }
  .posts-wrapper article.post:first-child .entry-title { font-size: 1.5rem; }
}

article.post .entry-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

article.post .entry-title a {
  color: var(--text-color);
}

article.post .entry-title a:hover {
  color: var(--primary-color);
}

article.post .nv-meta-list {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

article.post p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Etykieta kategorii na karcie artykułu - redakcyjny label, bez pigułki z tłem */
article.post::before {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  align-self: flex-start;
  margin-bottom: 1rem;
}

article.category-kuchnia::before { content: "Kuchnia"; }
article.category-lazienka::before { content: "Łazienka"; }
article.category-wnetrza::before { content: "Wnętrza"; }
article.category-remonty-diy::before { content: "Remonty & DIY"; }
article.category-dom-ogrod::before { content: "Dom & Ogród"; }
article.category-budowa::before { content: "Budowa"; }

/* Efekt scroll-in (patrz wb-scroll-reveal.js) */
.wb-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wb-reveal.wb-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   NAGŁÓWEK STRONY (kategorie, archiwa)
   ========================================================================== */
.nv-page-title-wrap {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-color);
  padding: 3.5rem 0;
  margin-bottom: 3rem;
}

.nv-page-title-wrap .wb-section-inner,
.nv-page-title-wrap .container {
  max-width: 1170px;
}

.nv-page-title-wrap h1,
.nv-page-title-wrap .page-title {
  margin-bottom: 0;
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

.nv-page-title-wrap .page-description {
  margin-top: 0.75rem;
  color: var(--text-light);
  max-width: 60ch;
}

.page .entry-content,
.page .nv-content-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header-top, .hfg-header {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Prawdziwa przyczyna, dla której sticky nie działało: bezpośredni rodzic headera
   (.wrapper) ma "overflow: hidden" na obu osiach - to całkowicie blokuje
   position:sticky u potomków, niezależnie od tego, co ustawimy na samym headerze.
   Zawężamy do samej osi poziomej (to ona faktycznie zapobiega poziomemu
   scrollowaniu), a pionową odblokowujemy, żeby sticky mogło działać. */
.wrapper {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

/* Header przyklejony do góry przy scrollowaniu - działa identycznie na mobile
   i desktopie (natywne CSS position:sticky, bez JS). Menu (w tym menu mobilne)
   pozostaje więc zawsze dostępne. Kolor tła wymagany, żeby treść pod spodem nie
   prześwitywała przez header podczas scrollowania.
   !important konieczne - motyw ma własną regułę (#header-grid.global-styled:not(...))
   o wyższej specyficzności, która na sztywno ustawia position:relative. */
#header-grid.hfg_header {
  position: sticky !important;
  top: 0 !important;
  z-index: 999;
  background-color: var(--nv-site-bg, #fff);
}

/* ==========================================================================
   PASEK POSTĘPU CZYTANIA (tylko na pojedynczym wpisie)
   ========================================================================== */
.wb-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 9999;
}

.wb-reading-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-color);
  transition: width 0.1s linear;
}

/* ==========================================================================
   NAGŁÓWEK WPISU - styl redakcyjny
   ========================================================================== */
.wb-post-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-color) !important;
  margin-bottom: 1rem;
}

.wb-post-eyebrow:hover {
  color: var(--primary-color) !important;
}

.single .entry-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  text-align: left;
}

.single .entry-header .title.entry-title {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

@media (max-width: 700px) {
  .single .entry-header .title.entry-title { font-size: 2rem; }
}

.single .nv-meta-list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
  list-style: none;
  padding: 0;
}

.single .nv-meta-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.single .nv-meta-list li:not(:last-child)::after {
  content: '·';
  margin-left: 0.6rem;
  color: var(--border-color-strong);
}

.single .nv-meta-list a {
  color: var(--text-color);
  font-weight: 600;
}

.wb-reading-time {
  max-width: 1040px;
  margin: -1.5rem auto 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ==========================================================================
   OBRAZEK WYRÓŻNIAJĄCY - płaski, redakcyjny (bez zaokrągleń/cieni)
   ========================================================================== */
.single .nv-post-thumbnail-wrap,
.single .post-thumbnail {
  max-width: 1040px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.single .nv-post-thumbnail-wrap img,
.single .post-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

/* ==========================================================================
   TREŚĆ ARTYKUŁU - typografia, tabele, cytaty
   ========================================================================== */
.single .entry-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.85;
}

.single .entry-content p {
  margin-bottom: 1.5rem;
}

.single .entry-content h2 {
  font-size: 1.85rem;
  margin-top: 3rem;
  letter-spacing: -0.01em;
}

.single .entry-content h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.single .entry-content blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 0.5rem 0 0.5rem 2rem;
  border-left: 3px solid var(--accent-color);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-color);
}

.single .entry-content blockquote p {
  margin-bottom: 0;
}

.single .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  font-size: 0.95rem;
}

/* Tabele porównawcze w artykułach na wąskich ekranach - przewijanie w poziomie
   zamiast wypychania całej strony poza viewport. */
@media (max-width: 700px) {
  .single .entry-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.single .entry-content table th {
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--text-color);
}

.single .entry-content table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.single .entry-content table tr:hover td {
  background: var(--bg-subtle);
}

.single .entry-content ul,
.single .entry-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.single .entry-content li {
  margin-bottom: 0.6rem;
}

/* ==========================================================================
   FALLBACK DLA STARSZYCH PRZEGLĄDAREK (np. Safari < 14.1 / iOS ≤ 14)
   Te przeglądarki nie obsługują `gap` we flexboksie (tylko w grid) - bez tego
   fallbacku elementy w hero, nagłówkach sekcji i meta-liście wpisu dotykałyby
   się bez odstępu. Reguła aktywuje się WYŁĄCZNIE w przeglądarkach bez wsparcia
   dla gap, więc nie zmienia niczego w nowoczesnych przeglądarkach.
   ========================================================================== */
@supports not (gap: 1px) {
  .wb-hero-kicker > * + *,
  .wb-section-heading > * + * {
    margin-left: 0.75rem;
  }

  .single .nv-meta-list li + li {
    margin-left: 0.6rem;
  }
}
