

/* Keyframe Animation */
@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.scroll-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adjust spacing */

}

.post-link {
    display: block;

}
.vertical-scroll-container {
    max-height: 500px; /* Limit the height */
    overflow: hidden; /* Allow scrolling */
}

.post-item {
    display: flex;
    align-items: center;
    background-color: #f5e0e0;
    margin-bottom: 10px;
    flex-direction: row;
}

.post-image {
    width: 150px;
    height: 88px;
    margin-right: 15px;
    overflow:hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
        padding-left: 10px;
    align-content: center;
}

.post-date {
    font-size: 14px;
    color: #e67e22;
    padding: 20px;
    background-color: #000;
}
.post-content{
    display: flex;
}
.post-category {
    font-size: 16px;
    color: #8e44ad;
}

#post-container a{
    text-decoration: none !important;
position:relative;
    
}

.post-date .day {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

.post-date .month {
    font-size: 16px;
    text-transform: uppercase;
    color: #FFA100;
}
