/* SajhaSabal Homepage V2 */

.ss-home-v2 {
	padding: 28px 0 55px;
	background: #fff;
}

.ss-home-hero-v2 {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(330px, 0.95fr);
	gap: 30px;
	align-items: stretch;
	margin-bottom: 34px;
}

.ss-home-main-story {
	position: relative;
	min-height: 550px;
	overflow: hidden;
	background: #101010;
	border-radius: 12px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.ss-home-main-image,
.ss-home-main-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ss-home-main-image img {
	object-fit: cover;
}

.ss-home-main-gradient {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.02) 25%,
			rgba(0, 0, 0, 0.94) 100%
		);
}

.ss-home-main-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: clamp(28px, 5vw, 55px);
	color: #fff;
}

.ss-home-category {
	display: inline-block;
	margin-bottom: 9px;
	color: var(--ss-red, #df1722);
	font-size: 14px;
	font-weight: 800;
}

.ss-home-main-content time {
	display: block;
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
}

.ss-home-main-content h1 {
	max-width: 850px;
	margin: 0 0 14px;
	font-size: clamp(34px, 4.5vw, 58px);
	line-height: 1.17;
}

.ss-home-main-content h1 a {
	color: #fff;
}

.ss-home-main-content p {
	max-width: 760px;
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.87);
	font-size: 18px;
	line-height: 1.7;
}

.ss-home-read-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	color: #fff;
	background: var(--ss-red, #df1722);
	border-radius: 6px;
	font-weight: 800;
}

.ss-home-read-more:hover {
	color: #fff;
	opacity: 0.92;
}

.ss-home-side-news {
	display: flex;
	flex-direction: column;
}

.ss-home-side-card {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	flex: 1;
	padding: 18px 0;
	border-bottom: 1px solid #e3e6ea;
}

.ss-home-side-card:first-child {
	padding-top: 0;
}

.ss-home-side-card:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.ss-home-side-image {
	display: block;
	width: 170px;
	height: 110px;
	overflow: hidden;
	background: #f1f3f5;
	border-radius: 8px;
}

.ss-home-side-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.ss-home-side-card:hover img {
	transform: scale(1.04);
}

.ss-home-side-content h2 {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.4;
}

.ss-home-side-content h2 a {
	color: #161616;
}

.ss-home-side-content time {
	color: #747b84;
	font-size: 13px;
}

.ss-home-v2-lower {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 32px;
	align-items: start;
}

.ss-home-v2-primary {
	min-width: 0;
}

.ss-home-v2-sidebar {
	min-width: 0;
}

.ss-home-section-heading {
	margin-bottom: 18px;
	border-left: 5px solid var(--ss-red, #df1722);
}

.ss-home-section-heading h2 {
	margin: 0;
	padding-left: 12px;
	font-size: 24px;
	line-height: 1.3;
}

.ss-highlight-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 38px;
}

.ss-highlight-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e6e8eb;
	border-radius: 9px;
	box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.ss-highlight-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
}

.ss-highlight-image {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f1f3f5;
}

.ss-highlight-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.ss-highlight-card:hover img {
	transform: scale(1.04);
}

.ss-highlight-category {
	position: absolute;
	left: 10px;
	bottom: 10px;
	padding: 5px 9px;
	color: #fff;
	background: var(--ss-red, #df1722);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
}

.ss-highlight-content {
	padding: 14px;
}

.ss-highlight-content h3 {
	margin: 0 0 12px;
	font-size: 17px;
	line-height: 1.5;
}

.ss-highlight-content h3 a {
	color: #161616;
}

.ss-highlight-content time {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #777e87;
	font-size: 12px;
}

.ss-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #8c929a;
	background:
		linear-gradient(
			135deg,
			#f4f5f7,
			#e5e8ec
		);
	font-weight: 800;
}

.ss-home-v2-sidebar .widget {
	margin-bottom: 25px;
	padding: 20px;
	background: #fff;
	border: 1px solid #e6e8eb;
	border-radius: 9px;
	box-shadow: 0 7px 22px rgba(0, 0, 0, 0.05);
}

.ss-home-v2-sidebar .widget-title {
	margin: 0 0 16px;
	padding-bottom: 11px;
	border-bottom: 3px solid var(--ss-red, #df1722);
	font-size: 20px;
}

@media (max-width: 1150px) {
	.ss-home-hero-v2 {
		grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
	}

	.ss-home-side-card {
		grid-template-columns: 130px minmax(0, 1fr);
	}

	.ss-home-side-image {
		width: 130px;
		height: 90px;
	}

	.ss-highlight-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.ss-home-hero-v2 {
		grid-template-columns: 1fr;
	}

	.ss-home-main-story {
		min-height: 500px;
	}

	.ss-home-side-news {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.ss-home-side-card {
		display: block;
		padding: 0 0 18px;
		border: 1px solid #e6e8eb;
		border-radius: 8px;
		overflow: hidden;
	}

	.ss-home-side-image {
		width: 100%;
		height: 170px;
		border-radius: 0;
	}

	.ss-home-side-content {
		padding: 14px;
	}

	.ss-home-v2-lower {
		grid-template-columns: 1fr;
	}

	.ss-home-v2-sidebar {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.ss-home-v2 {
		padding-top: 16px;
	}

	.ss-home-main-story {
		min-height: 440px;
		border-radius: 8px;
	}

	.ss-home-main-content {
		padding: 23px;
	}

	.ss-home-main-content h1 {
		font-size: 31px;
	}

	.ss-home-main-content p {
		display: none;
	}

	.ss-home-side-news,
	.ss-highlight-grid,
	.ss-home-v2-sidebar {
		grid-template-columns: 1fr;
	}

	.ss-home-side-image {
		height: 190px;
	}

	.ss-highlight-grid {
		gap: 15px;
	}
}

/* Homepage category blocks */
.ss-category-block-v2 {
	margin: 44px 0;
}

.ss-category-block-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid #eceef1;
}

.ss-category-block-heading h2 {
	position: relative;
	margin: 0;
	padding-left: 14px;
	font-size: 27px;
}

.ss-category-block-heading h2::before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 0;
	width: 5px;
	background: var(--ss-red, #df1722);
	border-radius: 3px;
}

.ss-category-block-heading > a {
	color: var(--ss-red, #df1722);
	font-weight: 800;
}

.ss-category-block-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 28px;
}

.ss-category-featured {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e8ec;
	border-radius: 10px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.ss-category-featured-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f1f3f5;
}

.ss-category-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.ss-category-featured:hover img {
	transform: scale(1.035);
}

.ss-category-featured-content {
	padding: 20px;
}

.ss-category-featured-content time,
.ss-category-list-item time {
	color: #777e87;
	font-size: 13px;
}

.ss-category-featured-content h3 {
	margin: 9px 0 11px;
	font-size: 28px;
	line-height: 1.35;
}

.ss-category-featured-content h3 a,
.ss-category-list-item h3 a {
	color: #161616;
}

.ss-category-featured-content p {
	margin: 0;
	color: #5f6670;
	font-size: 16px;
	line-height: 1.65;
}

.ss-category-list {
	display: flex;
	flex-direction: column;
}

.ss-category-list-item {
	display: grid;
	grid-template-columns: 145px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	flex: 1;
	padding: 15px 0;
	border-bottom: 1px solid #e5e8ec;
}

.ss-category-list-item:first-child {
	padding-top: 0;
}

.ss-category-list-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.ss-category-list-image {
	display: block;
	width: 145px;
	height: 95px;
	overflow: hidden;
	background: #f1f3f5;
	border-radius: 7px;
}

.ss-category-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.22s ease;
}

.ss-category-list-item:hover img {
	transform: scale(1.04);
}

.ss-category-list-item h3 {
	margin: 0 0 8px;
	font-size: 19px;
	line-height: 1.42;
}

@media (max-width: 850px) {
	.ss-category-block-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.ss-category-block-heading h2 {
		font-size: 23px;
	}

	.ss-category-featured-content h3 {
		font-size: 23px;
	}

	.ss-category-list-item {
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 12px;
	}

	.ss-category-list-image {
		width: 110px;
		height: 75px;
	}

	.ss-category-list-item h3 {
		font-size: 16px;
	}
}

/* Homepage recent news */
.ss-recent-news-v2 {
	margin: 38px 0 44px;
	padding: 26px;
	background: #fff;
	border: 1px solid #e5e8ec;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(15, 20, 28, 0.06);
}

.ss-recent-news-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #eceef1;
}

