/*
Theme Name: Parafia NNMP
Description: Nowoczesny motyw parafialny - Wieruszow-Podzamcze
Version: 2.0
Author: Parafia NNMP
Text Domain: parafia-pnnmp
*/

/* ── Custom Scrollbar ───────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8f7f4; }
::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #b87620; }

/* ── Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f8f7f4;
  color: #2d2a26;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: #b87620; text-decoration: none; transition: color .2s; }
a:hover { color: #945c1d; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: 'Raleway', Georgia, serif; line-height: 1.3; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* Focus */
a:focus-visible, button:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

/* ── Layout ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Top Bar ────────────────────────────────────────── */
.topbar {
  background: #2d2a26;
  color: #e8e4dc;
  font-size: .8rem;
  font-family: 'Inter', sans-serif;
  padding: 7px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; gap: 16px; }
.topbar-right a { color: #c8b98a; transition: color .2s; }
.topbar-right a:hover { color: #fff; }
.topbar-item { display: flex; align-items: center; gap: 6px; color: #b8b0a0; }
.topbar-item svg { opacity: .7; }

/* ── Header ─────────────────────────────────────────── */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #efede6;
  box-shadow: 0 1px 12px rgba(0,0,0,.07);
  transition: box-shadow .3s, transform .3s;
}
#main-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
#main-header.hide { transform: translateY(-100%); }
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 16px;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-wrap:hover { text-decoration: none; }
.logo-icon {
  width: 48px; height: 48px;
  background: #fbf0d9;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.logo-wrap:hover .logo-icon { background: #f6e0b3; }
.logo-img { width: 36px; height: 36px; object-fit: contain; }
.logo-title { display: block; font-family: 'Raleway', serif; font-weight: 700; font-size: 1rem; color: #2d2a26; line-height: 1.2; }
.logo-sub   { display: block; font-size: .72rem; color: #7a6a58; }

/* ── Desktop nav ────────────────────────────────────── */
#main-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 2px; padding: 0; margin: 0; flex-wrap: wrap; justify-content: flex-end; }

.nav-item > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px;
  font-size: .83rem;
  font-weight: 500;
  color: #2d2a26;
  border-radius: 6px;
  white-space: nowrap;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.nav-item > a:hover,
.nav-item.active > a,
.nav-item.current-menu-item > a,
.nav-item.current-menu-ancestor > a {
  background: #fbf0d9;
  color: #945c1d;
}
.nav-arrow {
  display: inline-block;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238b5e3c' stroke-width='2.5'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center/14px no-repeat;
  opacity: .7;
  margin-left: 2px;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform .2s;
}

/* Strzalka we wszystkich poziomach menu */
.nav-item.has-dropdown:hover > a > .nav-arrow { transform: rotate(90deg); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e8e2d6;
  border-top: 2px solid #c9a84c;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.11);
  padding: 6px;
  z-index: 2000;
  list-style: none;
  animation: dropIn .18s ease;
}
@keyframes dropIn {
  from { opacity:0; transform:translateY(-5px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes dropInRight {
  from { opacity:0; transform:translateX(-5px); }
  to   { opacity:1; transform:translateX(0); }
}

.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown:hover > .dropdown-menu,
.nav-item.has-dropdown:focus-within > .dropdown-menu { display: block; }

.dropdown-menu li { position: relative; }
.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: .84rem;
  color: #3d3530;
  border-radius: 6px;
  transition: background .13s, color .13s;
  white-space: nowrap;
  text-decoration: none;
}
.dropdown-menu li a:hover { background: #fdf5e6; color: #945c1d; }
.dropdown-menu li.current-menu-item > a { color: #945c1d; font-weight: 600; }

/* 2nd level i głębiej — flush z krawędzią, bez przes. */
.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 4px;
  border: 1px solid #e8e2d6;
  border-left: 3px solid #c9a84c;
  border-radius: 4px 10px 10px 10px;
  box-shadow: 4px 8px 20px rgba(0,0,0,.1);
  animation: dropInRight .18s ease;
}
/* Podswietlenie elementu rodzica gdy submenu jest otwarte */
.dropdown-menu li.has-dropdown:hover > a {
  background: #fdf5e6;
  color: #945c1d;
}

/* Nagłówek sekcji (ALL CAPS, href=#) */
.dropdown-menu li.nav-section-header > a {
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #9a5a1e;
  padding: 6px 14px 5px;
  border-bottom: 1px solid #ede7da;
  border-radius: 0;
  cursor: default;
  pointer-events: none;
  margin: 0 0 2px;
}

/* ── Hamburger ──────────────────────────────────────── */
.nav-drawer-header { display:none; }

#nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #f5f0e8;
  border: none;
  border-radius: 12px;
  margin-left: auto;
  transition: background .2s;
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
#nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #2d2a26;
  border-radius: 2px;
  transition: background .2s;
}
#nav-toggle em {
  display: block;
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .8px;
  color: #2d2a26;
  line-height: 1;
  transition: color .2s;
}
#nav-toggle:hover { background: #d4af37; }
#nav-toggle:hover span { background: #fff; }
#nav-toggle:hover em { color: #fff; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(45,42,38,.7) 0%, rgba(45,42,38,.5) 40%, rgba(45,42,38,.8) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  line-height: 1.2;
}
.hero-title-gold { color: #edc67a; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  background: #d4902a;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(212,144,42,.35);
}
.btn-primary:hover { background: #b87620; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,144,42,.4); text-decoration: none; }

.btn-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.3);
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-glass:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-2px); text-decoration: none; }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Info Cards ─────────────────────────────────────── */
.info-cards-section {
  position: relative; z-index: 10;
  margin-top: -80px;
  padding-bottom: 0;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  border: 1px solid #efede6;
}
.info-card-icon {
  width: 48px; height: 48px;
  background: #fbf0d9;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #945c1d;
  margin-bottom: 14px;
  transition: background .2s;
}
.info-card:hover .info-card-icon { background: #f6e0b3; }
.info-card h3 {
  font-family: 'Raleway', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2d2a26;
  margin-bottom: 12px;
}
.info-card-rows { display: flex; flex-direction: column; gap: 0; }
.info-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #efede6;
  font-size: .88rem;
  gap: 8px;
}
.info-card-row:last-child { border-bottom: none; }
.info-card-row span { color: #4a453f; }
.info-card-row strong { color: #945c1d; font-weight: 600; white-space: nowrap; }
.info-card-row svg { color: #b87620; flex-shrink: 0; }

.quick-links { list-style: none; padding: 0; margin: 0; }
.quick-links li { border-bottom: 1px solid #efede6; }
.quick-links li:last-child { border-bottom: none; }
.quick-links li a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 2px;
  font-size: .88rem;
  color: #4a453f;
  text-decoration: none;
  transition: color .15s;
}
.quick-links li a:hover { color: #945c1d; }
.quick-links li a svg { color: #d4902a; flex-shrink: 0; }

/* ── Main content ───────────────────────────────────── */
.main-content-section { padding: 60px 0 80px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.content-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #efede6;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.content-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.content-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
}
.content-card-header.gold {
  background: linear-gradient(135deg, #d4902a, #b87620);
}
.content-card-header.dark {
  background: linear-gradient(135deg, #4a453f, #2d2a26);
}
.content-card-header h2 {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Raleway', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.card-header-link {
  display: flex; align-items: center; gap: 4px;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s;
}
.card-header-link:hover { color: #fff; }
.content-card-body { padding: 22px; }
.content-card-body:has(.ogloszenia-wrap),
.content-card-body:has(.intencje-wrap) { padding: 0; }

.prose { color: #4a453f; line-height: 1.75; }
.prose p { margin-bottom: 1em; }
.prose-muted { color: #6a6258; font-size: .92rem; margin-bottom: 1em; }
.prose-italic { font-style: italic; font-size: .88rem; color: #6a6258; }
.prose-small { font-size: .88rem; color: #4a453f; }
.divider { border: none; border-top: 1px solid #efede6; margin: 14px 0; }
.card-tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.tag { display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: .76rem; font-weight: 500; }
.tag-gold { background: #fbf0d9; color: #945c1d; }
.tag-gray { background: #efede6; color: #4a453f; }
.info-box {
  display: flex; gap: 10px; align-items: flex-start;
  background: #fdf9f0;
  border: 1px solid #f6e0b3;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 14px;
  font-size: .86rem;
  color: #4a453f;
}
.info-box svg { color: #d4902a; flex-shrink: 0; margin-top: 2px; }
.info-box p { margin: 0; }

/* ── Footer ─────────────────────────────────────────── */
#site-footer { background: #2d2a26; color: #e8e4dc; padding: 56px 0 0; font-family: 'Inter', sans-serif; }
.footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon {
  width: 36px; height: 36px;
  background: #d4902a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.footer-logo h3 { font-family:'Raleway',serif; font-size:1rem; font-weight:700; color:#fff; margin:0; }
.footer-col > p { color: #b8b0a0; font-size: .85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Raleway', serif;
  font-size: .9rem; font-weight: 700;
  color: #fff; margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 svg { color: #d4902a; flex-shrink:0; }
.footer-list { list-style:none; padding:0; margin:0; }
.footer-list-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .83rem;
}
.footer-list-row:last-child { border-bottom:none; }
.footer-list-row span { color: #b8b0a0; }
.footer-list-row strong { color: #fff; font-size: .83rem; }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-links li:last-child { border-bottom:none; }
.footer-links li a { display:flex; align-items:center; gap:6px; color:#b8b0a0; font-size:.84rem; text-decoration:none; transition:color .2s; }
.footer-links li a:hover { color: #edc67a; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #e8e4dc;
  transition: background .2s;
}
.social-btn:hover { background: #d4902a; color: #fff; }
.footer-contact-box {
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
}
.footer-contact-label { font-size:.75rem; font-weight:600; color:#edc67a; text-transform:uppercase; letter-spacing:.6px; margin-bottom:6px; }
.footer-contact-box p { font-size:.82rem; color:#b8b0a0; margin-bottom:3px; }
.footer-bottom {
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: .78rem; color: #6a6258;
}

/* ── Inner pages ────────────────────────────────────── */
.page-wrapper { padding: 40px 0 60px; }
.page-grid { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }
.page-section-title {
  background: linear-gradient(135deg, #d4902a, #b87620);
  color: #fff; padding: 12px 18px;
  border-radius: 8px 8px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: .84rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  display: flex; align-items: center; gap: 8px;
}
.page-section-title svg { opacity:.85; }
.page-section-title .section-more {
  margin-left:auto; font-size:.76rem; color:rgba(255,255,255,.8);
  font-weight:400; text-transform:none; letter-spacing:0;
  text-decoration:none; transition:color .2s;
}
.page-section-title .section-more:hover { color:#fff; }
.page-section-body {
  background: #fff; border: 1px solid #efede6; border-top: none;
  border-radius: 0 0 8px 8px; padding: 22px; margin-bottom: 22px;
}
.page-section-body:has(.ogloszenia-wrap),
.page-section-body:has(.intencje-wrap),
.page-section-body:has(.wpisy-lista) { padding: 0; }

/* Sidebar */
.page-sidebar { font-family: 'Inter', sans-serif; }
.sidebar-widget { margin-bottom: 20px; }
.sidebar-title {
  background: #2d2a26; color: #fff; padding: 10px 14px;
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  border-radius: 8px 8px 0 0;
  display: flex; align-items: center; gap: 7px;
}
.sidebar-title svg { opacity:.75; }
.sidebar-body {
  background: #fff; border: 1px solid #efede6; border-top: none;
  border-radius: 0 0 8px 8px; padding: 14px;
}
.sidebar-schedule { width:100%; border-collapse:collapse; font-size:.85rem; }
.sidebar-schedule tr { border-bottom:1px solid #efede6; }
.sidebar-schedule tr:last-child { border-bottom:none; }
.sidebar-schedule td { padding:8px 4px; vertical-align:top; }
.sidebar-schedule .day { color:#945c1d; font-weight:700; width:110px; }
.sidebar-schedule .time { color:#2d2a26; font-weight:600; }
.sidebar-schedule .note { color:#8a8078; font-size:.78rem; display:block; }
.sidebar-contact { list-style:none; padding:0; margin:0; font-size:.84rem; }
.sidebar-contact li { display:flex; align-items:flex-start; gap:9px; padding:7px 0; border-bottom:1px solid #efede6; line-height:1.4; }
.sidebar-contact li:last-child { border-bottom:none; }
.sidebar-contact li svg { color:#b87620; margin-top:2px; flex-shrink:0; }
.sidebar-links { list-style:none; padding:0; margin:0; }
.sidebar-links li { border-bottom:1px solid #efede6; }
.sidebar-links li:last-child { border-bottom:none; }
.sidebar-links li a { display:flex; align-items:center; gap:8px; padding:8px 2px; font-size:.84rem; color:#2d2a26; transition:color .15s; text-decoration:none; }
.sidebar-links li a:hover { color:#945c1d; }
.sidebar-links li a svg { color:#d4902a; flex-shrink:0; }

/* Post list */
.post-list { list-style:none; padding:0; margin:0; }
.post-item { padding:16px 0; border-bottom:1px solid #efede6; }
.post-item:first-child { padding-top:0; }
.post-item:last-child { border-bottom:none; padding-bottom:0; }
.post-meta { font-size:.74rem; color:#8a8078; margin-bottom:5px; display:flex; gap:10px; align-items:center; }
.post-item h3 { font-family:'Raleway',serif; font-size:.97rem; margin-bottom:5px; }
.post-item h3 a { color:#2d2a26; transition:color .2s; }
.post-item h3 a:hover { color:#945c1d; }
.post-excerpt { font-size:.87rem; color:#6a6258; margin:0; }
.read-more { font-size:.78rem; color:#b87620; font-weight:600; margin-top:8px; display:inline-block; transition:color .2s; }
.read-more:hover { color:#945c1d; }
.empty-note { color:#8a8078; font-style:italic; font-size:.9rem; }

/* Entry content */
.entry-content p { margin-bottom:1em; line-height:1.8; }
.entry-content h2 { font-size:1.3rem; margin:1.5em 0 .6em; }
.entry-content h3 { font-size:1.1rem; margin:1.2em 0 .5em; }
.entry-content ul,.entry-content ol { margin:0 0 1em 1.5em; }
.entry-content table { width:100%; border-collapse:collapse; margin-bottom:1em; }
.entry-content table td,.entry-content table th { padding:9px 12px; border:1px solid #efede6; font-size:.88rem; }
.entry-content table th { background:#fdf9f0; font-family:'Inter',sans-serif; font-weight:600; }

/* Pagination */
.pagination { display:flex; gap:6px; margin-top:20px; flex-wrap:wrap; }
.pagination a,.pagination span { padding:6px 12px; background:#fff; border:1px solid #efede6; font-size:.83rem; color:#2d2a26; border-radius:6px; text-decoration:none; transition:background .15s; }
.pagination .current,.pagination a:hover { background:#d4902a; color:#fff; border-color:#d4902a; }

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.animate-fade-in { animation: fadeIn .8s ease-out forwards; }

.stagger-children > * { opacity:0; animation:fadeIn .6s ease-out forwards; }
.stagger-children > *:nth-child(1) { animation-delay:.1s; }
.stagger-children > *:nth-child(2) { animation-delay:.2s; }
.stagger-children > *:nth-child(3) { animation-delay:.3s; }

/* Hover lift */
.hover-lift { transition:transform .3s ease,box-shadow .3s ease; }
.hover-lift:hover { transform:translateY(-4px); box-shadow:0 20px 40px -15px rgba(0,0,0,.12)!important; }

/* Line clamp */
.line-clamp-3 { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .info-cards { grid-template-columns: repeat(3,1fr); gap:14px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .content-grid { grid-template-columns:1fr; }
  .page-grid { grid-template-columns:1fr; }
  .page-sidebar { order:-1; display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .info-cards { grid-template-columns:1fr; margin-top:0; }
  .info-cards-section { margin-top:0; padding:20px 0 0; }
}
@media (max-width: 780px) {
  /* Header - zachowaj sticky, wylacz backdrop-filter zeby nav nie byl ograniczony */
  #main-header {
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  body.nav-open { overflow:hidden; }

  /* Overlay */
  #nav-overlay {
    display:none;
    position:fixed; inset:0;
    background:rgba(45,42,38,.5);
    z-index:1100;
  }
  #nav-overlay.active { display:block; }

  /* Left drawer - full width on mobile */
  #nav-toggle { display:flex; }
  #main-nav {
    display:block;
    position:fixed;
    top:0; left:0;
    width:280px;
    height:100vh;
    background:#fff;
    z-index:1200;
    transform:translateX(-100%);
    transition:transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y:auto;
    overflow-x:hidden;
    box-shadow:none;
  }
  #main-nav.open {
    transform:translateX(0);
  }

  /* Drawer header */
  .nav-drawer-header { display:flex; }
  .nav-drawer-header {
    display:flex; align-items:center; justify-content:space-between;
    padding:0 16px;
    height:64px;
    background:#2d2a26;
    border-bottom:1px solid rgba(255,255,255,.08);
    position:sticky; top:0; z-index:1;
    flex-shrink:0;
  }
  .nav-drawer-title {
    font-family:'Raleway',serif;
    font-size:.88rem;
    color:#edc67a;
    font-weight:700;
    letter-spacing:.02em;
  }
  .nav-drawer-close {
    background:none; border:none; cursor:pointer;
    padding:8px; color:#c8b98a;
    display:flex; align-items:center;
    border-radius:6px;
    transition:background .15s, color .15s;
  }
  .nav-drawer-close:hover { color:#fff; background:rgba(255,255,255,.1); }

  /* Nav list in drawer */
  .header-inner { flex-wrap:nowrap; }
  .nav-list { flex-direction:column; align-items:stretch; gap:0; padding:10px 8px; }
  .nav-item > a {
    padding:14px 16px;
    border-radius:8px;
    font-size:.92rem;
    justify-content:space-between;
    min-height:48px;
    align-items:center;
  }
  /* Ikona rozwin/zwij na mobile - wszystkie poziomy */
  .dropdown-menu .nav-arrow { display:inline-block; }
  .nav-arrow {
    width:28px; height:28px;
    border:none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%238b5e3c' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/18px no-repeat;
    opacity:1;
    margin-left:auto;
    flex-shrink:0;
    transition:transform .25s;
  }
  .nav-item.submenu-open > a .nav-arrow {
    transform:rotate(180deg);
  }
  /* Zablokuj desktop-hover na mobile – tap ustawia :hover i krecil strzalke w lewo */
  .nav-item.has-dropdown:hover > a > .nav-arrow,
  .nav-item.has-dropdown:focus-within > a > .nav-arrow { transform: none; }
  .dropdown-menu {
    position:static;
    box-shadow:none; border:none;
    background:#fdf9f0;
    border-radius:8px;
    margin:2px 0 4px;
    padding:4px;
    animation:none;
    display:none;
  }
  .nav-item.has-dropdown:hover > .dropdown-menu,
  .nav-item.has-dropdown:focus-within > .dropdown-menu { display:none; }
  .dropdown-menu li > a { min-height:44px; display:flex; align-items:center; }
  .dropdown-menu .dropdown-menu { margin:0; background:#f6e0b3; }
  .dropdown-menu li.nav-section-header > a { pointer-events:auto; cursor:default; }

  .topbar { display:none; }
  .hero { height:100vh; }
  .hero-title { font-size:1.8rem; }
  .footer-grid { grid-template-columns:1fr; gap:24px; }
  .footer-bottom { flex-direction:column; text-align:center; }
}
@media (max-width:480px) {
  .logo-title { font-size:.88rem; }
  .hero { height: calc(100vh - 72px); }
  .page-sidebar { grid-template-columns:1fr; }
}

/* ── Print ───────────────────────────────────────────── */
@media print {
  .topbar,#main-header,#site-footer { display:none!important; }
  body { background:#fff; color:#000; }
}

/* ── Facebook Aktualności ─────────────────────────────────── */
.fb-section {
  padding: 72px 0 80px;
  background: #fff;
  border-top: 1px solid #efede6;
}
.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: #e7f0ff;
  color: #1877f2;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Raleway', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #2d2a26;
  margin-bottom: 10px;
}
.section-sub {
  color: #6a6258;
  font-size: .97rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Grid */
.fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.fb-grid.loaded .fb-skeleton { display: none; }

/* Skeleton */
.fb-skeleton {
  background: #fff;
  border: 1px solid #efede6;
  border-radius: 16px;
  overflow: hidden;
}
.fb-skeleton-img {
  height: 180px;
  background: linear-gradient(90deg, #f0ece4 25%, #e8e4dc 50%, #f0ece4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.fb-skeleton-body { padding: 18px; }
.fb-skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0ece4 25%, #e8e4dc 50%, #f0ece4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 10px;
}
.fb-skeleton-line.w80 { width: 80%; }
.fb-skeleton-line.w100 { width: 100%; }
.fb-skeleton-line.w60 { width: 60%; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* FB Card */
.fb-card {
  background: #fff;
  border: 1px solid #efede6;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  color: inherit;
  text-decoration: none;
  opacity: 0;
}
.animate-fb {
  animation: fadeIn .6s ease-out forwards;
}
.fb-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  transform: translateY(-4px);
  text-decoration: none;
  color: inherit;
}

.fb-card-img {
  height: 180px;
  overflow: hidden;
  background: #f8f7f4;
  flex-shrink: 0;
}
.fb-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.fb-card:hover .fb-card-img img { transform: scale(1.04); }
.fb-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-card-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fb-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.fb-card-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #2d2a26;
  color: #fff;
  font-family: 'Raleway', serif;
  font-weight: 700;
  font-size: .72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fb-card-name {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: #2d2a26;
}
.fb-card-date {
  display: block;
  font-size: .75rem;
  color: #8a8078;
}
.fb-card-text {
  font-size: .88rem;
  color: #4a453f;
  line-height: 1.65;
  flex: 1;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fb-card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: #1877f2;
  font-size: .82rem;
  font-weight: 600;
}
.fb-card-footer svg { flex-shrink: 0; }

/* Fallback */
.fb-fallback {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px;
  color: #6a6258;
}
.fb-fallback p { margin-bottom: 16px; }

/* CTA */
.fb-cta { text-align: center; }
.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #1877f2;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 14px rgba(24,119,242,.25);
}
.btn-fb:hover {
  background: #1464d0;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24,119,242,.3);
}

@media (max-width: 900px) {
  .fb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fb-grid { grid-template-columns: 1fr; }
  .fb-section { padding: 48px 0 56px; }
}
/* ── Facebook Aktualności ────────────────────────────────── */
.fb-section {
  padding: 72px 0 80px;
  background: #fff;
  border-top: 1px solid #efede6;
}
.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: #e7f0ff;
  color: #1877f2;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Raleway', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #2d2a26;
  margin-bottom: 10px;
}
.section-sub {
  color: #6a6258;
  font-size: .97rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Centered embed wrapper */
.fb-embed-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 36px;
  min-height: 400px;
}

/* Make the FB page plugin responsive */
.fb-embed-wrap .fb-page,
.fb-embed-wrap .fb-page > span,
.fb-embed-wrap .fb-page > span > iframe {
  width: 100% !important;
  max-width: 700px !important;
}

/* CTA button */
.fb-cta { text-align: center; }
.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #1877f2;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 14px rgba(24,119,242,.25);
}
.btn-fb:hover {
  background: #1464d0;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24,119,242,.3);
}

@media (max-width: 600px) {
  .fb-section { padding: 48px 0 56px; }
  .fb-embed-wrap { min-height: 300px; }
}

/* ── Mobile Nav (bottom bar) ─────────────────────────────────── */
.mobilenav-popup { display: none; }
@media (max-width: 780px) {
  body { padding-bottom: 60px; }
  .hero { height: calc(100dvh - 132px) !important; }
  .hero-btns { display: none; }
  #mobilenav {
    z-index: 200;
    border-top: 1px solid #ddd;
    background: #f7f7f7;
    height: 60px;
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
  }
  #mobilenav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 2px;
    font-size: 18px;
    color: #333;
    width: 20%;
    text-decoration: none;
    line-height: 1;
  }
  #mobilenav a span {
    display: block;
    text-align: center;
    font-size: 10px;
    line-height: 1.2em;
    margin-top: 3px;
  }
  #mobilenav a#a-glowna {
    margin-top: -10px;
    background: #b87620;
    padding: 0;
    line-height: 70px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    border: 5px solid #f7f7f7;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    justify-content: center;
  }
  body { padding-bottom: 60px; }

  /* Popup panels */
  .mobilenav-popup {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fff;
    z-index: 199;
    padding: 60px 24px 30px;
    overflow-y: auto;
    text-align: center;
  }
  .mobilenav-popup.show { display: block; }
  .mobilenav-popup .closetile {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 13px;
    color: #b87620;
    border: 1px solid #b87620;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none;
  }
  .mobilenav-popup .popup-icon {
    font-size: 52px;
    color: #b87620;
    margin: 16px 0 20px;
  }
  .mobilenav-popup h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: #2d2a26;
  }
  .mobilenav-popup p {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #2d2a26;
    line-height: 1.7;
  }
  .mobilenav-popup .popup-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 28px;
    background: #b87620;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
  }
}

/* Nav icons */
.nav-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  opacity: .75;
  vertical-align: middle;
  position: relative;
  top: -1px;
  transition: opacity .2s;
}
.nav-item > a:hover .nav-icon,
.nav-item.active > a .nav-icon {
  opacity: 1;
}
/* ── Lista wpisów (ogłoszenia / intencje) ─────────────── */
.wpisy-lista { display: flex; flex-direction: column; }

.wpis-item {
  border: 1px solid #efede6;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.wpis-item--current { border-left: 4px solid #d4af37; }
.wpis-item--prev    { border-left: 4px solid #b8b0a0; }

.wpis-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #faf9f6;
  border-bottom: 1px solid #efede6;
}
.wpis-week-chip {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem; font-weight: 600; flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: .3px; white-space: nowrap;
}
.wpis-week-chip--current { background: #d4af37; color: #fff; }
.wpis-week-chip--prev    { background: #e8e4dc; color: #6a6258; }

.wpis-meta { flex: 1; min-width: 0; }
.wpis-meta strong { display: block; font-size: .9rem; color: #2d2a26; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wpis-meta .wpis-okres { font-size: .78rem; color: #6a6258; }

.wpis-body { padding: 16px 20px; }
.wpis-body .prose { margin: 0; }

.wpis-separator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: #9e9689;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-family: 'Inter', sans-serif;
}
.wpis-separator::before,
.wpis-separator::after {
  content: '';
  flex: 1;
  border-top: 1px dashed #d9d4cb;
}
/* ── Pelna szerokosc (bez sidebara) ───────────────── */
.page-full-width { width: 100%; max-width: 820px; margin: 0 auto; }


/* ── PWA Install Banner ───────────────────────────────── */
#pwa-banner {
  display: none;
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 190;
  padding: 0 12px 8px;
  pointer-events: none;
}
#pwa-banner.pwa-visible { display: block; }
@media (display-mode: standalone) {
  #pwa-banner, #pwa-ios-modal { display: none !important; }
}
.pwa-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e1c19;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  pointer-events: all;
  animation: pwaSlideUp .35s ease;
}
@keyframes pwaSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.pwa-banner-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  background: #fff;
  padding: 4px;
}
.pwa-banner-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pwa-banner-text strong {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.pwa-banner-text span {
  font-size: .72rem;
  color: #a09890;
  line-height: 1.2;
}
.pwa-btn-install {
  flex-shrink: 0;
  background: #d4af37;
  color: #1e1c19;
  border: none;
  border-radius: 20px;
  padding: 7px 14px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
  white-space: nowrap;
}
.pwa-btn-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: #a09890;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
}

/* ── PWA iOS Modal ────────────────────────────────────── */
#pwa-ios-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
#pwa-ios-modal.pwa-open { display: flex; align-items: flex-end; }
.pwa-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
}
.pwa-modal-box {
  position: relative;
  background: #fff;
  width: 100%;
  border-radius: 22px 22px 0 0;
  padding: 28px 24px 36px;
  text-align: center;
  animation: pwaSlideUp .3s ease;
}
.pwa-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f0ede6;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1rem;
  cursor: pointer;
  color: #5a5248;
  line-height: 30px;
}
.pwa-modal-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin: 0 auto 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.pwa-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d2a26;
  margin: 0 0 4px;
}
.pwa-modal-sub {
  font-size: .8rem;
  color: #9e9689;
  margin: 0 0 20px;
}
.pwa-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.pwa-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pwa-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #d4af37;
  color: #fff;
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pwa-step-text {
  font-size: .86rem;
  color: #3a3630;
  line-height: 1.5;
}
.pwa-modal-ok {
  width: 100%;
  background: #2d2a26;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
}

.pwa-steps-ios     { display: none; }
.pwa-steps-android { display: none; }
#pwa-ios-modal.pwa-ios     .pwa-steps-ios     { display: flex; }
#pwa-ios-modal.pwa-android .pwa-steps-android { display: flex; }


/* === Intencje mszalne === */
.intencje-wrap { display: flex; flex-direction: column; gap: 0; }
.intencje-day { border-bottom: 1px solid #ede8df; padding: 18px 0; }
.intencje-day:first-child { padding-top: 4px; }
.intencje-day:last-child { border-bottom: none; }
.intencje-day-header { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 10px; }
.intencje-weekday { font-family: "Raleway", Georgia, serif; font-weight: 700; font-size: 1rem; color: #2d2a26; text-transform: uppercase; letter-spacing: .04em; }
.intencje-date { font-size: .85rem; color: #8a7060; font-weight: 500; }
.intencje-feast { font-size: .82rem; color: #b87620; font-style: italic; font-weight: 600; }
.intencje-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.intencje-list li { display: flex; gap: 14px; align-items: baseline; }
.intencje-time { flex-shrink: 0; min-width: 42px; font-weight: 700; font-size: .88rem; color: #8b5e3c; font-family: "Raleway", Georgia, serif; }
.intencje-text { font-size: .92rem; color: #3a3530; line-height: 1.55; }


/* === Ogloszenia parafialne === */
.ogloszenia-wrap { display: flex; flex-direction: column; gap: 0; }
.ogloszenie-item { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid #ede8df; }
.ogloszenie-item:first-child { padding-top: 4px; }
.ogloszenie-item:last-child { border-bottom: none; }
.ogloszenie-num { flex-shrink: 0; width: 32px; height: 32px; background: #8b5e3c; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Raleway", Georgia, serif; font-weight: 700; font-size: .88rem; margin-top: 2px; }
.ogloszenie-body { flex: 1; min-width: 0; }
.ogloszenie-title { font-family: "Raleway", Georgia, serif; font-size: .97rem; font-weight: 700; color: #2d2a26; margin: 0 0 6px; }
.ogloszenie-body p { font-size: .92rem; color: #3a3530; line-height: 1.6; margin: 0; }
