/* Elevate Phone — Single article page styling.
   Article typography is scoped to .eb-article (a native Elementor CSS class on
   the Post Content widget); sidebar helpers are scoped to their own classes. */

/* ---------- Layout helpers ---------- */
/* Main column sizes from the remaining row space so it never overflows. */
.eb-artmain { flex: 1 1 0 !important; min-width: 0; }
/* Rounded featured image. */
.eb-featimg img { border-radius: 14px; display: block; width: 100%; height: auto; }
/* Circular author avatar. */
.eb-avatar img { object-fit: cover; }

/* ---------- Article body typography ---------- */
.eb-article { color: #41506B; font-family: "Inter", sans-serif; }
.eb-article > .elementor-widget-container > *:first-child { margin-top: 0; }
.eb-article p {
	font-size: 16px;
	line-height: 1.75;
	color: #41506B;
	margin: 0 0 18px;
}
.eb-article h2 {
	font-family: "Sora", sans-serif;
	font-weight: 800;
	font-size: 30px;
	line-height: 1.25;
	color: #0A1B3A;
	margin: 40px 0 14px;
}
.eb-article h3 {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 19px;
	line-height: 1.3;
	color: #0A1B3A;
	margin: 26px 0 12px;
}
/* Blue sub-headings (e.g. Cost Efficiency, Flexibility) under "Key Differences" */
.eb-article h4 {
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #1B62E0;
	margin: 24px 0 10px;
}
.eb-article strong { color: #0A1B3A; font-weight: 700; }
.eb-article ul {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}
.eb-article li {
	position: relative;
	padding-left: 26px;
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.6;
	color: #41506B;
}
.eb-article li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #C7D0DE;
}

/* ---------- Category pill — shrink to its text on every breakpoint ---------- */
/* Elementor only emits the container Width control at >=768px, so the native
   fit-content snaps back to full width on tablet/mobile. Force it here. */
.eb-pill {
	width: -moz-fit-content !important;
	width: fit-content !important;
	max-width: 100%;
	align-self: flex-start;
	flex: 0 0 auto !important;
}

/* ---------- Categories widget (native WP categories widget) ---------- */
/* Hide the widget's own title — the card already has a styled "Categories" heading. */
.eb-cats > .elementor-widget-container > h5,
.eb-cats h5.widgettitle,
.eb-cats h5 { display: none; }
.eb-cats nav { display: block; }
.eb-cats ul { list-style: none; margin: 0; padding: 0; }
.eb-cats li { border-bottom: 1px solid #EDF1F7; }
.eb-cats li:last-child { border-bottom: none; }
.eb-cats li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 2px;
	color: #0A1B3A;
	font-family: "Inter", sans-serif;
	font-weight: 500;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.15s ease;
}
.eb-cats li a:hover { color: #1B62E0; }
.eb-cats li a::after {
	content: "";
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1.5px solid #1B62E0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='12' viewBox='0 0 8 12' fill='none'%3E%3Cpath d='M1.5 1L6.5 6L1.5 11' stroke='%231B62E0' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center center no-repeat;
}

/* ---------- Related Blog list ---------- */
.eb-related { display: flex; flex-direction: column; gap: 20px; }
.eb-related__item { display: flex; gap: 14px; align-items: flex-start; }
.eb-related__thumb {
	flex: 0 0 84px;
	width: 84px;
	height: 66px;
	border-radius: 10px;
	overflow: hidden;
	display: block;
	background: #EEF2F8;
}
.eb-related__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eb-related__ph { display: block; width: 100%; height: 100%; }
.eb-related__text { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.eb-related__title {
	font-family: "Sora", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.35;
	color: #0A1B3A;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.eb-related__title:hover { color: #1B62E0; }
.eb-related__date {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	color: #7A88A3;
}
.eb-related__date svg { width: 12px; height: 12px; }
.eb-related__link {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 12px;
	color: #1B62E0;
	text-decoration: none;
}
.eb-related__link:hover { text-decoration: underline; }

/* ---------- View Profile button (full-width in the author card) ---------- */
.eb-viewbtn { width: 100%; }
.eb-viewbtn .elementor-button {
	width: 100%;
	justify-content: center;
	background-color: #1B62E0;
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(27, 98, 224, 0.45);
	transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.eb-viewbtn .elementor-button:hover,
.eb-viewbtn .elementor-button:focus {
	background-color: #1550C4;
	color: #ffffff;
	box-shadow: 0 14px 28px rgba(27, 98, 224, 0.55);
	transform: translateY(-1px);
}

/* ---------- Share icons — LinkedIn / X / YouTube, rounded-square outline (Figma) ---------- */
.eb-share--custom { display: flex; gap: 12px; }
.eb-share__btn {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #1B62E0;
	border-radius: 10px;
	color: #1B62E0;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}
.eb-share__btn svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.eb-share__btn:hover,
.eb-share__btn:focus { background-color: #1B62E0; color: #ffffff; }
