.bmp-blog-teaser-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.bmp-blog-teaser-header {
    margin-bottom: 2rem;
}

.bmp-blog-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.bmp-blog-teaser {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 360px;
    height: 100%;
    padding: 2rem;

    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
}

.bmp-blog-teaser__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bmp-blog-teaser__title {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.bmp-blog-teaser__title a {
    color: inherit;
    text-decoration: none;
}

.bmp-blog-teaser__title a:hover {
    text-decoration: underline;
}

.bmp-blog-teaser__description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bmp-blog-teaser__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    min-height: 24px;
    margin-top: auto;
    font-size: 0.9rem;
}

.bmp-blog-teaser__author {
    min-width: 0;
}

.bmp-blog-teaser__date {
    white-space: nowrap;
}

.bmp-blog-teaser__footer {
    min-height: 30px;
    margin-top: 1.5rem;
}

@media (max-width: 991.98px) {
    .bmp-blog-teaser-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .bmp-blog-teaser-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .bmp-blog-teaser-grid {
        grid-template-columns: 1fr;
    }

    .bmp-blog-teaser {
        min-height: 0;
    }
}