.blog-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row desktop */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-teaser-widget .blog-teaser-item {
    text-align: center;
}

h3.blog-teaser-title {
    font-family: 'Baskervville';
    font-style: italic;
    font-size: 14px;
    font-weight: 700;
    color: rgb(127, 204, 216);
    margin-bottom: 0.5em;
    text-transform: none !important;
}

hr.blog-teaser-separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px auto;
    width: 60%;
    height: 1px; /* Ensures it has a visible height */
    background-color: #ccc; /* Optional for fallback */
}

.blog-teaser-widget .blog-teaser-meta {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    color: rgb(145, 183, 112);
}

/* Responsive: 1 per row on tablet/mobile */
@media (max-width: 1024px) {
    .blog-teaser-widget .blog-teaser-grid {
        grid-template-columns: 1fr;
    }
}
