/*
Theme Name: Media Child
Template: Divi
*/

/* Style for the thumbnails container */
.thumbnails-container {
    display: flex;
    justify-content: center; /* Center the thumbnails horizontally */
    gap: 1em;
    flex-wrap: wrap; /* Allow thumbnails to wrap to the next row if needed */
}

/* Style for individual thumbnails */
.thumbnail-link {
    margin-bottom: 20px; /* Adjust as needed */
}

.thumbnail-link img {
    width: 75px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #666; /* Example border */
}

/* Additional styles can be added as needed */


