.lp-blog-list {
2
margin-top: 40px;
3
}
4
 
5
.blog-card {
6
background: #fff;
7
border-radius: 12px;
8
overflow: hidden;
9
height: 100%;
10
}
11
 
12
.blog-card a {
13
display: block;
14
text-decoration: none;
15
}
16
 
17
.blog-card img {
18
width: 100%;
19
height: 420px;
20
object-fit: cover;
21
border-radius: 12px 12px 0 0;
22
}
23
 
24
.blog-card-content {
25
padding: 24px;
26
}
27
 
28
.blog-card-content h3 {
29
font-size: 26px;
30
line-height: 1.3;
31
color: #424242;
32
margin-bottom: 12px;
33
font-weight: 700;
34
}
35
 
36
.blog-card-content p {
37
color: #666;
38
line-height: 1.5;
39
margin-bottom: 16px;
40
}
41
 
42
.read-more {
43
color: #467541;
44
font-weight: 700;
45
display: inline-block;
46
}