Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
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
.blog-body {
  margin: 0 -2em;
}
 
.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0;
}
 
.column {
  width: 32% !important;
}
 
.highlight {
    border: 2px solid rgba(244, 138, 66, 0.75);
}
 
.card {
  margin: 2em 2em;
  border: none;
  padding: 0;
}
 
a:has(.card) {
  text-decoration: none;
}
 
.card .image-wrap {
  transition: linear 0.25s;
  border-radius: 7px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}
.card .image-wrap:hover {
  opacity: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: linear 0.25s;
}
.card .image-wrap .image {
  margin: 0 auto;
  width: 100%;
  height: 190px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 7px;
}
.card .category {
  cursor: pointer;
  display: inline-block;
  color: green;
  opacity: 0.7;
  margin-top: 14px;
  margin-left: 1px;
  font-size: 70%;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card .title {
  margin-top: 0.2em;
  font-size: 130%;
  font-weight: bold;
  color: #555;
  line-height: 1.4em;
}
.card .desc {
  float: right;
  margin-top: 18px;
  font-size: 80%;
  font-weight: normal;
  color: #777;
}
 
@media screen and (max-width: 900px) {
 
  .sidebar {
    display: flex;
  }
 
  @media only screen and (max-width: 768px) {
    .grid {
      width: auto;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }
 
    .column {
      width: 100% !important;
      margin: 0 0 !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      padding: 1rem 1rem !important;
    }
  }
}