.ss-recent-news-heading span {
	display: block;
	margin-bottom: 4px;
	color: var(--ss-red, #df1722);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.ss-recent-news-heading h2 {
	position: relative;
	margin: 0;
	padding-left: 14px;
	font-size: 28px;
	line-height: 1.25;
}

.ss-recent-news-heading h2::before {
	content: "";
	position: absolute;
	top: 3px;
	bottom: 3px;
	left: 0;
	width: 5px;
	background: var(--ss-red, #df1722);
	border-radius: 3px;
}

.ss-recent-news-heading > a {
	flex: 0 0 auto;
	color: var(--ss-red, #df1722);
	font-weight: 800;
}

.ss-recent-news-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 30px;
}

.ss-recent-news-item {
	position: relative;
	display: grid;
	grid-template-columns: 145px minmax(0, 1fr) 28px;
	gap: 16px;
	align-items: center;
	min-width: 0;
	padding: 17px 0;
	border-bottom: 1px solid #e8eaed;
}

.ss-recent-news-item:nth-last-child(-n+2) {
	border-bottom: 0;
}

.ss-recent-news-image {
	display: block;
	width: 145px;
	height: 95px;
	overflow: hidden;
	background: #f1f3f5;
	border-radius: 8px;
}

.ss-recent-news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.ss-recent-news-item:hover .ss-recent-news-image img {
	transform: scale(1.045);
}

.ss-recent-news-content {
	min-width: 0;
}

.ss-recent-news-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin-bottom: 6px;
	color: #777f89;
	font-size: 12px;
}

.ss-recent-news-meta span {
	color: var(--ss-red, #df1722);
	font-weight: 800;
}

.ss-recent-news-meta time::before {
	content: "•";
	margin-right: 9px;
	color: #b4bac2;
}

.ss-recent-news-content h3 {
	margin: 0 0 7px;
	font-size: 19px;
	line-height: 1.42;
}

.ss-recent-news-content h3 a {
	color: #171a1f;
}

.ss-recent-news-content h3 a:hover {
	color: var(--ss-red, #df1722);
}

.ss-recent-news-content p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #636b75;
	font-size: 13px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ss-recent-news-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #747b84;
	border: 1px solid #dfe3e8;
	border-radius: 50%;
	transition:
		color 0.18s ease,
		background 0.18s ease,
		transform 0.18s ease;
}

.ss-recent-news-item:hover .ss-recent-news-arrow {
	color: #fff;
	background: var(--ss-red, #df1722);
	border-color: var(--ss-red, #df1722);
	transform: translateX(2px);
}

@media (max-width: 950px) {
	.ss-recent-news-list {
		grid-template-columns: 1fr;
	}

	.ss-recent-news-item:nth-last-child(-n+2) {
		border-bottom: 1px solid #e8eaed;
	}

	.ss-recent-news-item:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 600px) {
	.ss-recent-news-v2 {
		margin: 28px 0 36px;
		padding: 18px 14px;
	}

	.ss-recent-news-heading {
		align-items: flex-start;
	}

	.ss-recent-news-heading h2 {
		font-size: 24px;
	}

	.ss-recent-news-item {
		grid-template-columns: 105px minmax(0, 1fr);
		gap: 12px;
		padding: 14px 0;
	}

	.ss-recent-news-image {
		width: 105px;
		height: 74px;
	}

	.ss-recent-news-content h3 {
		font-size: 16px;
	}

	.ss-recent-news-content p,
	.ss-recent-news-arrow {
		display: none;
	}
}

/* Homepage foreign-employment section */
.ss-home-employment {
	margin: 42px 0;
	padding: 26px;
	background:
		linear-gradient(
			145deg,
			#fff 0%,
			#fff 70%,
			#fff7f7 100%
		);
	border: 1px solid #e6e8eb;
	border-radius: 13px;
	box-shadow: 0 10px 32px rgba(15, 20, 28, 0.06);
}

.ss-home-employment-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
	padding-bottom: 15px;
	border-bottom: 2px solid #eceef1;
}

.ss-home-employment-kicker {
	display: block;
	margin-bottom: 4px;
	color: var(--ss-red, #df1722);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ss-home-employment-heading h2 {
	position: relative;
	margin: 0;
	padding-left: 14px;
	font-size: 29px;
	line-height: 1.25;
}

.ss-home-employment-heading h2::before {
	content: "";
	position: absolute;
	top: 3px;
	bottom: 3px;
	left: 0;
	width: 5px;
	background: var(--ss-red, #df1722);
	border-radius: 3px;
}

.ss-home-employment-heading > a {
	flex: 0 0 auto;
	color: var(--ss-red, #df1722);
	font-weight: 800;
}

.ss-home-employment-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
	gap: 28px;
}

.ss-home-employment-featured {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e4e7eb;
	border-radius: 11px;
}

.ss-home-employment-featured-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f1f3f5;
}

.ss-home-employment-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
}

.ss-home-employment-featured:hover img {
	transform: scale(1.035);
}

.ss-home-employment-featured-content {
	padding: 22px;
}

.ss-home-employment-featured-content time,
.ss-home-employment-item-content time {
	color: #757d87;
	font-size: 12px;
}

.ss-home-employment-featured-content h3 {
	margin: 9px 0 11px;
	font-size: 29px;
	line-height: 1.35;
}

.ss-home-employment-featured-content h3 a,
.ss-home-employment-item-content h3 a {
	color: #171a1f;
}

.ss-home-employment-featured-content h3 a:hover,
.ss-home-employment-item-content h3 a:hover {
	color: var(--ss-red, #df1722);
}

.ss-home-employment-featured-content p {
	margin: 0 0 19px;
	color: #616974;
	font-size: 15px;
	line-height: 1.7;
}

.ss-home-employment-read-more {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 17px;
	color: #fff;
	background: var(--ss-red, #df1722);
	border-radius: 6px;
	font-weight: 800;
}

.ss-home-employment-read-more:hover {
	color: #fff;
	opacity: 0.92;
}

.ss-home-employment-list {
	display: flex;
	flex-direction: column;
}

.ss-home-employment-item {
	display: grid;
	grid-template-columns: 145px minmax(0, 1fr);
	gap: 15px;
	align-items: center;
	flex: 1;
	padding: 16px 0;
	border-bottom: 1px solid #e5e8ec;
}

.ss-home-employment-item:first-child {
	padding-top: 0;
}

.ss-home-employment-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.ss-home-employment-item-image {
	display: block;
	width: 145px;
	height: 96px;
	overflow: hidden;
	background: #f1f3f5;
	border-radius: 8px;
}

.ss-home-employment-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.24s ease;
}

.ss-home-employment-item:hover img {
	transform: scale(1.045);
}

.ss-home-employment-item-content {
	min-width: 0;
}

.ss-home-employment-item-content h3 {
	margin: 5px 0 7px;
	font-size: 19px;
	line-height: 1.42;
}

.ss-home-employment-item-content p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #69717b;
	font-size: 13px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media (max-width: 900px) {
	.ss-home-employment-layout {
		grid-template-columns: 1fr;
	}

	.ss-home-employment-list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.ss-home-employment-item {
		display: block;
		padding: 0;
		overflow: hidden;
		background: #fff;
		border: 1px solid #e5e8ec;
		border-radius: 8px;
	}

	.ss-home-employment-item-image {
		width: 100%;
		height: 150px;
		border-radius: 0;
	}

	.ss-home-employment-item-content {
		padding: 14px;
	}
}

@media (max-width: 650px) {
	.ss-home-employment {
		padding: 18px 14px;
	}

	.ss-home-employment-heading h2 {
		font-size: 24px;
	}

	.ss-home-employment-featured-content h3 {
		font-size: 24px;
	}

	.ss-home-employment-list {
		grid-template-columns: 1fr;
	}

	.ss-home-employment-item {
		display: grid;
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 12px;
		align-items: center;
	}

	.ss-home-employment-item-image {
		width: 110px;
		height: 78px;
	}

	.ss-home-employment-item-content {
		padding: 10px 12px 10px 0;
	}

	.ss-home-employment-item-content h3 {
		font-size: 16px;
	}

	.ss-home-employment-item-content p {
		display: none;
	}
}

/* Homepage foreign-employment section */
.ss-home-employment {
	margin: 42px 0;
	padding: 26px;
	background:
		linear-gradient(
			145deg,
			#fff 0%,
			#fff 70%,
			#fff7f7 100%
		);
	border: 1px solid #e6e8eb;
	border-radius: 13px;
	box-shadow: 0 10px 32px rgba(15, 20, 28, 0.06);
}

.ss-home-employment-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
	padding-bottom: 15px;
	border-bottom: 2px solid #eceef1;
}

.ss-home-employment-kicker {
	display: block;
	margin-bottom: 4px;
	color: var(--ss-red, #df1722);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ss-home-employment-heading h2 {
	position: relative;
	margin: 0;
	padding-left: 14px;
	font-size: 29px;
	line-height: 1.25;
}

.ss-home-employment-heading h2::before {
	content: "";
	position: absolute;
	top: 3px;
	bottom: 3px;
	left: 0;
	width: 5px;
	background: var(--ss-red, #df1722);
	border-radius: 3px;
}

.ss-home-employment-heading > a {
	flex: 0 0 auto;
	color: var(--ss-red, #df1722);
	font-weight: 800;
}

.ss-home-employment-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
	gap: 28px;
}

.ss-home-employment-featured {
	overflow: hidden;
	background: #fff;
	border: 1px solid #e4e7eb;
	border-radius: 11px;
}

.ss-home-employment-featured-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f1f3f5;
}

.ss-home-employment-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease;
}

.ss-home-employment-featured:hover img {
	transform: scale(1.035);
}

.ss-home-employment-featured-content {
	padding: 22px;
}

.ss-home-employment-featured-content time,
.ss-home-employment-item-content time {
	color: #757d87;
	font-size: 12px;
}

.ss-home-employment-featured-content h3 {
	margin: 9px 0 11px;
	font-size: 29px;
	line-height: 1.35;
}

.ss-home-employment-featured-content h3 a,
.ss-home-employment-item-content h3 a {
	color: #171a1f;
}

.ss-home-employment-featured-content h3 a:hover,
.ss-home-employment-item-content h3 a:hover {
	color: var(--ss-red, #df1722);
}

.ss-home-employment-featured-content p {
	margin: 0 0 19px;
	color: #616974;
	font-size: 15px;
	line-height: 1.7;
}

.ss-home-employment-read-more {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 17px;
	color: #fff;
	background: var(--ss-red, #df1722);
	border-radius: 6px;
	font-weight: 800;
}

.ss-home-employment-read-more:hover {
	color: #fff;
	opacity: 0.92;
}

.ss-home-employment-list {
	display: flex;
	flex-direction: column;
}

.ss-home-employment-item {
	display: grid;
	grid-template-columns: 145px minmax(0, 1fr);
	gap: 15px;
	align-items: center;
	flex: 1;
	padding: 16px 0;
	border-bottom: 1px solid #e5e8ec;
}

.ss-home-employment-item:first-child {
	padding-top: 0;
}

.ss-home-employment-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.ss-home-employment-item-image {
	display: block;
	width: 145px;
	height: 96px;
	overflow: hidden;
	background: #f1f3f5;
	border-radius: 8px;
}

.ss-home-employment-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.24s ease;
}

.ss-home-employment-item:hover img {
	transform: scale(1.045);
}

.ss-home-employment-item-content {
	min-width: 0;
}

.ss-home-employment-item-content h3 {
	margin: 5px 0 7px;
	font-size: 19px;
	line-height: 1.42;
}

.ss-home-employment-item-content p {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #69717b;
	font-size: 13px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media (max-width: 900px) {
	.ss-home-employment-layout {
		grid-template-columns: 1fr;
	}

	.ss-home-employment-list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.ss-home-employment-item {
		display: block;
		padding: 0;
		overflow: hidden;
		background: #fff;
		border: 1px solid #e5e8ec;
		border-radius: 8px;
	}

	.ss-home-employment-item-image {
		width: 100%;
		height: 150px;
		border-radius: 0;
	}

	.ss-home-employment-item-content {
		padding: 14px;
	}
}

@media (max-width: 650px) {
	.ss-home-employment {
		padding: 18px 14px;
	}

	.ss-home-employment-heading h2 {
		font-size: 24px;
	}

	.ss-home-employment-featured-content h3 {
		font-size: 24px;
	}

	.ss-home-employment-list {
		grid-template-columns: 1fr;
	}

	.ss-home-employment-item {
		display: grid;
		grid-template-columns: 110px minmax(0, 1fr);
		gap: 12px;
		align-items: center;
	}

	.ss-home-employment-item-image {
		width: 110px;
		height: 78px;
	}

	.ss-home-employment-item-content {
		padding: 10px 12px 10px 0;
	}

	.ss-home-employment-item-content h3 {
		font-size: 16px;
	}

	.ss-home-employment-item-content p {
		display: none;
	}
}

/* Recent news + YouTube sidebar */
.ss-recent-youtube-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: start;
	margin: 38px 0 44px;
}

.ss-recent-youtube-layout .ss-recent-news-v2 {
	margin: 0;
}

.ss-youtube-sidebar {
	overflow: hidden;
	background:
		linear-gradient(
			145deg,
			#17191e 0%,
			#0e1014 100%
		);
	border: 1px solid #292c33;
	border-radius: 13px;
	box-shadow: 0 14px 38px rgba(15, 20, 28, 0.18);
}

.ss-youtube-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	padding: 20px 20px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ss-youtube-kicker {
	display: block;
	margin-bottom: 3px;
	color: #ff3541;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ss-youtube-heading h2 {
	position: relative;
	margin: 0;
	padding-left: 12px;
	color: #fff;
	font-size: 23px;
	line-height: 1.25;
}

.ss-youtube-heading h2::before {
	content: "";
	position: absolute;
	top: 3px;
	bottom: 3px;
	left: 0;
	width: 4px;
	background: #f00;
	border-radius: 3px;
}

.ss-youtube-heading > a {
	flex: 0 0 auto;
	color: #ff4651;
	font-size: 12px;
	font-weight: 800;
}

.ss-youtube-featured {
	padding: 18px 18px 8px;
}

.ss-youtube-featured-image {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #272a30;
	border-radius: 9px;
}

.ss-youtube-featured-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			to bottom,
			transparent 45%,
			rgba(0, 0, 0, 0.35) 100%
		);
}

.ss-youtube-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ss-youtube-featured:hover img {
	transform: scale(1.04);
}

.ss-youtube-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	background: #f00;
	border: 4px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.34);
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease;
}

