/**
 * Partner widget styles
 */

.partner-widget {
    margin: 16px 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partner-links {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 4px;
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    text-decoration: none !important;
    color: #ffffff !important;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.partner-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    text-decoration: none !important;
}

.partner-link-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.partner-link-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

.partner-link-name {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.partner-link-arrow {
    flex: 0 0 auto;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-left: 12px;
    transition: transform 0.15s ease, color 0.15s ease;
}

.partner-link:hover .partner-link-arrow {
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .partner-link {
        padding: 10px 12px;
    }
}
