body {
    max-width: 70em;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /* Responsive column count */
    gap: 16px;
    /* Space between items */
    padding: 16px;
}

.masonry-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.masonry-item img {
    width: 100%;
    /* Make the image take all available width */
    height: 200px;
    /* Set a specific height */
    object-fit: cover;
    /* Crop the image to fit within the height */
    display: block;
    /* Prevent inline spacing issues */
}


.masonry-item h2 {
    font-size: 2rem;
    margin: 16px;
}

.masonry-item p {
    color: #555;
    margin: 0 16px 16px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    margin-right: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.description {
    font-weight: 700;
    font-style: italic;
}

p:has(img):has(em) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}