.ss-youtube-featured:hover .ss-youtube-play {
	transform: translate(-50%, -50%) scale(1.08);
}

.ss-youtube-play span,
.ss-youtube-mini-play span {
	width: 0;
	height: 0;
	margin-left: 4px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 13px solid #fff;
}

.ss-youtube-featured-content {
	padding: 14px 2px;
}

.ss-youtube-featured-content h3 {
	margin: 0 0 8px;
	font-size: 19px;
	line-height: 1.45;
}

.ss-youtube-featured-content h3 a,
.ss-youtube-video-content h3 a {
	color: #fff;
}

.ss-youtube-featured-content h3 a:hover,
.ss-youtube-video-content h3 a:hover {
	color: #ff4651;
}

.ss-youtube-featured-content time,
.ss-youtube-video-content time {
	color: rgba(255, 255, 255, 0.56);
	font-size: 11px;
}

.ss-youtube-video-list {
	padding: 0 18px 15px;
}

.ss-youtube-video-item {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 13px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ss-youtube-video-image {
	position: relative;
	display: block;
	width: 112px;
	height: 67px;
	overflow: hidden;
	background: #282b31;
	border-radius: 7px;
}

.ss-youtube-video-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.24s ease;
}

.ss-youtube-video-item:hover img {
	transform: scale(1.05);
}

