.lse-widget {
	--lse-ink: #111111;
	--lse-body: #3a3a3a;
	--lse-bg: #ffffff;
	--lse-dark-bg: #111111;
	--lse-grey-light: #e2e0dc;
	font-family: Oswald, system-ui, sans-serif;
	color: var(--lse-body);
	box-sizing: border-box;
}

button.lse-cat-card
{
    padding: 0px;
    background-color: #ffffff !important;
    border-color: #ccc;
}
.lse-cat-frame img.lse-cat-img {
    height: 100% !important;
}
span.lse-cat-body {
    text-align: left;
}

.lse-widget *, .lse-widget *::before, .lse-widget *::after { box-sizing: inherit; }

.lse-font-display {
	font-family: Oswald, system-ui, sans-serif;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.lse-eyebrow {
	font-size: 12px;
	letter-spacing: 0.12em;
	color: rgba(17,17,17,0.55);
	margin: 0 0 10px;
}
.lse-eyebrow-light { color: rgba(255,255,255,0.55); }

.lse-title {
	font-size: 28px;
	line-height: 1.15;
	color: var(--lse-ink);
	margin: 0;
}
.lse-title-light { color: #ffffff; }
@media (min-width: 1024px) { .lse-title { font-size: 38px; } }

.lse-subtitle {
	margin: 14px 0 0;
	font-size: 15px;
	line-height: 1.6;
	max-width: 640px;
	color: var(--lse-body);
}
.lse-subtitle-light { color: rgba(255,255,255,0.7); }

.lse-intro { margin-bottom: 40px; }

/* ---------------- Categories section ---------------- */
.lse-categories {
	background: var(--lse-bg);
	padding: 56px 20px;
}
@media (min-width: 1024px) { .lse-categories { padding: 88px 32px; } }

.lse-cat-grid {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 640px) { .lse-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .lse-cat-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.lse-cat-card {
	display: block;
	width: 100%;
	text-align: left;
	background: #fff;
	border: 1px solid var(--lse-grey-light);
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	padding: 0;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.lse-cat-card:hover,
.lse-cat-card.is-active {
	border-color: var(--lse-ink);
	box-shadow: 0 10px 30px rgba(17,17,17,0.12);
	transform: translateY(-2px);
}

.lse-cat-frame {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--lse-grey-light);
}
.lse-cat-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .7s ease;
}
.lse-cat-card:hover .lse-cat-img { transform: scale(1.05); }

.lse-cat-body { display: block; padding: 20px; }
.lse-cat-name { display: block; font-size: 18px; font-weight: 600; color: var(--lse-ink); }
.lse-cat-desc { display: block; margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--lse-body); }
.lse-cat-count { display: block; margin-top: 10px; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(17,17,17,0.4); }

.lse-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--lse-ink);
}
.lse-arrow { width: 14px; height: 14px; }
.lse-cat-card:hover .lse-link-arrow { text-decoration: underline; }

/* ---------------- Sub-services (cuts) section ---------------- */
.lse-sub-section {
	background: var(--lse-dark-bg);
	color: #ffffff;
	padding: 56px 20px;
}
@media (min-width: 1024px) { .lse-sub-section { padding: 88px 32px; } }
.lse-sub-section[hidden] { display: none; }

/* Category tabs — lets people switch categories from down here instead of
   scrolling back up to the image grid. */
.lse-tabs-scroll {
	max-width: 1280px;
	margin: 0 auto 32px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.lse-tabs-scroll::-webkit-scrollbar { display: none; }

.lse-tabs {
	display: flex;
	gap: 10px;
	width: max-content;
	min-width: 100%;
}

.lse-tab {
	flex-shrink: 0;
	padding: 10px 20px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.25);
	background: transparent;
	color: rgba(255,255,255,0.85);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.lse-tab:hover { border-color: rgba(255,255,255,0.6); color: #ffffff; }
.lse-tab.is-active {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--lse-ink);
}

.lse-sub-grid {
	max-width: 1280px;
	margin: 0 auto;
}

.lse-sub-group { display: grid; grid-template-columns: 1fr; gap: 20px; }
.lse-sub-group[hidden] { display: none; }
@media (min-width: 640px) { .lse-sub-group { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .lse-sub-group { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.lse-sub-card {
	border: 1px solid rgba(255,255,255,0.15);
	background: rgba(255,255,255,0.04);
	border-radius: 6px;
	padding: 24px;
	transition: background .2s ease, border-color .2s ease;
}
.lse-sub-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); }

.lse-sub-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lse-sub-card-name { font-size: 17px; color: #fff; margin: 0; }
.lse-sub-card-icon { width: 16px; height: 16px; flex-shrink: 0; color: rgba(255,255,255,0.4); }
.lse-sub-card-icon svg { width: 100%; height: 100%; }

.lse-sub-card-desc { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); }

.lse-sub-card-meta {
	display: flex;
	gap: 14px;
	margin: 14px 0 0;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
}

.lse-book-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	font-size: 12px;
	color: #fff;
	text-decoration: none;
	transition: color .15s ease;
}
.lse-book-link:hover { color: rgba(255,255,255,0.7); }
.lse-book-link:hover .lse-arrow { transform: translateX(2px); }
.lse-book-link .lse-arrow { transition: transform .15s ease; }
