/**
 * Mobile “open in app” bar (Instagram-style).
 */

.gf-app-banner {
	display: none;
}

@media (max-width: 768px) {
	.gf-has-app-banner .gf-app-banner {
		display: flex;
		align-items: center;
		gap: 10px;
		box-sizing: border-box;
		width: 100%;
		min-height: 56px;
		padding: 8px 12px;
		background: #1c1c1e;
		color: #fff;
		font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
		position: relative;
		z-index: 100001;
	}

	.gf-app-banner__close {
		flex: 0 0 auto;
		margin: 0;
		padding: 0 4px 0 0;
		border: 0;
		background: transparent;
		color: #8e8e93;
		font-size: 22px;
		line-height: 1;
		cursor: pointer;
	}

	.gf-app-banner__icon {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
		border-radius: 10px;
		object-fit: cover;
		background: #fff;
	}

	.gf-app-banner__text {
		flex: 1 1 auto;
		min-width: 0;
		display: flex;
		flex-direction: column;
		line-height: 1.25;
	}

	.gf-app-banner__title {
		font-size: 15px;
		font-weight: 600;
	}

	.gf-app-banner__sub {
		font-size: 12px;
		color: #aeaeb2;
	}

	.gf-app-banner__open {
		flex: 0 0 auto;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 84px;
		height: 32px;
		padding: 0 14px;
		border-radius: 16px;
		background: #0095f6;
		color: #fff !important;
		font-size: 14px;
		font-weight: 700;
		text-decoration: none !important;
		text-transform: none;
	}

	.gf-app-banner__open:hover,
	.gf-app-banner__open:focus {
		background: #1877f2;
		color: #fff !important;
	}
}