.ss-youtube-mini-play {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 31px;
	height: 31px;
	background: rgba(255, 0, 0, 0.92);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.ss-youtube-mini-play span {
	margin-left: 2px;
	border-top-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 8px;
}

.ss-youtube-video-content {
	min-width: 0;
}

.ss-youtube-video-content h3 {
	display: -webkit-box;
	margin: 0 0 6px;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.42;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media (max-width: 1050px) {
	.ss-recent-youtube-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 22px;
	}
}

@media (max-width: 900px) {
	.ss-recent-youtube-layout {
		grid-template-columns: 1fr;
	}

	.ss-youtube-sidebar {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.ss-youtube-heading {
		grid-column: 1 / -1;
	}

	.ss-youtube-video-list {
		padding-top: 18px;
	}
}

@media (max-width: 600px) {
	.ss-youtube-sidebar {
		display: block;
	}

	.ss-youtube-heading {
		padding: 17px 15px 14px;
	}

	.ss-youtube-featured {
		padding: 15px 15px 6px;
	}

	.ss-youtube-video-list {
		padding: 0 15px 13px;
	}
}

/* ==================================================
   YouTube main column + Recent news sidebar
================================================== */

.ss-youtube-main-layout {
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: start;
}

.ss-youtube-main-column {
	min-width: 0;
}

.ss-recent-news-sidebar {
	min-width: 0;
}

/* YouTube section becomes the main large content area */
.ss-youtube-main-column .ss-youtube-sidebar {
	display: block !important;
	overflow: hidden;
	background:
		linear-gradient(
			145deg,
			#17191e 0%,
			#0d0f13 100%
		);
	border-radius: 14px;
}

.ss-youtube-main-column .ss-youtube-heading {
	padding: 22px 24px 18px;
}

.ss-youtube-main-column .ss-youtube-heading h2 {
	font-size: 27px;
}

.ss-youtube-main-column .ss-youtube-featured {
	padding: 22px 24px 12px;
}

.ss-youtube-main-column .ss-youtube-featured-image {
	aspect-ratio: 16 / 9;
	border-radius: 11px;
}

.ss-youtube-main-column .ss-youtube-featured-content {
	padding: 18px 2px 20px;
}

.ss-youtube-main-column .ss-youtube-featured-content h3 {
	font-size: clamp(23px, 2.3vw, 32px);
	line-height: 1.4;
}

.ss-youtube-main-column .ss-youtube-play {
	width: 72px;
	height: 72px;
}

.ss-youtube-main-column .ss-youtube-video-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 0 24px 25px;
}

.ss-youtube-main-column .ss-youtube-video-item {
	display: block;
	min-width: 0;
	padding: 0;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 9px;
}

.ss-youtube-main-column .ss-youtube-video-image {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	border-radius: 0;
}

.ss-youtube-main-column .ss-youtube-video-content {
	padding: 13px;
}

.ss-youtube-main-column .ss-youtube-video-content h3 {
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.45;
}

/* Recent news becomes a compact sidebar */
.ss-recent-news-sidebar .ss-recent-news-v2 {
	margin: 0;
	padding: 20px;
	border-radius: 13px;
}

.ss-recent-news-sidebar .ss-recent-news-heading {
	align-items: flex-start;
	margin-bottom: 10px;
}

.ss-recent-news-sidebar .ss-recent-news-heading h2 {
	font-size: 23px;
}

.ss-recent-news-sidebar .ss-recent-news-heading > a {
	font-size: 12px;
}

.ss-recent-news-sidebar .ss-recent-news-list {
	display: block;
}

.ss-recent-news-sidebar .ss-recent-news-item {
	grid-template-columns: 105px minmax(0, 1fr);
	gap: 12px;
	padding: 14px 0;
}

.ss-recent-news-sidebar .ss-recent-news-image {
	width: 105px;
	height: 73px;
	border-radius: 7px;
}

.ss-recent-news-sidebar .ss-recent-news-content h3 {
	display: -webkit-box;
	margin-bottom: 5px;
	overflow: hidden;
	font-size: 15px;
	line-height: 1.42;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ss-recent-news-sidebar .ss-recent-news-content p,
.ss-recent-news-sidebar .ss-recent-news-arrow {
	display: none;
}

.ss-recent-news-sidebar .ss-recent-news-meta {
	gap: 5px;
	margin-bottom: 4px;
	font-size: 10px;
}

.ss-recent-news-sidebar .ss-recent-news-meta time::before {
	margin-right: 5px;
}

/* Sidebar height protection */
.ss-recent-news-sidebar .ss-recent-news-list {
	max-height: 890px;
	overflow-y: auto;
	scrollbar-width: thin;
}

.ss-recent-news-sidebar .ss-recent-news-list::-webkit-scrollbar {
	width: 5px;
}

.ss-recent-news-sidebar .ss-recent-news-list::-webkit-scrollbar-thumb {
	background: #d5d9de;
	border-radius: 5px;
}

@media (max-width: 1050px) {
	.ss-youtube-main-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 22px;
	}

	.ss-youtube-main-column .ss-youtube-video-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.ss-youtube-main-layout {
		grid-template-columns: 1fr;
	}

	.ss-recent-news-sidebar .ss-recent-news-list {
		max-height: none;
		overflow: visible;
	}

	.ss-recent-news-sidebar .ss-recent-news-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 22px;
	}
}

