.bgd-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.bgd-grid-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bgd-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.bgd-featured-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.bgd-no-image {
    height: 180px;
    background: #eee;
    color: #888;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgd-title {
    font-size: 1.25rem;
    margin: 15px 15px 5px;
    font-weight: 700;
    flex-grow: 0;
}

.bgd-title a {
    color: #222;
    text-decoration: none;
}

.bgd-title a:hover {
    color: #0073aa;
}

.bgd-subtitle {
    font-size: 1rem;
    color: #555;
    margin: 0 15px 10px;
    font-style: italic;
}

.bgd-excerpt {
    color: #333;
    margin: 0 15px 15px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.bgd-read-button {
    background-color: #0073aa;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    margin: 0 15px 15px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.bgd-read-button:hover {
    background-color: #005177;
}