:root {
	--vithai-blue: #005ac6;
	--vithai-blue-dark: #005ac6;
	--vithai-gold: #ffc843;
	--vithai-navy: #0b2d5c;
}

body.vithai-layout {
	font-family: "Lexend", "Inter", system-ui, sans-serif;
	overflow-x: hidden;
}

.vithai-topbar {
	background: var(--vithai-blue);
	color: #fff;
	font-size: 0.875rem;
}

.vithai-topbar a {
	color: #fff;
	text-decoration: none;
}

.vithai-topbar a:hover {
	color: var(--vithai-gold);
}

.vithai-navbar {
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	border-bottom: 2px solid var(--vithai-gold);
	transition: top 0.3s ease;
	z-index: 1030;
}

.vithai-navbar .navbar-brand img {
	max-height: 72px;
	width: auto;
}

.vithai-navbar .nav-link {
	color: var(--vithai-navy);
	font-weight: 500;
	padding: 0.5rem 0.85rem !important;
}

.vithai-navbar .nav-link:hover,
.vithai-navbar .nav-link:focus {
	color: var(--vithai-blue-dark);
}

.vithai-navbar .nav-link.active {
	color: var(--vithai-gold) !important;
	font-weight: 600;
}

.vithai-navbar .dropdown-menu {
	border: 1px solid #e8edf3;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-radius: 0.5rem;
	padding: 0.35rem 0;
	min-width: 13rem;
}

.vithai-navbar .dropdown-item {
	font-size: 0.9rem;
	padding: 0.5rem 1.25rem;
	color: var(--vithai-navy);
	white-space: nowrap;
	border-top: none;
	border-bottom: 1px solid #e8edf3;
}

.vithai-navbar .dropdown-menu > li:last-child > .dropdown-item,
.vithai-navbar .dropdown-menu.vithai-submenu > li:last-child > .dropdown-item {
	border-bottom: none;
}

.vithai-navbar .dropdown-divider {
	display: none;
}

.vithai-navbar .dropdown-item:hover,
.vithai-navbar .dropdown-item:focus {
	background: rgba(30, 115, 190, 0.08);
	color: var(--vithai-blue-dark);
}

.vithai-navbar .dropdown-item.active {
	background: rgba(255, 200, 67, 0.2);
	color: var(--vithai-navy);
	font-weight: 600;
}

.vithai-navbar .dropend > .dropdown-toggle::after {
	vertical-align: 0.15em;
}

/* Desktop: hover to open dropdowns */
@media (min-width: 992px) {
	.vithai-navbar .vithai-nav-dropdown {
		position: relative;
	}

	.vithai-navbar .vithai-nav-dropdown > .dropdown-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		margin-top: 0;
	}

	.vithai-navbar .vithai-nav-dropdown:hover > .dropdown-menu {
		display: block;
	}

	.vithai-navbar .dropend {
		position: relative;
	}

	.vithai-navbar .dropend > .dropdown-menu.vithai-submenu {
		display: none;
		position: absolute;
		top: 0;
		left: 100%;
		margin-left: 0.15rem;
		min-width: 14rem;
	}

	.vithai-navbar .dropend:hover > .dropdown-menu.vithai-submenu {
		display: block;
	}

	.vithai-navbar .dropend:hover > .dropdown-toggle {
		background: rgba(30, 115, 190, 0.08);
		color: var(--vithai-blue-dark);
	}

	.vithai-navbar .vithai-nav-dropdown > .dropdown-menu::before {
		content: "";
		position: absolute;
		top: -0.5rem;
		left: 0;
		width: 100%;
		height: 0.5rem;
	}

	.vithai-navbar .dropend > .dropdown-menu.vithai-submenu::before {
		content: "";
		position: absolute;
		top: 0;
		left: -0.5rem;
		width: 0.5rem;
		height: 100%;
	}
}

.vithai-btn-donate {
	/* background: var(--vithai-gold); */
	color: var(--vithai-navy);
	border: 1px solid var(--vithai-gold);;
	font-weight: 600;
	padding: 0.35rem 1rem;
	border-radius: 0.35rem;
}

.vithai-btn-donate:hover {
	/* background: #e6b23a; */
	color: white;
}

.vithai-footer {
	background: #f4f7fb;
	color: #333;
}

.vithai-footer h2,
.vithai-footer h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--vithai-blue-dark);
	margin-bottom: 1rem;
}

