
.finggu-categories {
    text-align: center;
    margin-bottom: 30px;
}
.finggu-cat-button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    background-color: #1e88e5;
    color: white;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.finggu-cat-button:hover {
    background-color: #1565c0;
    transform: scale(1.05);
}
.finggu-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.finggu-post-item {
    display: flex;
    gap: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.finggu-post-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.finggu-post-left img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    display: block;
}
.finggu-post-right {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.finggu-post-right h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}
.finggu-post-right p {
    font-size: 16px;
    color: #555;
}
.finggu-read-more {
    display: inline-block;
    margin-top: 15px;
    color: #1e88e5;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}
.finggu-read-more:hover {
    color: #0d47a1;
    text-decoration: underline;
}
