
.ebw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.ebw-post {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    transition: all 0.3s ease;
}
.ebw-post:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.ebw-thumb img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}
.ebw-title {
    font-size: 20px;
    margin: 0 0 10px;
}
.ebw-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}
.ebw-excerpt {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}
.ebw-readmore {
    color: #A10410;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}