.vithai-footer a {
	color: var(--vithai-blue-dark);
	word-break: break-word;
}

.vithai-footer a:hover {
	color: var(--vithai-blue);
}

.vithai-footer .social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: var(--vithai-blue);
	color: #fff;
	margin-right: 0.5rem;
	text-decoration: none;
}

.vithai-footer .social-links a:hover {
	background: var(--vithai-blue-dark);
	color: #fff;
}

.vithai-footer-bottom {
	border-top: 1px solid #dde4ee;
	padding: 1rem 0;
	text-align: center;
	font-size: 0.9rem;
}

.vithai-post-title {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--vithai-navy);
	margin-bottom: 1.5rem;
	line-height: 1.4;
}

.vithai-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.vithai-gallery a {
	display: block;
	overflow: hidden;
	border-radius: 0.35rem;
	aspect-ratio: 1 / 1;
	background: #f0f4f8;
	cursor: zoom-in;
}

.vithai-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 991.98px) {
	.vithai-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

@media (max-width: 575.98px) {
	.vithai-gallery {
		grid-template-columns: 1fr;
	}
}

.elementor-gallery__container,
.vithai-gallery-upgraded {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.elementor-gallery__container a.e-gallery-item {
	display: block;
	overflow: hidden;
	border-radius: 0.35rem;
	aspect-ratio: 1 / 1;
	background: #f0f4f8;
	cursor: zoom-in;
	position: relative;
}

.elementor-gallery__container a.e-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 991.98px) {
	.elementor-gallery__container,
	.vithai-gallery-upgraded {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

@media (max-width: 575.98px) {
	.elementor-gallery__container,
	.vithai-gallery-upgraded {
		grid-template-columns: 1fr;
	}
}

body.vithai-lightbox-open,
body.vithai-video-modal-open,
body.vithai-content-modal-open {
	overflow: hidden;
}

/* Hide Elementor popup templates/overlays; opened via vithai-content-modal */
.elementor-location-popup,
.elementor-popup-modal {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.vithai-content-modal {
	position: fixed;
	inset: 0;
	z-index: 2200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.vithai-content-modal[hidden] {
	display: none !important;
}

.vithai-content-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
}

.vithai-content-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(980px, 96vw);
	max-height: min(88vh, 760px);
	background: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.vithai-content-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	width: 2.25rem;
	height: 2.25rem;
	border: none;
	background: transparent;
	color: #333;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.vithai-content-modal__close:hover {
	color: var(--vithai-blue);
}

.vithai-content-modal__body {
	overflow-y: auto;
	padding: 2rem 2.25rem;
	-webkit-overflow-scrolling: touch;
}

.vithai-content-modal__body .elementor-section {
	padding: 0;
	margin: 0;
}

.vithai-content-modal__body .elementor-container {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 1.75rem;
}

.vithai-content-modal__body .elementor-container.vithai-modal-horizontal {
	flex-direction: row;
}

.vithai-content-modal__body .elementor-col-33,
.vithai-content-modal__body .vithai-modal-photo {
	flex: 0 0 220px;
	max-width: 220px;
}

.vithai-content-modal__body .elementor-col-50 {
	flex: 0 0 50%;
	max-width: 50%;
}

.vithai-content-modal__body .elementor-col-66,
.vithai-content-modal__body .vithai-modal-content {
	flex: 1 1 0;
	min-width: 0;
	max-width: none;
}

.vithai-content-modal__body .elementor-col-100 {
	flex: 1 1 100%;
	max-width: 100%;
}

.vithai-content-modal__body .elementor-heading-title {
	color: var(--vithai-blue);
	font-weight: 700;
	margin-bottom: 0.35rem;
	text-align: left;
	font-size: 1.25rem;
}

.vithai-content-modal__body h6.elementor-heading-title {
	color: #6c757d;
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 1rem;
	text-align: left;
	text-transform: capitalize;
}

.vithai-content-modal__body .elementor-widget-heading + .elementor-widget-text-editor p:only-child {
	text-align: left;
	color: #555;
	font-weight: 500;
	margin-bottom: 1rem;
}

.vithai-content-modal__body .elementor-widget-text-editor {
	color: #333;
	font-size: 0.95rem;
	line-height: 1.65;
	text-align: justify;
}

.vithai-content-modal__body .elementor-widget-text-editor p,
.vithai-content-modal__body .elementor-widget-text-editor li {
	text-align: justify;
}

.vithai-content-modal__body .elementor-widget-text-editor ul {
	padding-left: 1.25rem;
	margin-bottom: 0.75rem;
	text-align: left;
}

.vithai-content-modal__body .elementor-widget-text-editor li {
	margin-bottom: 0.5rem;
}

.vithai-content-modal__body .elementor-widget-image img {
	width: 100%;
	max-width: 220px;
	height: auto;
	display: block;
	border-radius: 0.35rem;
	object-fit: cover;
}

.vithai-content-modal__body .vithai-modal-photo .elementor-widget-image img {
	margin: 0;
}

.vithai-content-modal__body #SITE_CONTAINER,
.vithai-content-modal__body .POPUPS_ROOT,
.vithai-content-modal__body .wixGuard {
	display: none !important;
}

@media (max-width: 767.98px) {
	.vithai-content-modal {
		padding: 1rem;
	}

	.vithai-content-modal__dialog {
		max-height: 90vh;
	}

	.vithai-content-modal__body {
		padding: 1.5rem 1.25rem 1.5rem 1.5rem;
	}

	.vithai-content-modal__body .elementor-container {
		flex-direction: column;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.vithai-content-modal__body .elementor-col-33,
	.vithai-content-modal__body .vithai-modal-photo,
	.vithai-content-modal__body .elementor-col-50,
	.vithai-content-modal__body .elementor-col-66,
	.vithai-content-modal__body .vithai-modal-content {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.vithai-content-modal__body .elementor-widget-image img {
		max-width: 180px;
		margin: 0 auto;
	}
}

.vithai-video-modal {
	position: fixed;
	inset: 0;
	z-index: 2100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.vithai-video-modal[hidden] {
	display: none !important;
}

.vithai-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
}

.vithai-video-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	background: #111;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.vithai-video-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	cursor: pointer;
}

.vithai-video-modal__player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
}

.vithai-video-modal__iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.vithai-video-modal__youtube {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.9rem 1rem;
	background: #ff0000;
	color: #fff !important;
	font-weight: 600;
	text-decoration: none !important;
}

.vithai-video-modal__youtube:hover,
.vithai-video-modal__youtube:focus {
	background: #cc0000;
	color: #fff !important;
}

.vithai-video-modal__youtube i {
	font-size: 1.35rem;
}

.vithai-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3.5rem 4.5rem;
}

.vithai-lightbox[hidden] {
	display: none !important;
}

.vithai-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
}

.vithai-lightbox__figure {
	position: relative;
	z-index: 1;
	margin: 0;
	max-width: min(1100px, 100%);
	max-height: calc(100vh - 7rem);
}

.vithai-lightbox__image {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 7rem);
	width: auto;
	height: auto;
	margin: 0 auto;
	border-radius: 0.35rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.vithai-lightbox__counter {
	position: absolute;
	top: 1.25rem;
	left: 1.5rem;
	z-index: 2;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
}

.vithai-lightbox__close,
.vithai-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	cursor: pointer;
}

