File size: 1,061 Bytes
1102aa1
e22a952
5447b65
e22a952
 
 
 
5447b65
 
e22a952
 
1102aa1
 
 
5447b65
 
e22a952
 
 
5447b65
 
1102aa1
 
 
 
 
 
 
 
e22a952
 
 
1102aa1
5447b65
 
e22a952
 
 
1102aa1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

/* Custom styles */
body {
    font-family: 'Be Vietnam Pro', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card img {
    transition: transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

#news-modal {
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

#news-modal.show {
    opacity: 1;
    display: block;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#modal-content img {
    max-height: 400px;
    object-fit: cover;
}

@media (max-width: 640px) {
    #modal-content img {
        max-height: 250px;
    }
}