.mobamag-gps {
	position: relative;
	display: flex;
	gap: 15px;
	align-items: center;
	overflow: hidden;
	box-sizing: border-box;
	margin: 30px 0 6px;
	padding: 18px 20px;
	border: 1px solid #eadac7;
	border-radius: 16px;
	background:
		linear-gradient(135deg, #fffdf9 0%, #fbf6ee 100%);
	color: #22282e;
	font-family: inherit;
	box-shadow: 0 6px 18px rgba(120, 72, 16, .06);
}

.mobamag-gps__icon {
	display: grid;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 3px solid rgba(255, 255, 255, .85);
	border-radius: 16px;
	background: #f9ead7;
	color: #b2670e;
	box-shadow: 0 5px 12px rgba(184, 111, 20, .13);
}

.mobamag-gps__icon svg {
	width: 29px;
	height: 29px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.mobamag-gps__body {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	z-index: 1;
}

.mobamag-gps__eyebrow {
	margin: 0 0 2px;
	color: #b2670e;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
}

.mobamag-gps__title {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.mobamag-gps__text {
	margin: 0 0 10px;
	color: #5f6368;
	font-size: 13px;
	line-height: 1.65;
}

.mobamag-gps__button {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 8px 15px;
	border-radius: 999px;
	background: #a85d09;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none !important;
	box-shadow: 0 4px 10px rgba(145, 78, 8, .18);
	transition: box-shadow .2s ease, transform .2s ease;
}

.mobamag-gps__button:hover,
.mobamag-gps__button:focus-visible {
	background: #874907;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(145, 78, 8, .24);
}

.mobamag-gps__button:focus-visible {
	outline: 3px solid rgba(221, 153, 51, .3);
	outline-offset: 3px;
}

.mobamag-gps__arrow {
	display: inline-block;
	transition: transform .2s ease;
}

.mobamag-gps__button:hover .mobamag-gps__arrow,
.mobamag-gps__button:focus-visible .mobamag-gps__arrow {
	transform: translateX(3px);
}

@media (max-width: 600px) {
	.mobamag-gps {
		align-items: flex-start;
		gap: 12px;
		margin-top: 26px;
		padding: 16px;
		border-radius: 15px;
	}

	.mobamag-gps__icon {
		flex-basis: 42px;
		width: 42px;
		height: 42px;
		border-radius: 13px;
	}

	.mobamag-gps__icon svg {
		width: 24px;
		height: 24px;
	}

	.mobamag-gps__title {
		font-size: 15px;
	}

	.mobamag-gps__eyebrow {
		font-size: 11px;
	}

	.mobamag-gps__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mobamag-gps__button,
	.mobamag-gps__arrow {
		transition: none;
	}
}
