@use "../variables" as *;

/**
 * Fields group
 */
.tsc-fields-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;

	&--with-reduced-gap {
		gap: 0.5rem;
	}

	&--with-box-border {
		border: 1px solid $border-color;
		border-radius: 2px;
		gap: 0;

		& > div:not(:last-child) {
			border-bottom: 1px solid $border-color;
		}
	}

	&--with-row-direction {
		flex-direction: row;
	}

	hr {
		border-bottom: 1px solid $background-color--gray;
		border-top: 0;
		margin: 0;
	}

	/**
	 * Adjustments - needs review from time to time
	 */
	.components-base-control {
		margin-bottom: 0;
	}
}
