h1 {
font-size: 40px;
font-weight: bold;
margin-bottom: 1rem;
font-family: supermarketregula;
}
.list-posts {
display: flex;
flex-wrap: wrap;
gap: 24px;
margin-top: 30px;
}
.post-item {
width: calc(50% - 12px);
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}
.post-img img {
width: 100%;
height: auto;
object-fit: cover;
display: block;
}
.post-content {
padding: 16px;
}
.post-meta {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 4px;
}
.post-date {
padding: 5px 0 4px;
text-align: right;
}
.post-cat {
background-size: 13px auto;
background-repeat: no-repeat;
background-position: left center;
padding: 5px 10px 4px 20px;
}
.cat-content,
.cat-content:hover {
color: #ff32a0;
background-image: url(//cashing-field-thailand.com/wp-content/themes/cashing-field-th/images/money-pink.png);
}
.post-author a {
display: contents;
}
@media (max-width: 768px) {
.post-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 12px;
width: 100%;
}
.post-img {
flex: 0 0 150px;
max-width: 150px;
}
.post-img img {
width: 100%;
height: auto;
object-fit: cover;
border-radius: 4px;
}
.post-content {
padding: 0;
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
}