.wp-block-new-theme-mobile-app.nt-mobile-app {
	box-sizing: border-box;
	margin: 24px 0;
}

.nt-mobile-app__panel {
	background: var(--new-theme-color-bg-card, #f5fbff);
	border: 1px solid var(--new-theme-color-border, rgba(120, 180, 220, .45));
	border-radius: 20px;
	box-shadow: 0 6px 24px rgba(120, 190, 230, .15);
	box-sizing: border-box;
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr auto;
	overflow: hidden;
	padding: 36px 40px;
}

.nt-mobile-app__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nt-mobile-app__title {
	color: var(--new-theme-color-ink, #1a4a66);
	font-family: var(--new-theme-font-heading, sans-serif);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 12px;
}

.nt-mobile-app__description {
	color: var(--new-theme-color-text-muted, #356b87);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 20px;
}

.nt-mobile-app__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.nt-mobile-app__rating {
	align-items: center;
	display: flex;
	gap: 6px;
}

.nt-mobile-app__stars {
	color: #f5a623;
	font-size: 18px;
	letter-spacing: .05em;
}

.nt-mobile-app__rating-value {
	color: var(--new-theme-color-ink, #1a4a66);
	font-size: 17px;
	font-weight: 700;
}

.nt-mobile-app__downloads {
	color: var(--new-theme-color-text-soft, #5a8aa3);
	font-size: 14px;
}

.nt-mobile-app__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.nt-mobile-app__btn {
	align-items: center;
	background: var(--new-theme-color-ink, #1a4a66);
	border-radius: 12px;
	color: #fff;
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	gap: 10px;
	padding: 10px 20px;
	text-decoration: none;
	transition: background .2s;
}

.nt-mobile-app__btn:hover {
	background: var(--new-theme-color-sky, #2b8fc4);
	color: #fff;
}

.nt-mobile-app__btn svg {
	flex-shrink: 0;
	height: 20px;
	width: 20px;
}

.nt-mobile-app__btn-sub {
	font-size: 10px;
	font-weight: 400;
	line-height: 1;
}

.nt-mobile-app__btn-main {
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	margin-top: 2px;
}

.nt-mobile-app__image-wrap {
	align-items: flex-end;
	display: flex;
	max-width: 180px;
}

.nt-mobile-app__image {
	display: block;
	height: auto;
	max-height: 280px;
	object-fit: contain;
	width: 100%;
}

@media (max-width: 767px) {
	.nt-mobile-app__panel {
		grid-template-columns: 1fr;
		padding: 24px 20px;
	}

	.nt-mobile-app__image-wrap {
		display: none;
	}
}
