.md-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px
}

.md-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: block;
    text-decoration: none;
    color: inherit
}

.md-card-logo img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    margin-top: 30px;
    margin-bottom: 10px
}

.md-card-info {
    margin-bottom: 10px    
}

.md-member-single {
    max-width: 900px;
    margin: 30px auto
}

.center {
    text-align: center
}

.md-brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box
}

.md-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: center;
    min-height: 140px
}

.md-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px #0000001a
}

.md-brand img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px
}

.md-brand-name {
    font-weight: 600;
    font-size: 14px;
    color: #333
}

.md-showrooms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box
}

.md-showroom {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 5px #0000000d;
    transition: transform .2s ease, box-shadow .2s ease;
    border-left: 5px solid #1A9C4B;
    display: flex;
    flex-direction: column
}

.md-showroom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px #0000001a
}

.md-showroom h4 {
    margin: 0 0 15px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 15px
}

.md-showroom p {
    margin: 0 0 10px;
    line-height: 1.6;
    color: #4b5563;
    font-size: .95rem
}

.md-showroom p:nth-of-type(1) {
    margin-bottom: 20px
}

.md-showroom p:nth-of-type(2) {
    font-weight: 700;
    color: #3b82f6;
    font-size: 1.1rem;
    display: flex;
    align-items: center
}

.md-showroom p:nth-of-type(3) {
    font-size: .85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: auto
}