/* Start custom CSS for shortcode, class: .elementor-element-87d8d3b *//* Brand Listing Container */
.brand-listing-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Alphabet Letter Heading */
.brand-letter {
    font-size: 22px;
    font-weight: bold;
    margin: 40px 0 10px;
    color: #0f9850; /* Red Color like in the screenshot */
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

/* 3-Column Grid for Brands */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 10px 30px;
}

/* Each Brand Item */
.brand-item {
    font-size: 16px;
}

/* Brand Links */
.brand-item a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.brand-item a:hover {
    color: #0f9850; /* Red Hover Effect */
    text-decoration: underline;
}/* End custom CSS */