/* ============================================
   Sponsors Card - Professional Design
   نفس التصميم من sales-agent
   ============================================ */

.mec-sponsors {
    margin-top: 32px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.mec-sponsors-title {
    font-size: 20px;
    margin: 0 0 16px 0;
    color: #1a1a1a;
    font-weight: 700;
    padding-bottom: 0;
    direction: rtl;
    text-align: right;
}

.mec-sponsor-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.mec-sponsor-card:last-child {
    margin-bottom: 0;
}

/* Sponsor Header with Avatar/Logo */
.mec-sponsor-header {
    display: flex;
    align-items: center;
    gap: 16px;
    direction: rtl;
    margin-bottom: 16px;
}

.mec-sponsor-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
    overflow: hidden;
}

.mec-sponsor-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mec-sponsor-icon {
    font-size: 28px;
    opacity: 0.7;
}

.mec-sponsor-name-wrapper {
    flex: 1;
    min-width: 0;
}

.mec-sponsor-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 1.4;
    direction: rtl;
    text-align: right;
}

/* Description */
.mec-sponsor-description {
    margin-top: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #0073aa;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    direction: rtl;
    text-align: right;
}

.mec-sponsor-description p {
    margin: 0 0 8px 0;
}

.mec-sponsor-description p:last-child {
    margin-bottom: 0;
}

/* Divider */
.mec-sponsor-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
}

/* Contact List */
.mec-sponsor-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mec-sponsor-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    direction: rtl;
}

.mec-contact-icon {
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.8;
}

.mec-contact-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mec-contact-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    direction: rtl;
    text-align: right;
}

.mec-contact-link {
    font-size: 15px;
    font-weight: 500;
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
    direction: rtl;
    text-align: right;
}

.mec-contact-link:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .mec-sponsors-title {
        font-size: 18px;
    }

    .mec-sponsor-name {
        font-size: 18px;
    }

    .mec-sponsor-card {
        padding: 16px;
    }

    .mec-sponsor-header {
        gap: 12px;
    }

    .mec-sponsor-avatar {
        width: 48px;
        height: 48px;
    }

    .mec-sponsor-icon {
        font-size: 24px;
    }
}

