.sgrb-tip-form-wrap {
	background: #fff;
	border: 1px solid #dce3e6;
	border-radius: 16px;
	box-shadow: 0 8px 22px rgba(22, 39, 52, 0.06);
	box-sizing: border-box;
	margin: 1.5rem 0;
	padding: clamp(1rem, 3vw, 2rem);
}

.sgrb-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sgrb-grid p {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin: 0;
}

.sgrb-grid .sgrb-full {
	grid-column: 1 / -1;
}

.sgrb-tip-form label {
	color: #24323a;
	font-weight: 700;
}

.sgrb-tip-form input[type="text"],
.sgrb-tip-form input[type="email"],
.sgrb-tip-form input[type="url"],
.sgrb-tip-form input[type="file"],
.sgrb-tip-form textarea {
	background: #fff;
	border: 1px solid #bcc9cf;
	border-radius: 9px;
	box-sizing: border-box;
	font: inherit;
	padding: 0.75rem;
	width: 100%;
}

.sgrb-tip-form textarea {
	resize: vertical;
}

.sgrb-tip-form small {
	color: #607078;
}

.sgrb-tip-form button,
.sgrb-article-tip a {
	background: #4f7590;
	border: 0;
	border-radius: 7px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	padding: 0.75rem 1rem;
	text-decoration: none;
}

.sgrb-consent label {
	align-items: flex-start;
	display: flex;
	font-weight: 500;
	gap: 0.6rem;
}

.sgrb-consent input {
	flex: 0 0 auto;
	margin-top: 0.3rem;
}

.sgrb-message {
	border-radius: 9px;
	font-weight: 650;
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
}

.sgrb-message--success {
	background: #ecfdf5;
	color: #065f46;
}

.sgrb-message--error {
	background: #fef2f2;
	color: #991b1b;
}

.sgrb-hp {
	height: 1px !important;
	left: -9999px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

.sgrb-article-tip {
	align-items: center;
	background: #eef4f6;
	border-left: 4px solid #4f7590;
	border-radius: 8px;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 2rem 0 0;
	padding: 1rem;
}

@media (max-width: 680px) {
	.sgrb-grid {
		grid-template-columns: 1fr;
	}

	.sgrb-article-tip {
		align-items: flex-start;
		flex-direction: column;
	}
}

