.elementor-940 .elementor-element.elementor-element-4149a24{--display:flex;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-940 .elementor-element.elementor-element-4149a24{--content-width:1400px;}}/* Start custom CSS *//*****************************************
 * Producer Grid Layout
 *****************************************/

.producer-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .producer-grid-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .producer-grid-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 500px) {
    .producer-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

/*****************************************
 * Card
 *****************************************/

.producer-card {
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05),
                0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem 1rem 1.25rem;
    transition: box-shadow 0.2s ease;
}

.producer-card:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.07),
                0 4px 12px rgba(0,0,0,0.1);
}

/*****************************************
 * Logo Area
 *****************************************/

.producer-card-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 120px;
    margin-bottom: 1rem;
}

.producer-card-logo {
    max-width: 180px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 7px;
    background-color: #fff;
}

.placeholder-logo {
    width: 140px;
    height: 80px;
    background: #f5f5f5;
    color: #555;
    font-size: 0.8rem;
    border-radius: 7px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
}

/*****************************************
 * Text + Materials + Button
 *****************************************/

.producer-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.producer-card-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.producer-card-name a {
    text-decoration: none;
    color: #111;
}

.producer-card-name a:hover {
    text-decoration: underline;
}

/*****************************************
 * Material Types
 *****************************************/

.producer-card-materials {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}

.producer-card-materials strong {
    font-weight: 600;
    margin-right: 0.3rem;
}

.producer-card-materials a {
    color: #0056b3;
    text-decoration: none;
}

.producer-card-materials a:hover {
    text-decoration: underline;
}

/*****************************************
 * Button
 *****************************************/

.producer-card-button {
    display: inline-block;
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 7px;
    border: none;
    background-color: #e3007d;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.producer-card-button:hover,
.producer-card-button:focus {
    background-color: #ff1b91; /* slightly lighter brand tone */
    color: #fff;
    text-decoration: none;
}/* End custom CSS */