.buyersguide-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    padding: 20px;
}

.buyersguide-item {
    width: 200px;
    text-align: center;
}

.buyersguide-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.buyersguide-item img:hover {
    transform: scale(1.05);
}

.buyersguide-item h2 {
    font-size: 16px;
    margin-top: 10px;
}

.buyersguide-item a {
    text-decoration: none;
    color: #333;
}

.buyersguide-item a:hover {
    color: #0073aa;
}
