.craft-gallery-wrapper-ab9b8347 {
    width: 100%;
}
.craft-gallery-grid-ab9b8347 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.craft-gallery-item-ab9b8347 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.craft-gallery-item-image-ab9b8347 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.craft-gallery-item-content-ab9b8347 {
    padding: 20px;
    text-align: center;
}
.craft-gallery-item-title-ab9b8347 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    color: #f0c040;
    font-family: serif;
}
.craft-gallery-item-desc-ab9b8347 {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
}
@media (max-width: 768px) {
    .craft-gallery-grid-ab9b8347 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .craft-gallery-grid-ab9b8347 {
        grid-template-columns: 1fr !important;
    }
}