.vithai-lightbox__close {
	top: 1rem;
	right: 1rem;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	font-size: 1.25rem;
}

.vithai-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	font-size: 1rem;
}

.vithai-lightbox__nav--prev {
	left: 1.25rem;
}

.vithai-lightbox__nav--next {
	right: 1.25rem;
}

.vithai-lightbox__close:hover,
.vithai-lightbox__nav:hover {
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
}

@media (max-width: 767.98px) {
	.vithai-lightbox {
		padding: 3.5rem 1rem;
	}

	.vithai-lightbox__nav--prev {
		left: 0.5rem;
	}

	.vithai-lightbox__nav--next {
		right: 0.5rem;
	}
}

@media (max-width: 991.98px) {
	.vithai-navbar .dropdown-menu {
		position: static !important;
		float: none;
		box-shadow: none;
		border: none;
		border-left: 2px solid var(--vithai-gold);
		margin-left: 0.75rem;
		padding-left: 0;
		display: none;
	}

	.vithai-navbar .vithai-nav-dropdown.is-open > .dropdown-menu,
	.vithai-navbar .dropend.is-open > .dropdown-menu {
		display: block;
	}

	.vithai-navbar .dropend > .dropdown-menu.vithai-submenu {
		margin-left: 1rem;
	}
}

