File size: 1,172 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
@import "@automattic/typography/styles/fonts";

@mixin jetpack-cloud-sections-shared-styles() {
	--color-accent: var(--studio-jetpack-green-50);
	--color-primary: var(--studio-jetpack-green-50);

	--color-accent-60: var(--studio-jetpack-green-70);

	background-color: var(--color-surface);

	font-family: Inter, $sans;

	#header {
		display: none;
	}
	.header {
		margin-bottom: 24px;
		padding: 0 5%;

		color: #4f748e;

		@include break-medium {
			margin-bottom: 32px;
			padding: 0;
		}

		.formatted-header__title {
			margin: 0 0 36px;

			color: var(--color-text);

			font-size: rem(21px);

			@include break-medium {
				margin: 1.5rem 0 40px;

				font-size: rem(35px);
			}
		}
	}

	.layout__content {
		padding: 0;
	}

	.foldable-card {
		font-size: rem(13px);
	}

	.faq {
		margin-bottom: 16px;

		@include break-medium {
			margin-bottom: 48px;
		}

		.faq__heading {
			margin: 56px 0 24px;

			color: #2e4453;

			font-size: rem(26px);
			font-weight: 400;
			text-align: center;

			@include break-medium {
				margin: 64px 0;

				font-size: rem(35px);
			}
		}
	}
}