main {
	&>section {
		backdrop-filter: blur(8px);
		background-color: var(--section-background-color);
		border-radius: var(--pico-border-radius);
		padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
		box-shadow: var(--pico-box-shadow);
	}
	/* 
	Blur the data sections and make them non-interactable for not-subscribed users.
	Removing the blur will not reveal actual data because the underlying HTML uses
	static sample values.
	 */
	&>details,
	&>#insiderpie-expert-score {
		filter: blur(8px);
		user-select: none;
		pointer-events: none;
		cursor: default;
	}
}