.mlm-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px; /* Adjust to fit your site's column width */
}

.mlm-card {
    display: flex;
    align-items: center;
    background-color: #050103; /* Deep dark background */
    border: 1px solid #7c264a; /* Pink/Purple border matching the screenshot */
    border-radius: 12px;
    padding: 12px 16px;
    text-decoration: none !important;
    transition: transform 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.mlm-card:hover {
    transform: translateY(-2px);
    border-color: #d14981;
}

.mlm-card-image {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    object-fit: cover;
    margin-right: 18px;
    /* Optional subtle shadow on the logo */
    box-shadow: 0 2px 4px rgba(0,0,0,0.5); 
}

.mlm-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mlm-card-title {
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px 0 !important; /* Overrides WP theme margins */
    line-height: 1.2;
}

.mlm-card-url {
    color: #fce871; /* Yellow matching the screenshot */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.2;
}