body.calculator-hub-page {
	background: var(--ghost-white);
	background-color: var(--background);
	color: var(--foreground);
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body.calculator-hub-page ::selection {
	background: var(--primary);
	color: var(--primary-foreground);
}

.calculator-hub-page .container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.calculator-hub-page .container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.calculator-hub-page .container {
		padding-left: 2rem;
		padding-right: 2rem;
		max-width: 1280px;
	}
}

.min-h-screen {
	min-height: 100vh;
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.inline-flex {
	display: inline-flex;
}

.grid {
	display: grid;
}

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

.gap-2 {
	gap: 0.5rem;
}

.gap-3 {
	gap: 0.75rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-8 {
	gap: 2rem;
}

.gap-12 {
	gap: 3rem;
}

.items-center {
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.flex-shrink-0 {
	flex-shrink: 0;
}

.font-sans {
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.font-bold {
	font-weight: 700;
}

.font-medium {
	font-weight: 500;
}

.tracking-tighter {
	letter-spacing: -0.05em;
}

.tracking-tight {
	letter-spacing: -0.025em;
}

.tracking-wide {
	letter-spacing: 0.05em;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.text-5xl {
	font-size: 3rem;
	line-height: 1;
}

.leading-relaxed {
	line-height: 1.625;
}

.text-center {
	text-align: center;
}

.text-primary {
	color: var(--primary);
}

.text-primary-foreground {
	color: var(--primary-foreground);
}

.text-muted-foreground {
	color: var(--muted-foreground);
}

.text-green-600 {
	color: #16a34a;
}

.bg-background {
	background: var(--background);
}

.bg-background\/80 {
	background: rgba(251, 251, 255, 0.8);
}

.bg-primary {
	background: var(--primary);
}

.bg-primary\/10 {
	background: rgba(1, 186, 239, 0.1);
}

.icon-outline {
	color: var(--emerald-bright);
}

.icon-bg {
	background: rgba(127, 255, 212, 0.18);
}

.calculator-icon {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.bg-muted\/30 {
	background: rgba(240, 240, 245, 0.3);
}

.bg-muted\/50 {
	background: rgba(240, 240, 245, 0.5);
}

.bg-white {
	background: #ffffff;
}

.border {
	border: 1px solid var(--border);
}

.border-2 {
	border-width: 2px;
}

.border-b {
	border-bottom: 1px solid var(--border);
}

.border-t {
	border-top: 1px solid var(--border);
}

.border-border {
	border-color: var(--border);
}

.border-white {
	border-color: #ffffff;
}

.rounded-none {
	border-radius: 0;
}

.shadow-xl {
	box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.15), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
}

.h-16 {
	height: 4rem;
}

.h-12 {
	height: 3rem;
}

.h-8 {
	height: 2rem;
}

.h-5 {
	height: 1.25rem;
}

.h-auto {
	height: auto;
}

.w-full {
	width: 100%;
}

.w-12 {
	width: 3rem;
}

.w-8 {
	width: 2rem;
}

.w-5 {
	width: 1.25rem;
}

.max-w-3xl {
	max-width: 48rem;
}

.max-w-2xl {
	max-width: 42rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.ml-2 {
	margin-left: 0.5rem;
}

.mb-12 {
	margin-bottom: 3rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-3 {
	margin-bottom: 0.75rem;
}

.mt-0\.5 {
	margin-top: 0.125rem;
}

.p-8 {
	padding: 2rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.px-12 {
	padding-left: 3rem;
	padding-right: 3rem;
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-24 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.pb-3 {
	padding-bottom: 0.75rem;
}

.opacity-90 {
	opacity: 0.9;
}

.space-y-2 > * + * {
	margin-top: 0.5rem;
}

.space-y-4 > * + * {
	margin-top: 1rem;
}

.space-y-6 > * + * {
	margin-top: 1.5rem;
}

.calculator-hub-page ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.calculator-hub-page ul li svg {
	color: var(--primary);
}

.calculator-hub-hero {
	background-image: url("../images/features-hero.webp");
	background-size: cover;
	background-position: center bottom;
	color: #fbfbff;
	text-shadow: 0 6px 18px rgba(11, 79, 108, 0.35);
}

.calculator-hub-hero .text-muted-foreground {
	color: rgba(251, 251, 255, 0.85);
}

.calculator-hub-hero__content {
	display: grid;
	gap: 1.5rem;
}

.calculator-hub-hero__title {
	background: rgba(1, 186, 239, 0.85);
	border-radius: 0;
	padding: 1rem 1.5rem;
	margin-bottom: 0;
	display: inline-block;
	width: fit-content;
}

.calculator-hub-hero__subtitle {
	background: rgba(235, 235, 238, 0.85);
	border-radius: 0;
	padding: 1rem 1.5rem;
	color: #757575 !important;
	text-shadow: none;
	margin-bottom: 0;
}

.calculator-hub-list {
	background-image: url("../images/Calculator-hub.webp");
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

.calculator-card {
	background: rgba(235, 235, 238, 0.72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 0;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.calculator-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.calculator-card__icon {
	width: 3rem;
	height: 3rem;
	background: rgba(127, 255, 212, 0.18);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.calculator-card__content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.calculator-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: var(--primary-foreground);
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0;
	transition: background-color 0.2s ease, color 0.2s ease;
	margin-top: auto;
}

.calculator-card__button:hover {
	background: #0B4F6C;
	color: #FBFBFF;
}

.calculator-card__button--coming-soon {
	background: rgba(156, 163, 175, 0.5);
	color: var(--muted-foreground);
	cursor: not-allowed;
	opacity: 0.8;
	pointer-events: none;
}

.calculator-card__button--coming-soon:hover {
	background: rgba(156, 163, 175, 0.6);
	color: var(--muted-foreground);
	cursor: not-allowed;
}

.transition-colors {
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hover\:text-primary:hover {
	color: var(--primary);
}

.hover\:bg-\[\#0B4F6C\]:hover {
	background-color: #0b4f6c;
}

.hover\:text-\[\#FBFBFF\]:hover {
	color: #fbfbff;
}

.hover\:bg-white:hover {
	background-color: #ffffff;
}

.hover\:text-primary:hover {
	color: var(--primary);
}

.bg-transparent {
	background-color: transparent;
}

.text-white {
	color: #ffffff;
}

@media (min-width: 640px) {
	.sm\:flex {
		display: flex;
	}

	.sm\:flex-row {
		flex-direction: row;
	}
}

@media (min-width: 768px) {
	.md\:flex {
		display: flex;
	}

	.md\:flex-row {
		flex-direction: row;
	}

	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.md\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}

	.md\:text-6xl {
		font-size: 3.75rem;
		line-height: 1;
	}
}

@media (min-width: 1024px) {
	.lg\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.calculator-hub-page .rank-math-breadcrumbs-wrapper {
		margin-top: 80px !important;
		margin-bottom: 8px !important;
		margin-left: 8px !important;
		margin-right: 8px !important;
	}
}
