.follow-google-news-box {
	margin: 28px 0 10px;
}

.follow-google-news-box__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 24px;
	border-radius: 10px;
	background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
	border: 1px solid #e5eaf0;
	box-shadow: 0 10px 30px rgba(13, 31, 54, 0.08);
}

.follow-google-news-box__content {
	flex: 1 1 auto;
	min-width: 0;
}

.follow-google-news-box__label {
	display: inline-block;
	margin-bottom: 8px;
	padding: 5px 10px;
	border-radius: 7px;
	background: #eef4ff;
	color: #1d4ed8;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.follow-google-news-box__title {
	margin: 0 0 6px;
	color: #152033;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
}

.follow-google-news-box__desc {
	color: #5b6472;
	font-size: 15px;
	line-height: 1.55;
	max-width: 700px;
}

.follow-google-news-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, #1a73e8 0%, #0b57d0 100%);
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(26, 115, 232, 0.28);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.follow-google-news-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(26, 115, 232, 0.34);
	background: linear-gradient(135deg, #1b6de0 0%, #084db8 100%);
	color: #ffffff;
	text-decoration: none;
}

.follow-google-news-btn:focus-visible {
	outline: 3px solid rgba(26, 115, 232, 0.22);
	outline-offset: 3px;
}

.follow-google-news-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
}

.follow-google-news-btn__icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.follow-google-news-btn__text {
	display: inline-block;
}

@media (max-width: 820px) {
	.follow-google-news-box__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px;
	}

	.follow-google-news-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.follow-google-news-box {
		margin: 22px 0 8px;
	}

	.follow-google-news-box__title {
		font-size: 19px;
	}

	.follow-google-news-box__desc {
		font-size: 14px;
	}
}