/* MTT Buttons — Frontend styles */

.mtt-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.mtt-buttons.mtt-buttons-align-left {
	justify-content: flex-start;
}

.mtt-buttons.mtt-buttons-align-center {
	justify-content: center;
}

.mtt-buttons.mtt-buttons-align-right {
	justify-content: flex-end;
}

/* Base button */
.mtt-buttons a.mtt-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: all 0.2s;
	border: 1.5px solid transparent;
	cursor: pointer;
	text-decoration: none;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Primary — navy bg, white text */
.mtt-buttons a.mtt-btn.mtt-btn-primary {
	background: #263765;
	color: #fff;
}

.mtt-buttons a.mtt-btn.mtt-btn-primary:hover {
	background: #1a2748;
	text-decoration: none;
}

/* Outline — transparent bg, navy border */
.mtt-buttons a.mtt-btn.mtt-btn-outline {
	background: transparent;
	color: #263765;
	border-color: #263765;
}

.mtt-buttons a.mtt-btn.mtt-btn-outline:hover {
	background: #263765;
	color: #fff;
	text-decoration: none;
}

/* Ghost — translucent white, for dark backgrounds */
.mtt-buttons a.mtt-btn.mtt-btn-ghost {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.mtt-buttons a.mtt-btn.mtt-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
	text-decoration: none;
}

/* White — white bg, navy text */
.mtt-buttons a.mtt-btn.mtt-btn-white {
	background: #fff;
	color: #263765;
}

.mtt-buttons a.mtt-btn.mtt-btn-white:hover {
	background: #f3f5fb;
	text-decoration: none;
}

/* Arrow icon */
.mtt-buttons .mtt-btn-arr {
	transition: transform 0.2s;
}

.mtt-buttons a.mtt-btn:hover .mtt-btn-arr {
	transform: translateX(3px);
}

/* Responsive */
@media (max-width: 640px) {
	.mtt-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.mtt-buttons a.mtt-btn {
		justify-content: center;
	}

	.mtt-buttons a.mtt-btn:hover {
		transform: none;
	}
}
