html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; }
.jjo-page * { box-sizing: border-box; }
.jjo-page {
	width: 100%;
	background: #fbeee8;
	background-image: "jjo-assets/tło na szablon.png";
	font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #2b2b2b;
	margin: 0;
}
.jjo-page a { text-decoration: none; color: inherit; }
.jjo-page ul { list-style: none; margin: 0; padding: 0; }

/* Hero banner */
.jjo-hero { width: 100%; line-height: 0; background: #000; }
.jjo-hero img { width: 100%; height: auto; display: block; }

/* Nav */
.jjo-nav { width: 100%; background: #fffaf7; border-bottom: 1px solid #f0dcd4; position: relative; z-index: 5; }
.jjo-nav__inner {
	width: 100%; margin: 0 auto; padding: 12px 32px;
	display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.jjo-nav__logo img { width: 56px; height: 56px; border-radius: 50%; display: block; }
.jjo-nav__menu { display: flex; align-items: center; gap: 26px; flex: 1; flex-wrap: wrap; }
.jjo-nav__menu a {
	display: flex; flex-direction: column; align-items: center; gap: 4px;
	font-size: 12px; font-weight: 700; letter-spacing: .04em; color: #3a2c2c;
	text-transform: uppercase; white-space: nowrap;
}
.jjo-nav__menu a:hover { color: #b3273f; }
.jjo-nav__menu .jjo-ico { font-size: 18px; }
.jjo-nav__search { font-size: 18px; margin-left: auto; }

/* Layout */
.jjo-wrap { max-width: 1200px; margin: 0 auto; padding: 32px 24px; display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .jjo-wrap { grid-template-columns: 1fr; } .jjo-nav__menu { gap: 16px; } }

.jjo-card { background: #fff; border-radius: 16px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,.04); }

/* Section header */
.jjo-section-header { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 16px; padding: 18px 22px; margin-bottom: 18px; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.jjo-section-header .jjo-flower-badge { background: #fbdcdc; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.jjo-section-header h2 { margin: 0 0 4px; font-size: 18px; letter-spacing: .03em; color: #b3273f; }
.jjo-section-header p { margin: 0; font-size: 13px; color: #7a7a7a; }
.jjo-section-header .jjo-branch { margin-left: auto; font-size: 22px; opacity: .7; }

/* Post cards */
.jjo-posts { display: flex; flex-direction: column; gap: 18px; }
.jjo-post-card { background: #fff; border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 220px 1fr; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
@media (max-width: 640px) { .jjo-post-card { grid-template-columns: 1fr; } }
.jjo-post-card__media { position: relative; }
.jjo-thumb-img, .jjo-thumb-placeholder { width: 100%; height: 100%; min-height: 180px; object-fit: cover; display: block; }
.jjo-thumb-placeholder { background: linear-gradient(135deg,#f3d9d9,#e9c7d8); display: flex; align-items: center; justify-content: center; font-size: 34px; }
.jjo-ribbon { position: absolute; left: 0; bottom: 14px; background: #8b1e2e; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 5px 12px 5px 10px; border-radius: 0 6px 6px 0; text-transform: uppercase; }
.jjo-post-card__body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.jjo-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; width: fit-content; }
.jjo-post-card__body h3 { margin: 2px 0 0; font-size: 18px; color: #241c1c; }
.jjo-post-card__meta { font-size: 12px; color: #9a8f8f; font-weight: 600; }
.jjo-post-card__desc { font-size: 13px; color: #6b6b6b; line-height: 1.5; margin: 2px 0 6px; }
.jjo-post-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.jjo-post-card__stats { font-size: 12px; color: #9a8f8f; display: flex; gap: 14px; }
.jjo-btn { font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 20px; }

.jjo-more-wrap { text-align: center; margin-top: 22px; }
.jjo-btn-outline { display: inline-block; border: 1.5px solid #e7b9b9; background: #fdeceb; color: #a5233a; font-weight: 700; font-size: 13px; padding: 10px 22px; border-radius: 24px; }

/* Sidebar */
.jjo-sidebar { display: flex; flex-direction: column; gap: 18px; }
.jjo-card h4 { margin: 0 0 14px; font-size: 14px; letter-spacing: .04em; color: #b3273f; display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.jjo-cat-list li a { display: flex; align-items: center; gap: 10px; padding: 10px 4px; font-size: 14px; font-weight: 600; color: #3a2c2c; border-bottom: 1px solid #f4e9e6; }
.jjo-cat-list li:last-child a { border-bottom: none; }
.jjo-cat-list li a .jjo-chevron { margin-left: auto; color: #cbb; }

.jjo-pop-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 10px; }
.jjo-pop-item { display: flex; align-items: center; gap: 12px; }
.jjo-pop-item .jjo-thumb-img, .jjo-pop-item .jjo-thumb-placeholder { width: 56px; height: 44px; min-height: 44px; border-radius: 8px; flex-shrink: 0; font-size: 16px; }
.jjo-pop-item .jjo-pop-title { font-size: 13px; font-weight: 700; color: #241c1c; line-height: 1.3; }
.jjo-pop-item .jjo-pop-meta { font-size: 12px; color: #9a8f8f; }
.jjo-see-more { font-size: 12px; font-weight: 700; color: #b3273f; }

.jjo-join { text-align: left; }
.jjo-fb { width: 46px; height: 46px; border-radius: 50%; background: #1877f2; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; }

/* Footer */
.jjo-footer { background: #fbeee8; border-top: 2px dotted #e9c9c0; padding: 26px 24px; text-align: center; }
.jjo-footer__links { font-size: 12px; font-weight: 700; color: #6b5757; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.jjo-footer__links span { color: #d9b8b8; }
.jjo-footer__copy { font-size: 12px; color: #9a8f8f; }