@media (max-width: 600px) {
	.ss-youtube-main-column .ss-youtube-heading {
		padding: 18px 15px 14px;
	}

	.ss-youtube-main-column .ss-youtube-heading h2 {
		font-size: 23px;
	}

	.ss-youtube-main-column .ss-youtube-featured {
		padding: 15px 15px 8px;
	}

	.ss-youtube-main-column .ss-youtube-featured-content h3 {
		font-size: 21px;
	}

	.ss-youtube-main-column .ss-youtube-play {
		width: 58px;
		height: 58px;
	}

	.ss-youtube-main-column .ss-youtube-video-list {
		grid-template-columns: 1fr;
		gap: 13px;
		padding: 0 15px 17px;
	}

	.ss-youtube-main-column .ss-youtube-video-item {
		display: grid;
		grid-template-columns: 120px minmax(0, 1fr);
		align-items: center;
	}

	.ss-youtube-main-column .ss-youtube-video-image {
		width: 120px;
		height: 78px;
		aspect-ratio: auto;
	}

	.ss-recent-news-sidebar .ss-recent-news-v2 {
		padding: 17px 14px;
	}

	.ss-recent-news-sidebar .ss-recent-news-list {
		display: block;
	}

	.ss-recent-news-sidebar .ss-recent-news-item {
		grid-template-columns: 100px minmax(0, 1fr);
	}

	.ss-recent-news-sidebar .ss-recent-news-image {
		width: 100px;
		height: 70px;
	}
}

/* ==================================================
   TV-style breaking-news ticker
================================================== */

.ss-tv-breaking {
	position: relative;
	z-index: 20;
	overflow: hidden;
	color: #171717;
	background: #fff;
	border-top: 1px solid #eceff2;
	border-bottom: 1px solid #dfe3e7;
	box-shadow: 0 4px 16px rgba(15, 20, 28, 0.06);
}

.ss-tv-breaking-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: stretch;
	min-height: 52px;
	padding: 0;
}

.ss-tv-breaking-label {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 0 23px 0 18px;
	color: #fff;
	background: var(--ss-red, #df1722);
	font-size: 15px;
	white-space: nowrap;
	clip-path: polygon(
		0 0,
		calc(100% - 16px) 0,
		100% 50%,
		calc(100% - 16px) 100%,
		0 100%
	);
}

.ss-tv-live-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	animation: ss-tv-live-pulse 1.4s infinite;
}

.ss-tv-flash {
	font-size: 16px;
	line-height: 1;
}

@keyframes ss-tv-live-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65);
	}

	70% {
		box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.ss-tv-ticker-window {
	position: relative;
	min-width: 0;
	overflow: hidden;
	background: #fff;
}

.ss-tv-ticker-window::before,
.ss-tv-ticker-window::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 45px;
	pointer-events: none;
}

.ss-tv-ticker-window::before {
	left: 0;
	background: linear-gradient(to right, #fff, transparent);
}

.ss-tv-ticker-window::after {
	right: 0;
	background: linear-gradient(to left, #fff, transparent);
}

.ss-tv-ticker-track {
	display: flex;
	align-items: center;
	width: max-content;
	min-height: 52px;
	will-change: transform;
	animation: ss-tv-ticker-scroll 55s linear infinite;
}

.ss-tv-ticker-window:hover .ss-tv-ticker-track,
.ss-tv-ticker-window:focus-within .ss-tv-ticker-track {
	animation-play-state: paused;
}

.ss-tv-ticker-group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.ss-tv-ticker-group a {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 0 24px;
	color: #20242a;
	font-size: 16px;
	font-weight: 600;
	line-height: 52px;
	white-space: nowrap;
}

.ss-tv-ticker-group a:hover {
	color: var(--ss-red, #df1722);
}

.ss-tv-separator {
	width: 7px;
	height: 7px;
	background: var(--ss-red, #df1722);
	border-radius: 50%;
	flex: 0 0 auto;
}

.ss-tv-breaking-time {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 75px;
	padding: 0 14px;
	color: #fff;
	background: #172236;
	font-size: 14px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

@keyframes ss-tv-ticker-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 700px) {
	.ss-tv-breaking-inner {
		grid-template-columns: auto minmax(0, 1fr);
		min-height: 46px;
	}

	.ss-tv-breaking-label {
		padding: 0 20px 0 12px;
		font-size: 13px;
	}

	.ss-tv-ticker-track {
		min-height: 46px;
		animation-duration: 42s;
	}

	.ss-tv-ticker-group a {
		padding: 0 17px;
		font-size: 14px;
		line-height: 46px;
	}

	.ss-tv-breaking-time {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ss-tv-ticker-track {
		animation: none;
	}

	.ss-tv-ticker-window {
		overflow-x: auto;
	}

	.ss-tv-live-dot {
		animation: none;
	}
}

/* =========================================================
   Sajha Sabal Homepage Hero V2 — Professional Polish
   Scoped only to .ss-home-hero-v2
========================================================= */

.ss-home-hero-v2 {
    margin: 22px 0 32px;
}

/* Main hero grid */
.ss-home-hero-v2 .ss-featured-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 1fr);
    gap: 18px;
    align-items: stretch;
}

/* Every hero card */
.ss-home-hero-v2 article,
.ss-home-hero-v2 [class*="story"],
.ss-home-hero-v2 [class*="card"] {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
}

/* Images */
.ss-home-hero-v2 img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform .35s ease;
}

/* Lead story image */
.ss-home-hero-v2 .ss-featured-grid > :first-child img {
    min-height: 430px;
}

/* Smooth hover */
.ss-home-hero-v2 article:hover img,
.ss-home-hero-v2 [class*="story"]:hover img,
.ss-home-hero-v2 [class*="card"]:hover img {
    transform: scale(1.035);
}

/* Overlay on cards that contain text over image */
.ss-home-hero-v2 article::after,
.ss-home-hero-v2 [class*="story"]::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 62%;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .82),
        rgba(0, 0, 0, .32),
        transparent
    );
}

/* Keep visible content over gradient */
.ss-home-hero-v2 article > *,
.ss-home-hero-v2 [class*="story"] > * {
    position: relative;
    z-index: 1;
}

/* Titles */
.ss-home-hero-v2 h1,
.ss-home-hero-v2 h2,
.ss-home-hero-v2 h3,
.ss-home-hero-v2 h4 {
    margin: 0;
    line-height: 1.35;
    font-weight: 700;
}

