/* BSB MECCA — Partners strip (mr-partners.php) */

.mrp-strip {
    margin: 40px auto 8px;
    padding: 0 20px;
    font-family: 'DM Sans', -apple-system, system-ui, sans-serif;
    color: #1A1A1A;
}
.mrp-strip-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.mrp-rule {
    border: none;
    border-top: 1px solid #1A1A1A;
    margin: 0 0 24px;
}
.mrp-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888888;
    margin: 0 0 20px;
}

.mrp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px 36px;
}

.mrp-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 18px 4px;
    text-decoration: none;
    color: inherit;
    border-top: 1px dotted #1A1A1A;
    transition: color 0.2s;
}
.mrp-card:first-child { border-top: none; }
@media (min-width: 740px) {
    .mrp-card { border-top: none; }
}

.mrp-card-logo {
    flex: 0 0 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 2;
    background: transparent;
}
.mrp-card-logo img {
    max-width: 100%;
    max-height: 54px;
    width: auto;
    height: auto;
    display: block;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.25s, opacity 0.25s, transform 0.25s;
}
.mrp-card:hover .mrp-card-logo img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.03);
}

.mrp-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.mrp-card-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.1;
    color: #1A1A1A;
    letter-spacing: -0.01em;
}
.mrp-card-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 15px;
    color: #444444;
    line-height: 1.35;
}
.mrp-card-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C8102E;
    margin-top: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.mrp-card:hover .mrp-card-cta { color: #B84008; }