.vithai-page-banner {
	background-image: url('../../wp-content/uploads/2023/01/Group-3391.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 5% 0;
}

.vithai-page-banner__title {
	color: #fff;
	font-size: clamp(1.25rem, 2.5vw, 2rem);
	font-weight: 600;
}

.vithai-page-banner__breadcrumb {
	font-size: clamp(0.75rem, 1.5vw, 1rem);
	font-weight: 600;
}

.vithai-page-banner__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	content: "»";
	color: #fff;
}

.vithai-page-banner__breadcrumb .breadcrumb-item a {
	color: var(--vithai-gold);
	text-decoration: none;
}

.vithai-page-banner__breadcrumb .breadcrumb-item a:hover {
	color: #fff;
}

.vithai-page-banner__breadcrumb .breadcrumb-item.active {
	color: #fff;
}

.vithai-page-banner__breadcrumb-wrap {
	padding-right: 10%;
}

@media (max-width: 991.98px) {
	.vithai-page-banner {
		padding: 5%;
	}

	.vithai-page-banner__breadcrumb-wrap {
		padding-right: 0;
	}
}

@media (max-width: 767.98px) {
	.vithai-page-banner {
		padding: 8% 5%;
	}

	.vithai-page-banner__title {
		font-size: 0.875rem;
	}

	.vithai-page-banner__breadcrumb {
		font-size: 0.5rem;
	}
}

.vithai-page-title {
	color: var(--vithai-blue);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
}

.vithai-section-title {
	color: var(--vithai-blue);
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 700;
}

.vithai-breadcrumb {
	font-size: 0.875rem;
}

.vithai-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	content: "»";
}

.vithai-breadcrumb a {
	color: var(--vithai-blue);
	text-decoration: none;
}

.vithai-breadcrumb a:hover {
	text-decoration: underline;
}

.vithai-blog-card {
	border-radius: 0.5rem;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vithai-blog-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
	transform: translateY(-2px);
}

.vithai-blog-card__image-link {
	display: block;
	overflow: hidden;
	background: #e9ecef;
	aspect-ratio: 300 / 232;
}

.vithai-blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vithai-blog-card .card-body {
	padding: 1.25rem 1.25rem 1rem;
}

.vithai-blog-card__title {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.65rem;
}

.vithai-blog-card__title a {
	color: #222;
	text-decoration: none;
}

.vithai-blog-card__title a:hover {
	color: var(--vithai-blue);
}

.vithai-blog-card__excerpt {
	font-size: 0.875rem;
	line-height: 1.55;
	color: #555;
	margin-bottom: 1rem;
}

.vithai-blog-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid #eee;
}

.vithai-blog-card__date {
	font-size: 0.8rem;
	color: #777;
}

.vithai-blog-card__more {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--vithai-blue);
	text-decoration: none;
	white-space: nowrap;
}

.vithai-blog-card__more:hover {
	text-decoration: underline;
}

/* Varshini Illam — original bottom-right popup stack (2600 trigger + 2583 card) */
.vithai-varshini-stack {
	position: fixed;
	right: 1%;
	bottom: 2%;
	z-index: 2050;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.75rem;
	width: min(350px, calc(100vw - 1.5rem));
	pointer-events: none;
}

.vithai-varshini-stack > * {
	pointer-events: auto;
}

.vithai-varshini-promo-card {
	width: 318px;
	max-width: 100%;
	background: #fff;
	box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
	padding: 6%;
	border-radius: 1rem;
	animation: vithaiVarshiniIn 0.35s ease;
}

.vithai-varshini-promo-card[hidden],
.vithai-varshini-trigger[hidden] {
	display: none !important;
}

.vithai-varshini-stack.is-intro .vithai-varshini-promo-card,
.vithai-varshini-stack.is-promo-open .vithai-varshini-promo-card {
	animation: vithaiVarshiniIn 0.35s ease;
}

.vithai-varshini-promo-card.is-hiding {
	animation: vithaiVarshiniOut 0.28s ease forwards;
}