.ss-home-hero-v2 h1 a,
.ss-home-hero-v2 h2 a,
.ss-home-hero-v2 h3 a,
.ss-home-hero-v2 h4 a {
    color: inherit;
    text-decoration: none;
}

/* Lead headline */
.ss-home-hero-v2 .ss-featured-grid > :first-child h1,
.ss-home-hero-v2 .ss-featured-grid > :first-child h2,
.ss-home-hero-v2 .ss-featured-grid > :first-child h3 {
    font-size: clamp(25px, 2.25vw, 38px);
    line-height: 1.28;
}

/* Secondary headlines */
.ss-home-hero-v2 .ss-featured-grid > :not(:first-child) h2,
.ss-home-hero-v2 .ss-featured-grid > :not(:first-child) h3,
.ss-home-hero-v2 .ss-featured-grid > :not(:first-child) h4 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Metadata */
.ss-home-hero-v2 time,
.ss-home-hero-v2 .ss-time,
.ss-home-hero-v2 [class*="meta"] {
    font-size: 13px;
    line-height: 1.4;
}

/* Category badge */
.ss-home-hero-v2 [class*="category"],
.ss-home-hero-v2 [class*="badge"] {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #d71920;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

/* Prevent long titles from breaking layout */
.ss-home-hero-v2 a,
.ss-home-hero-v2 h1,
.ss-home-hero-v2 h2,
.ss-home-hero-v2 h3,
.ss-home-hero-v2 h4 {
    overflow-wrap: anywhere;
}

/* Tablet */
@media (max-width: 991px) {
    .ss-home-hero-v2 .ss-featured-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(260px, 1fr);
        gap: 14px;
    }

    .ss-home-hero-v2 .ss-featured-grid > :first-child img {
        min-height: 360px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ss-home-hero-v2 {
        margin: 14px 0 22px;
    }

    .ss-home-hero-v2 .ss-featured-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .ss-home-hero-v2 .ss-featured-grid > :first-child {
        grid-column: 1 / -1;
    }

    .ss-home-hero-v2 .ss-featured-grid > :first-child img {
        min-height: 260px;
    }

    .ss-home-hero-v2 .ss-featured-grid > :not(:first-child) img {
        min-height: 125px;
        aspect-ratio: 16 / 9;
    }

    .ss-home-hero-v2 .ss-featured-grid > :first-child h1,
    .ss-home-hero-v2 .ss-featured-grid > :first-child h2,
    .ss-home-hero-v2 .ss-featured-grid > :first-child h3 {
        font-size: 24px;
    }

    .ss-home-hero-v2 .ss-featured-grid > :not(:first-child) h2,
    .ss-home-hero-v2 .ss-featured-grid > :not(:first-child) h3,
    .ss-home-hero-v2 .ss-featured-grid > :not(:first-child) h4 {
        font-size: 15px;
        line-height: 1.35;
        -webkit-line-clamp: 3;
    }
}

/* Very small phones */
@media (max-width: 430px) {
    .ss-home-hero-v2 .ss-featured-grid {
        grid-template-columns: 1fr;
    }

    .ss-home-hero-v2 .ss-featured-grid > :first-child {
        grid-column: auto;
    }

    .ss-home-hero-v2 .ss-featured-grid > :not(:first-child) {
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 11px;
        align-items: center;
    }

    .ss-home-hero-v2 .ss-featured-grid > :not(:first-child) img {
        width: 118px;
        height: 82px;
        min-height: 82px;
        border-radius: 9px;
    }
}

/* ==================================================
   FIX: Homepage main hero featured image visibility
================================================== */

.ss-home-hero-v2 .ss-home-main-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    isolation: isolate;
    background: #161616;
}

/* Main image link must cover the entire card */
.ss-home-hero-v2 .ss-home-main-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Actual featured image */
.ss-home-hero-v2 .ss-home-main-image img,
.ss-home-hero-v2 .ss-home-main-image .wp-post-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

/* Gradient above image */
.ss-home-hero-v2 .ss-home-main-gradient {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .90) 0%,
        rgba(0, 0, 0, .48) 48%,
        rgba(0, 0, 0, .05) 78%,
        rgba(0, 0, 0, 0) 100%
    ) !important;
}

/* Text must remain above image and gradient */
.ss-home-hero-v2 .ss-home-main-content {
    position: absolute !important;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2 !important;
    padding: clamp(24px, 4vw, 58px);
    color: #fff;
}

/* Prevent generic hero pseudo-element from covering main card */
.ss-home-hero-v2 .ss-home-main-card::after {
    display: none !important;
}

/* Better headline contrast */
.ss-home-hero-v2 .ss-home-main-content h1,
.ss-home-hero-v2 .ss-home-main-content h2,
.ss-home-hero-v2 .ss-home-main-content h3,
.ss-home-hero-v2 .ss-home-main-content a,
.ss-home-hero-v2 .ss-home-main-content p {
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

/* Placeholder only when post truly has no featured image */
.ss-home-hero-v2 .ss-home-main-image .ss-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252525;
    color: rgba(255,255,255,.25);
}

/* Tablet */
@media (max-width: 991px) {
    .ss-home-hero-v2 .ss-home-main-card {
        min-height: 360px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ss-home-hero-v2 .ss-home-main-card {
        min-height: 280px;
    }

    .ss-home-hero-v2 .ss-home-main-content {
        padding: 22px 18px;
    }
}

/* ==================================================
   FIX: Homepage main hero featured image visibility
================================================== */

.ss-home-hero-v2 .ss-home-main-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    isolation: isolate;
    background: #161616;
}

/* Main image link must cover the entire card */
.ss-home-hero-v2 .ss-home-main-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Actual featured image */
.ss-home-hero-v2 .ss-home-main-image img,
.ss-home-hero-v2 .ss-home-main-image .wp-post-image {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

/* Gradient above image */
.ss-home-hero-v2 .ss-home-main-gradient {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .90) 0%,
        rgba(0, 0, 0, .48) 48%,
        rgba(0, 0, 0, .05) 78%,
        rgba(0, 0, 0, 0) 100%
    ) !important;
}

/* Text must remain above image and gradient */
.ss-home-hero-v2 .ss-home-main-content {
    position: absolute !important;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2 !important;
    padding: clamp(24px, 4vw, 58px);
    color: #fff;
}

/* Prevent generic hero pseudo-element from covering main card */
.ss-home-hero-v2 .ss-home-main-card::after {
    display: none !important;
}

/* Better headline contrast */
.ss-home-hero-v2 .ss-home-main-content h1,
.ss-home-hero-v2 .ss-home-main-content h2,
.ss-home-hero-v2 .ss-home-main-content h3,
.ss-home-hero-v2 .ss-home-main-content a,
.ss-home-hero-v2 .ss-home-main-content p {
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

/* Placeholder only when post truly has no featured image */
.ss-home-hero-v2 .ss-home-main-image .ss-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #252525;
    color: rgba(255,255,255,.25);
}

