.iyi-posts-container {
    display: grid;
    gap: 20px;
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
}

.iyi-post-item {
    background-color: #f9f9f9; /* Adjust as needed */
    border: 1px solid #e0e0e0; /* Adjust as needed */
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    box-shadow: 1px 1px 11px 0px grey;
}

.iyi-post-item:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.iyi-posts-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.posts-info-holder {
    padding: 15px;
    flex: 1; 
    overflow: hidden; 
}

.posts-info {
    margin: 0;
    color: #333;
    line-height: 1.5; 
    word-wrap: break-word;
}

.iyi-read-more {
    text-align: left;
    margin-top: 30px;
}

.iyi-read-more-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: 0.4s;
    background-color: #EC1C24;
    width: 120px;
    height: 50px;
    justify-content: center;
    border-radius: 10px;
}

.iyi-read-more-link:hover{
    color: #000000;
    background-color: #008cd0;
}



/* Responsive settings */
@media (max-width: 1024px) {
    .iyi-posts-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .iyi-posts-container {
        grid-template-columns: repeat(1, 1fr);
    }
}