.sheep-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.sheep-post-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s;
}
.sheep-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.sheep-post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.sheep-post-content {
    padding: 20px;
}
.sheep-post-title {
    margin: 0 0 10px;
    font-size: 1.2em;
}
.sheep-post-title a {
    text-decoration: none;
    color: inherit;
}
.sheep-post-excerpt {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}
.sheep-post-read-more {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}
.sheep-post-read-more:hover {
    background: #005177;
}