@keyframes vithaiVarshiniIn {
	from {
		opacity: 0;
		transform: translateX(1.5rem);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes vithaiVarshiniOut {
	from {
		opacity: 1;
		transform: translateX(0);
	}

	to {
		opacity: 0;
		transform: translateX(1.5rem);
	}
}

.vithai-varshini-stack.is-ready .vithai-varshini-trigger {
	animation: vithaiVarshiniIn 0.35s ease;
}

.vithai-varshini-promo-card .elementor-section,
.vithai-varshini-promo-card .elementor-container,
.vithai-varshini-promo-card .elementor-column,
.vithai-varshini-promo-card .elementor-widget-wrap {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0;
	margin: 0;
}

.vithai-varshini-promo-card .elementor-widget-image {
	text-align: center;
	margin-bottom: 0.75rem;
}

.vithai-varshini-promo-card .elementor-widget-image img {
	width: 100%;
	height: auto;
	display: inline-block;
}

.vithai-varshini-promo-card .elementor-widget-text-editor {
	text-align: center;
	font-family: 'Lexend', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.55;
	color: #222;
	margin-bottom: 0.85rem;
}

.vithai-varshini-promo-card .elementor-widget-text-editor p {
	margin: 0;
	text-align: center;
}

.vithai-varshini-promo-card .elementor-button {
	display: block;
	width: 100%;
	padding: 0.65rem 1rem;
	border: none;
	border-radius: 0.25rem;
	background: var(--vithai-blue, #005ac6);
	color: #fff;
	font-family: 'Lexend', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.16);
}

.vithai-varshini-promo-card .elementor-button .elementor-button-text {
	color: #fff;
}

.vithai-varshini-promo-card .elementor-button:hover {
	background: var(--vithai-navy, #0b2d5c);
	color: #fff;
}

.vithai-varshini-promo-card .elementor-button:hover .elementor-button-text {
	color: #fff;
}

.vithai-varshini-trigger {
	width: 100%;
}

.vithai-varshini-trigger .elementor-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	padding: 0.85rem 1.25rem;
	border: none;
	border-radius: 0.35rem;
	background: #fff;
	color: #111;
	font-family: 'Lexend', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.29);
}

.vithai-varshini-trigger .elementor-button-content-wrapper {
	display: inline-flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 0.65rem;
}

.vithai-varshini-trigger .elementor-button-icon {
	font-size: 1.35rem;
	color: #111;
}

@media (max-width: 767.98px) {
	.vithai-varshini-stack {
		right: 2%;
		bottom: 3%;
		width: min(280px, calc(100vw - 1rem));
	}

	.vithai-varshini-promo-card {
		width: 180px;
		padding: 5%;
	}

	.vithai-varshini-promo-card .elementor-widget-image img {
		width: 70%;
	}

	.vithai-varshini-promo-card .elementor-widget-text-editor {
		font-size: 0.62rem;
	}

	.vithai-varshini-trigger .elementor-button {
		font-size: 0.9rem;
		padding: 0.75rem 1rem;
	}
}

/* Assistive Devices — custom tabbed gallery */
.vithai-assistive-gallery__title {
	color: #1d408a;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.vithai-assistive-gallery__panel {
	background: #e8f1fb;
	border-radius: 20px;
	padding: 1.25rem 1.25rem 1.5rem;
}

.vithai-assistive-gallery__tabs {
	gap: 0.75rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.15rem;
	scrollbar-width: thin;
}

.vithai-assistive-gallery__tabs .nav-link {
	background: transparent;
	border: none;
	border-radius: 999px;
	color: #1d408a;
	font-size: 0.95rem;
	font-weight: 600;
	padding: 0.6rem 1.2rem;
	white-space: nowrap;
}

.vithai-assistive-gallery__tabs .nav-link:hover,
.vithai-assistive-gallery__tabs .nav-link:focus {
	color: #1d408a;
	background: rgba(29, 64, 138, 0.1);
}

.vithai-assistive-gallery__tabs .nav-link.active {
	background: #1d408a;
	color: #fff;
}

.vithai-assistive-gallery__content {
	background: #fff;
	border-radius: 16px;
	padding: 1.25rem;
	min-height: 220px;
}

.vithai-assistive-gallery__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vithai-assistive-gallery__grid img {
	object-fit: contain;
	background: #f8fafc;
}

@media (max-width: 991.98px) {
	.vithai-assistive-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.vithai-assistive-gallery__panel {
		padding: 1rem;
	}

	.vithai-assistive-gallery__tabs .nav-link {
		font-size: 0.8rem;
		padding: 0.5rem 0.9rem;
	}

	.vithai-assistive-gallery__grid {
		grid-template-columns: 1fr;
	}
}
