/* ****** Social Media & Contact Icons ****** */

.services-wrapper {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px; /* Optional: matches your gear images */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-img {
    width: 100%;
    height: 400px; /* Adjust this to your preferred height */
    object-fit: cover; /* This is the "magic" - it crops the image to fit the box without stretching */
    object-position: center 20%; /* Focuses the crop slightly higher (good for stage/DJ photos) */
    display: block;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .services-img {
        height: 250px; /* Smaller height for phones */
    }
}