/* Tablet */
@media (max-width: 991px) {
    .ss-home-hero-v2 .ss-home-main-card {
        min-height: 360px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ss-home-hero-v2 .ss-home-main-card {
        min-height: 280px;
    }

    .ss-home-hero-v2 .ss-home-main-content {
        padding: 22px 18px;
    }
}

/* =========================================================
   Sajha Sabal Homepage Hero V2 — Final Visual Polish
========================================================= */

/* Header र hero बीचको अनावश्यक खाली भाग घटाउने */
.home .ss-main.ss-home-v2 {
    padding-top: 0 !important;
}

.home .ss-main.ss-home-v2 > .ss-container {
    padding-top: 18px !important;
}

.ss-home-hero-v2 {
    margin-top: 0 !important;
}

/* Hero grid alignment */
.ss-home-hero-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(330px, 1fr);
    gap: 22px;
    align-items: stretch;
}

/* Main lead card */
.ss-home-hero-v2 .ss-home-main-card {
    border-radius: 16px !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .12);
}

/* Main title */
.ss-home-hero-v2 .ss-home-main-content h1,
.ss-home-hero-v2 .ss-home-main-content h2 {
    max-width: 850px;
    margin: 0 0 13px !important;
    font-size: clamp(29px, 2.7vw, 45px) !important;
    line-height: 1.24 !important;
    font-weight: 800 !important;
    letter-spacing: -.02em;
}

/* Main excerpt */
.ss-home-hero-v2 .ss-home-main-content p {
    display: -webkit-box;
    max-width: 760px;
    margin: 0 0 22px !important;
    overflow: hidden;
    font-size: 17px !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,.92) !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* Main category badge */
.ss-home-hero-v2 .ss-home-category {
    display: inline-flex !important;
    align-items: center;
    width: fit-content;
    margin-bottom: 13px !important;
    padding: 6px 11px !important;
    border-radius: 999px !important;
    background: #e31b23 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 4px 12px rgba(227,27,35,.28);
}

/* Read more button */
.ss-home-hero-v2 .ss-home-main-content a[class*="button"],
.ss-home-hero-v2 .ss-home-main-content a[class*="read"] {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    background: #e31b23;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-shadow: none !important;
    transition: transform .2s ease, background .2s ease;
}

.ss-home-hero-v2 .ss-home-main-content a[class*="button"]:hover,
.ss-home-hero-v2 .ss-home-main-content a[class*="read"]:hover {
    background: #c9141b;
    transform: translateY(-2px);
}

/* Right-side list */
.ss-home-hero-v2 .ss-home-side-list,
.ss-home-hero-v2 .ss-home-side-column {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

/* Secondary card */
.ss-home-hero-v2 .ss-home-side-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 145px;
    overflow: hidden;
    border: 1px solid #e8ebef;
    border-radius: 13px !important;
    background: #fff !important;
    box-shadow: 0 5px 18px rgba(15,23,42,.07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.ss-home-hero-v2 .ss-home-side-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15,23,42,.12);
}

/* Remove old grey/black full-card overlay */
.ss-home-hero-v2 .ss-home-side-card::after {
    display: none !important;
}

/* Secondary image */
.ss-home-hero-v2 .ss-home-side-image {
    position: relative !important;
    inset: auto !important;
    z-index: 0;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 145px;
    overflow: hidden;
    border-radius: 0 !important;
}

