.hostinger-reach-notice {
	position: relative;
	padding: 0;
	border: 1px solid #E2DBFC;
	border-radius: 16px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	.hostinger-reach-notice-wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.hostinger-reach-notice-main {
		max-width: 768px;
	}

	.hostinger-reach-notice-aside {
		display: none;

		@media screen and (min-width: 756px) {
			display: block;
		}

		padding: 10px;
	}

	.hostinger-reach-notice-close {
		position: absolute;
		top: 15px;
		right: 15px;
		cursor: pointer;
		background: none;
		border: none;
		display: block;
		font-size: .8125rem;
		font-style: normal;
		height: 20px;
		line-height: 20px;
		margin: 0;
		padding: 0;
		text-align: center;
		width: 20px;
		color: black;
		transition: color 0.2s ease;

		&:hover,
		&:focus {
			color: #673DE6;
		}

		&:before {
			content: '\00d7';
			position: relative;
			display: inline-block;
			font-size: 20px;
			line-height: 20px;
			font-weight: 400;
		}
	}

	.notice-dismiss {
		display: none;
	}

	.hostinger-reach-notice-content {
		padding: 20px 25px;

		h3 {
			margin: 0 0 8px;
			padding: 0;
			font-size: 20px;
			font-weight: 600;
			line-height: 1.4;
			color: #1D1E20;
		}

		p {
			margin: 0;
			padding: 0;
			font-size: 14px;
			line-height: 1.6;
			color: #1D1E20;
		}
	}

	.hostinger-reach-notice-actions {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 0 25px 25px;
		margin-right: 32px;

		.hostinger-reach-button {
			padding: 10px 20px;
			font-size: 12px;
			font-weight: 500;
			line-height: 1.4;
			border: none;
			border-radius: 4px;
			cursor: pointer;
			transition: all 0.2s ease;
			white-space: nowrap;

			&.button-primary {
				background: #18181A;
				color: #fff;

				&:hover,
				&:focus {
					background: #5633B8;
					box-shadow: 0 4px 8px rgba(103, 61, 230, 0.3);
					transform: translateY(-1px);
				}

				&:active {
					transform: translateY(0);
				}
			}

			&.button-secondary {
				background: transparent;
				color: #18181A;
				border: none;
				box-shadow: none;

				&:hover,
				&:focus {
					color: #5633B8;
				}
			}
		}
	}
}

