-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServicesSection.module.css
More file actions
109 lines (96 loc) · 1.65 KB
/
ServicesSection.module.css
File metadata and controls
109 lines (96 loc) · 1.65 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.section {
padding: 120px 0;
position: relative;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
max-width: var(--max-width);
margin: 0 auto;
padding: 0 24px;
}
.card {
padding: 32px;
position: relative;
overflow: hidden;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card.large {
grid-column: span 2;
grid-row: span 2;
}
.glow {
position: absolute;
width: 200px;
height: 200px;
border-radius: 50%;
filter: blur(80px);
opacity: 0;
transition: opacity 0.5s ease;
pointer-events: none;
}
.card:hover .glow {
opacity: 0.15;
}
.icon {
width: 52px;
height: 52px;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 16px;
font-size: 1.5rem;
}
.title {
font-family: var(--font-display);
font-size: 1rem;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
margin: 12px 0 8px;
color: var(--text-primary);
}
.desc {
color: var(--text-secondary);
font-size: 0.85rem;
line-height: 1.7;
margin-bottom: 12px;
}
.features {
list-style: none;
display: flex;
flex-direction: column;
gap: 6px;
}
.features li {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.82rem;
color: var(--text-secondary);
}
.features li::before {
content: '▸';
color: var(--cyan);
font-size: 0.7rem;
}
@media (max-width: 1024px) {
.grid {
grid-template-columns: repeat(2, 1fr);
}
.card.large {
grid-column: span 2;
grid-row: span 1;
}
}
@media (max-width: 768px) {
.grid {
grid-template-columns: 1fr;
}
.card.large {
grid-column: span 1;
grid-row: span 1;
}
}