.ss-home-hero-v2 .ss-home-side-image img,
.ss-home-hero-v2 .ss-home-side-image .wp-post-image {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 145px !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

/* Secondary content */
.ss-home-hero-v2 .ss-home-side-content {
    position: relative !important;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 14px 15px !important;
    background: #fff !important;
    color: #15171a !important;
}

/* Secondary category */
.ss-home-hero-v2 .ss-home-side-category,
.ss-home-hero-v2 .ss-home-side-content [class*="category"] {
    display: inline-flex !important;
    width: fit-content;
    margin: 0 0 8px !important;
    padding: 5px 9px !important;
    border-radius: 999px !important;
    background: #e31b23 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

/* Secondary title */
.ss-home-hero-v2 .ss-home-side-card h2,
.ss-home-hero-v2 .ss-home-side-card h3,
.ss-home-hero-v2 .ss-home-side-card h4 {
    display: -webkit-box;
    margin: 0 0 8px !important;
    overflow: hidden;
    color: #15171a !important;
    font-size: 18px !important;
    line-height: 1.38 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ss-home-hero-v2 .ss-home-side-card h2 a,
.ss-home-hero-v2 .ss-home-side-card h3 a,
.ss-home-hero-v2 .ss-home-side-card h4 a {
    color: #15171a !important;
    text-shadow: none !important;
}

.ss-home-hero-v2 .ss-home-side-card:hover h2 a,
.ss-home-hero-v2 .ss-home-side-card:hover h3 a,
.ss-home-hero-v2 .ss-home-side-card:hover h4 a {
    color: #d71920 !important;
}

/* Secondary date/meta */
.ss-home-hero-v2 .ss-home-side-card time,
.ss-home-hero-v2 .ss-home-side-card [class*="date"],
.ss-home-hero-v2 .ss-home-side-card [class*="meta"] {
    margin-top: auto;
    color: #7a8088 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    text-shadow: none !important;
}

/* Tablet */
@media (max-width: 1100px) {
    .ss-home-hero-v2 {
        grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
        gap: 16px;
    }

    .ss-home-hero-v2 .ss-home-side-card {
        min-height: 132px;
    }

    .ss-home-hero-v2 .ss-home-side-image,
    .ss-home-hero-v2 .ss-home-side-image img {
        min-height: 132px !important;
    }

    .ss-home-hero-v2 .ss-home-side-card h2,
    .ss-home-hero-v2 .ss-home-side-card h3,
    .ss-home-hero-v2 .ss-home-side-card h4 {
        font-size: 16px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .home .ss-main.ss-home-v2 > .ss-container {
        padding-top: 10px !important;
    }

    .ss-home-hero-v2 {
        display: block;
    }

    .ss-home-hero-v2 .ss-home-main-card {
        min-height: 340px !important;
        margin-bottom: 14px;
        border-radius: 12px !important;
    }

    .ss-home-hero-v2 .ss-home-main-content h1,
    .ss-home-hero-v2 .ss-home-main-content h2 {
        font-size: 26px !important;
    }

    .ss-home-hero-v2 .ss-home-main-content p {
        display: none;
    }

    .ss-home-hero-v2 .ss-home-side-list,
    .ss-home-hero-v2 .ss-home-side-column {
        display: grid;
        grid-template-rows: none;
        gap: 11px;
    }

    .ss-home-hero-v2 .ss-home-side-card {
        grid-template-columns: 125px minmax(0, 1fr);
        min-height: 94px;
        border-radius: 10px !important;
    }

    .ss-home-hero-v2 .ss-home-side-image,
    .ss-home-hero-v2 .ss-home-side-image img {
        width: 125px !important;
        min-height: 94px !important;
        height: 100% !important;
    }

    .ss-home-hero-v2 .ss-home-side-content {
        padding: 10px 11px !important;
    }

    .ss-home-hero-v2 .ss-home-side-card h2,
    .ss-home-hero-v2 .ss-home-side-card h3,
    .ss-home-hero-v2 .ss-home-side-card h4 {
        margin-bottom: 4px !important;
        font-size: 15px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2;
    }

    .ss-home-hero-v2 .ss-home-side-category,
    .ss-home-hero-v2 .ss-home-side-content [class*="category"] {
        margin-bottom: 5px !important;
        padding: 4px 7px !important;
        font-size: 10px !important;
    }
}

/* =========================================================
   Sajha Sabal Homepage Hero V2 — Final Visual Polish
========================================================= */

/* Header र hero बीचको अनावश्यक खाली भाग घटाउने */
.home .ss-main.ss-home-v2 {
    padding-top: 0 !important;
}

.home .ss-main.ss-home-v2 > .ss-container {
    padding-top: 18px !important;
}

.ss-home-hero-v2 {
    margin-top: 0 !important;
}

/* Hero grid alignment */
.ss-home-hero-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(330px, 1fr);
    gap: 22px;
    align-items: stretch;
}

/* Main lead card */
.ss-home-hero-v2 .ss-home-main-card {
    border-radius: 16px !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .12);
}

/* Main title */
.ss-home-hero-v2 .ss-home-main-content h1,
.ss-home-hero-v2 .ss-home-main-content h2 {
    max-width: 850px;
    margin: 0 0 13px !important;
    font-size: clamp(29px, 2.7vw, 45px) !important;
    line-height: 1.24 !important;
    font-weight: 800 !important;
    letter-spacing: -.02em;
}

/* Main excerpt */
.ss-home-hero-v2 .ss-home-main-content p {
    display: -webkit-box;
    max-width: 760px;
    margin: 0 0 22px !important;
    overflow: hidden;
    font-size: 17px !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,.92) !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* Main category badge */
.ss-home-hero-v2 .ss-home-category {
    display: inline-flex !important;
    align-items: center;
    width: fit-content;
    margin-bottom: 13px !important;
    padding: 6px 11px !important;
    border-radius: 999px !important;
    background: #e31b23 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 4px 12px rgba(227,27,35,.28);
}

/* Read more button */
.ss-home-hero-v2 .ss-home-main-content a[class*="button"],
.ss-home-hero-v2 .ss-home-main-content a[class*="read"] {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    background: #e31b23;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-shadow: none !important;
    transition: transform .2s ease, background .2s ease;
}

.ss-home-hero-v2 .ss-home-main-content a[class*="button"]:hover,
.ss-home-hero-v2 .ss-home-main-content a[class*="read"]:hover {
    background: #c9141b;
    transform: translateY(-2px);
}

/* Right-side list */
.ss-home-hero-v2 .ss-home-side-list,
.ss-home-hero-v2 .ss-home-side-column {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

/* Secondary card */
.ss-home-hero-v2 .ss-home-side-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 145px;
    overflow: hidden;
    border: 1px solid #e8ebef;
    border-radius: 13px !important;
    background: #fff !important;
    box-shadow: 0 5px 18px rgba(15,23,42,.07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.ss-home-hero-v2 .ss-home-side-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15,23,42,.12);
}

/* Remove old grey/black full-card overlay */
.ss-home-hero-v2 .ss-home-side-card::after {
    display: none !important;
}

/* Secondary image */
.ss-home-hero-v2 .ss-home-side-image {
    position: relative !important;
    inset: auto !important;
    z-index: 0;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 145px;
    overflow: hidden;
    border-radius: 0 !important;
}

.ss-home-hero-v2 .ss-home-side-image img,
.ss-home-hero-v2 .ss-home-side-image .wp-post-image {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 145px !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

/* Secondary content */
.ss-home-hero-v2 .ss-home-side-content {
    position: relative !important;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 14px 15px !important;
    background: #fff !important;
    color: #15171a !important;
}

/* Secondary category */
.ss-home-hero-v2 .ss-home-side-category,
.ss-home-hero-v2 .ss-home-side-content [class*="category"] {
    display: inline-flex !important;
    width: fit-content;
    margin: 0 0 8px !important;
    padding: 5px 9px !important;
    border-radius: 999px !important;
    background: #e31b23 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

/* Secondary title */
.ss-home-hero-v2 .ss-home-side-card h2,
.ss-home-hero-v2 .ss-home-side-card h3,
.ss-home-hero-v2 .ss-home-side-card h4 {
    display: -webkit-box;
    margin: 0 0 8px !important;
    overflow: hidden;
    color: #15171a !important;
    font-size: 18px !important;
    line-height: 1.38 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ss-home-hero-v2 .ss-home-side-card h2 a,
.ss-home-hero-v2 .ss-home-side-card h3 a,
.ss-home-hero-v2 .ss-home-side-card h4 a {
    color: #15171a !important;
    text-shadow: none !important;
}

.ss-home-hero-v2 .ss-home-side-card:hover h2 a,
.ss-home-hero-v2 .ss-home-side-card:hover h3 a,
.ss-home-hero-v2 .ss-home-side-card:hover h4 a {
    color: #d71920 !important;
}

/* Secondary date/meta */
.ss-home-hero-v2 .ss-home-side-card time,
.ss-home-hero-v2 .ss-home-side-card [class*="date"],
.ss-home-hero-v2 .ss-home-side-card [class*="meta"] {
    margin-top: auto;
    color: #7a8088 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    text-shadow: none !important;
}

/* Tablet */
@media (max-width: 1100px) {
    .ss-home-hero-v2 {
        grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
        gap: 16px;
    }

    .ss-home-hero-v2 .ss-home-side-card {
        min-height: 132px;
    }

    .ss-home-hero-v2 .ss-home-side-image,
    .ss-home-hero-v2 .ss-home-side-image img {
        min-height: 132px !important;
    }

    .ss-home-hero-v2 .ss-home-side-card h2,
    .ss-home-hero-v2 .ss-home-side-card h3,
    .ss-home-hero-v2 .ss-home-side-card h4 {
        font-size: 16px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .home .ss-main.ss-home-v2 > .ss-container {
        padding-top: 10px !important;
    }

    .ss-home-hero-v2 {
        display: block;
    }

    .ss-home-hero-v2 .ss-home-main-card {
        min-height: 340px !important;
        margin-bottom: 14px;
        border-radius: 12px !important;
    }

    .ss-home-hero-v2 .ss-home-main-content h1,
    .ss-home-hero-v2 .ss-home-main-content h2 {
        font-size: 26px !important;
    }

    .ss-home-hero-v2 .ss-home-main-content p {
        display: none;
    }

    .ss-home-hero-v2 .ss-home-side-list,
    .ss-home-hero-v2 .ss-home-side-column {
        display: grid;
        grid-template-rows: none;
        gap: 11px;
    }

    .ss-home-hero-v2 .ss-home-side-card {
        grid-template-columns: 125px minmax(0, 1fr);
        min-height: 94px;
        border-radius: 10px !important;
    }

    .ss-home-hero-v2 .ss-home-side-image,
    .ss-home-hero-v2 .ss-home-side-image img {
        width: 125px !important;
        min-height: 94px !important;
        height: 100% !important;
    }

    .ss-home-hero-v2 .ss-home-side-content {
        padding: 10px 11px !important;
    }

    .ss-home-hero-v2 .ss-home-side-card h2,
    .ss-home-hero-v2 .ss-home-side-card h3,
    .ss-home-hero-v2 .ss-home-side-card h4 {
        margin-bottom: 4px !important;
        font-size: 15px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 2;
    }

    .ss-home-hero-v2 .ss-home-side-category,
    .ss-home-hero-v2 .ss-home-side-content [class*="category"] {
        margin-bottom: 5px !important;
        padding: 4px 7px !important;
        font-size: 10px !important;
    }
}
