File size: 858 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
@import "@wordpress/base-styles/breakpoints";


.status-section {
	font-size: $font-body-small;
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;

	.status-badge {
		display: flex;
		padding: 2px 10px;
		justify-content: center;
		align-items: center;
		gap: 4px;
		border-radius: 4px;
		font-weight: 500;
		flex-shrink: 0;

		&.poor {
			background: var(--studio-red-5);
			color: var(--studio-red-80);
		}

		&.neutral {
			background: var(--studio-orange-5);
			color: var(--studio-orange-80);
		}

		&.good {
			background: var(--studio-green-5);
			color: var(--studio-green-80);
		}
	}

	.recommendations-text {
		a {
			cursor: pointer;
		}
	}

	@media (max-width: $break-large) {
		flex-direction: row;
		width: 100%;
		align-items: center;
		margin-bottom: 24px;
	}

	.button {
		text-decoration: none;
	}
}