/* LiquorCounter Blog Design — front-end styles
   Colors/fonts come from CSS variables injected inline based on Settings → LiquorCounter Blog Design.
   Background is white by default. */

.lcbd-article-wrap {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	font-family: var(--lcbd-body-font);
	color: var(--lcbd-text);
	background: var(--lcbd-bg);
	padding: 24px;
}

.lcbd-article-body { flex: 1 1 auto; min-width: 0; }

/* Breadcrumb */
.lcbd-breadcrumb { font-size: 13px; color: #6b7280; margin-bottom: 14px; }
.lcbd-breadcrumb a { color: var(--lcbd-primary); text-decoration: none; font-weight: 600; }
.lcbd-breadcrumb a:hover { text-decoration: underline; }
.lcbd-breadcrumb-current { color: #6b7280; }

/* Hero */
.lcbd-hero { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 18px; min-height: 220px; background: var(--lcbd-primary); }
.lcbd-hero .lcbd-hero-img { width: 100%; height: 100%; max-height: 380px; object-fit: cover; display: block; }
.lcbd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.5) 100%); }
.lcbd-hero-caption { position: absolute; left: 20px; bottom: 16px; }
.lcbd-hero-chip { background: var(--lcbd-secondary); color: #1F2933; font-family: var(--lcbd-heading-font); font-weight: 600; font-size: 13px; padding: 6px 16px; border-radius: 999px; display: inline-block; }

/* Meta row */
.lcbd-meta-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #6b7280; margin-bottom: 22px; flex-wrap: wrap; }
.lcbd-meta-dot { opacity: .5; }

/* Prose / article content */
.lcbd-prose { font-size: 17px; line-height: 1.75; }
.lcbd-prose h1, .lcbd-prose h2, .lcbd-prose h3, .lcbd-prose h4 {
	font-family: var(--lcbd-heading-font);
	color: var(--lcbd-text);
	font-weight: 700;
	line-height: 1.3;
	scroll-margin-top: 24px;
}
.lcbd-prose h2 { font-size: 26px; margin: 44px 0 16px; padding-top: 18px; border-top: 3px solid var(--lcbd-primary); }
.lcbd-prose h3 { font-size: 20px; margin: 28px 0 10px; color: var(--lcbd-primary); }
.lcbd-prose p { margin: 0 0 18px; }
.lcbd-prose a { color: var(--lcbd-primary); font-weight: 600; }
.lcbd-prose strong { color: var(--lcbd-text); }
.lcbd-prose ul, .lcbd-prose ol { margin: 0 0 20px; padding-left: 4px; list-style: none; }
.lcbd-prose ul li, .lcbd-prose ol li {
	position: relative;
	padding: 8px 0 8px 30px;
	margin-bottom: 4px;
}
.lcbd-prose ul li::before {
	content: "";
	position: absolute; left: 0; top: 16px;
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--lcbd-secondary);
}
.lcbd-prose blockquote {
	background: #F9FAFB;
	border-left: 5px solid var(--lcbd-primary);
	border-radius: 10px;
	padding: 18px 22px;
	margin: 24px 0;
	font-style: italic;
}
.lcbd-prose table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.lcbd-prose table th { background: var(--lcbd-primary); color: #fff; font-family: var(--lcbd-heading-font); padding: 12px; text-align: left; }
.lcbd-prose table td { padding: 12px; border-bottom: 1px solid #E5E7EB; }
.lcbd-prose img { border-radius: 14px; max-width: 100%; height: auto; }

/* Sticky TOC sidebar */
.lcbd-toc-sidebar { flex: 0 0 260px; position: sticky; top: 24px; }
.lcbd-toc-inner {
	background: #F9FAFB;
	border: 1px solid #E5E7EB;
	border-radius: 14px;
	padding: 22px;
}
.lcbd-toc-title { font-family: var(--lcbd-heading-font); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--lcbd-primary); margin: 0 0 12px; }
.lcbd-toc-list { list-style: none; margin: 0 0 18px; padding: 0; }
.lcbd-toc-list li { margin-bottom: 10px; }
.lcbd-toc-list a { color: var(--lcbd-text); text-decoration: none; font-size: 14px; line-height: 1.4; display: block; border-left: 3px solid transparent; padding-left: 10px; transition: border-color .15s, color .15s; }
.lcbd-toc-list a:hover, .lcbd-toc-list a.lcbd-active { border-color: var(--lcbd-secondary); color: var(--lcbd-primary); font-weight: 600; }
.lcbd-toc-cta {
	display: block; text-align: center;
	background: var(--lcbd-primary); color: #fff !important;
	font-family: var(--lcbd-heading-font); font-weight: 600;
	padding: 12px; border-radius: 999px; text-decoration: none;
}
.lcbd-toc-cta:hover { filter: brightness(1.1); }

/* CTA banner */
.lcbd-cta-banner {
	background: var(--lcbd-primary);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	margin: 36px 0;
}
.lcbd-cta-heading { color: #fff; font-family: var(--lcbd-heading-font); font-weight: 700; font-size: 20px; margin: 0 0 16px; }
.lcbd-cta-button {
	display: inline-block;
	background: var(--lcbd-secondary); color: #1F2933 !important;
	font-family: var(--lcbd-heading-font); font-weight: 700;
	padding: 12px 30px; border-radius: 999px; text-decoration: none;
}
.lcbd-cta-button:hover { filter: brightness(1.05); }

/* FAQ accordion */
.lcbd-faq-group { margin: 36px 0; }
.lcbd-faq-title { font-family: var(--lcbd-heading-font); font-size: 24px; margin-bottom: 16px; }
.lcbd-faq-item { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.lcbd-faq-question {
	width: 100%; display: flex; justify-content: space-between; align-items: center;
	background: none; border: none; cursor: pointer;
	padding: 18px 20px; text-align: left;
	font-family: var(--lcbd-heading-font); font-weight: 600; font-size: 16px; color: var(--lcbd-text);
}
.lcbd-faq-icon { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.lcbd-faq-icon::before, .lcbd-faq-icon::after { content: ""; position: absolute; background: var(--lcbd-primary); border-radius: 2px; transition: transform .2s; }
.lcbd-faq-icon::before { width: 100%; height: 3px; top: 8.5px; left: 0; }
.lcbd-faq-icon::after { width: 3px; height: 100%; left: 8.5px; top: 0; }
.lcbd-faq-item.lcbd-open .lcbd-faq-icon::after { transform: scaleY(0); }
.lcbd-faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 20px; }
.lcbd-faq-answer p { margin: 0 0 14px; }
.lcbd-faq-item.lcbd-open .lcbd-faq-answer { padding-bottom: 18px; }

/* Related reads */
.lcbd-related { margin-top: 40px; }
.lcbd-related h2 { font-family: var(--lcbd-heading-font); font-size: 24px; margin-bottom: 18px; }
.lcbd-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.lcbd-related-card { display: block; background: #fff; border: 1px solid #E5E7EB; border-radius: 14px; overflow: hidden; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.lcbd-related-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.lcbd-related-thumb img { width: 100%; height: 140px; object-fit: cover; display: block; }
.lcbd-related-body { padding: 14px 16px; }
.lcbd-related-cat { color: var(--lcbd-primary); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.lcbd-related-body h3 { font-family: var(--lcbd-heading-font); font-size: 15px; margin: 6px 0 0; color: var(--lcbd-text); line-height: 1.35; }

/* Sticky Call Now button */
.lcbd-sticky-call {
	position: fixed; right: 22px; bottom: 22px; z-index: 999;
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--lcbd-call);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 16px rgba(0,0,0,.25);
	transition: transform .15s;
}
.lcbd-sticky-call:hover { transform: scale(1.06); }

/* Responsive */
@media (max-width: 880px) {
	.lcbd-article-wrap { flex-direction: column; padding: 16px; }
	.lcbd-toc-sidebar { position: static; width: 100%; flex-basis: auto; order: 2; }
	.lcbd-article-body { order: 1; }
}
