.container-blogs {
    max-width: 1100px;
    margin: 0px auto;
    padding: 60px;
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #ffcc00;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}



.blog-item img {
    width: 100%;
    border-radius: 8px;
}

.blog-item h3 {
    text-decoration: none;
    color: #ff4444;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    text-align: start !important
}

.blog-item p {
    font-size: 16px;
    margin-top: 10px;
}


.blog-item:hover {
    background: #ffcc00;
}
.blog-item:hover h3 {
    color: #fff;
}


.blog-meta {
    font-size: 12px;
    margin-top: 12px;
    font-weight: 400;
}

.blog-meta strong {
    font-size: 14px;
    margin-top: 12px;
    font-weight: 500;
}