/* ── Article / Poradnik styles ───────────────────────────────── */

.art-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.art-nav {
  background: var(--navy-dk);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.art-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.art-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
}
.art-nav__logo img { border-radius: 8px; width: 36px; height: 36px; }

/* BUTTONS */
.art-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  cursor: pointer;
}
.art-btn:hover { opacity: .88; transform: translateY(-1px); }
.art-btn--cta { background: var(--orange); color: #fff; }
.art-btn--primary { background: var(--orange); color: #fff; }
.art-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.art-btn--lg { font-size: 16px; padding: 14px 30px; }

/* BREADCRUMB */
.art-breadcrumb { padding: 20px 0 0; }
.art-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.art-breadcrumb li + li::before { content: '/'; margin-right: 6px; }
.art-breadcrumb a { color: var(--navy); text-decoration: none; }
.art-breadcrumb a:hover { text-decoration: underline; }

/* ARTICLE HEADER */
.art-main { padding: 0 0 80px; background: var(--bg); }
.art-header { padding: 32px 0 28px; }
.art-header__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--muted);
}
.art-tag {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.art-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.18;
  color: var(--navy-dk);
  margin-bottom: 18px;
}
.art-header__lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

/* HERO IMAGE */
.art-hero-img {
  margin: 0 0 48px;
}
.art-hero-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

/* ARTICLE BODY */
.art-body h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--navy-dk);
  margin: 44px 0 14px;
}
.art-body h2:first-child { margin-top: 0; }
.art-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.art-body ul {
  margin: 8px 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.art-body ul li {
  padding: 5px 0 5px 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.art-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* CALLOUT */
.art-callout {
  background: rgba(42,61,99,.07);
  border-left: 4px solid var(--navy);
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy-dk);
}

/* INLINE CTA */
.art-cta-inline {
  background: var(--bg-soft);
  border: 1px solid rgba(42,61,99,.12);
  border-radius: 16px;
  padding: 24px 26px;
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.art-cta-inline p {
  flex: 1 1 300px;
  font-size: 15px;
  margin: 0;
  color: var(--text);
}

/* DOCUMENT LIST */
.art-doc-list { margin: 20px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.art-doc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
}
.art-doc-item__num {
  background: var(--navy-dk);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.art-doc-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy-dk);
  margin-bottom: 4px;
}
.art-doc-item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* FAQ */
.art-faq { margin: 20px 0 32px; }
.art-faq details {
  border-bottom: 1px solid rgba(42,61,99,.12);
}
.art-faq summary {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-dk);
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.art-faq summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s;
}
.art-faq details[open] summary::after { transform: rotate(45deg); }
.art-faq details p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  padding-bottom: 16px;
  margin: 0;
}

/* CHECKLIST */
.art-checklist {
  background: #fff;
  border-radius: 16px;
  padding: 24px 26px;
  margin: 20px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.art-checklist label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  line-height: 1.5;
}
.art-checklist input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--orange);
}

/* END CTA BOX */
.art-cta-box {
  margin-top: 60px;
  background: var(--navy-dk);
  border-radius: 24px;
  overflow: hidden;
}
.art-cta-box__inner {
  padding: 48px 40px;
  color: #fff;
  text-align: center;
}
.art-cta-box__inner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: 14px;
}
.art-cta-box__inner > p {
  font-size: 16px;
  opacity: .85;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.art-cta-box__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}
.art-cta-box__note {
  font-size: 13px;
  opacity: .5;
  margin: 0 !important;
}

/* FOOTER */
.art-footer {
  background: #111927;
  color: rgba(255,255,255,.5);
  padding: 24px 0;
  font-size: 13px;
}
.art-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.art-footer nav { display: flex; gap: 20px; }
.art-footer a { color: rgba(255,255,255,.5); text-decoration: none; }
.art-footer a:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .art-cta-box__inner { padding: 32px 24px; }
  .art-cta-inline { flex-direction: column; }
  .art-header h1 { font-size: 24px; }
}
